|
Bond 0.9
C++ Bond Runtime Library API Documentation
|
Represents a function declaration or definition. More...
#include <bond/compiler/parsenodes.h>
Public Member Functions | |
| FunctionDefinition (FunctionPrototype *prototype, CompoundStatement *body, TypeDescriptor *thisTypeDescriptor, Scope scope) | |
| Constructs a function definition node. | |
| virtual | ~FunctionDefinition () |
| virtual void | Accept (ParseNodeVisitor &visitor) override |
| Dispatches this node to the given visitor. | |
| virtual void | Accept (ParseNodeVisitor &visitor) const override |
| Dispatches this node to the given visitor. | |
| virtual SymbolType | GetSymbolType () const override |
| Returns the concrete symbol type. | |
| virtual const Token * | GetName () const override |
| Returns the symbol name token. | |
| virtual TypeAndValue * | GetTypeAndValue () override |
| Returns the symbol's type-and-value metadata. | |
| virtual const TypeAndValue * | GetTypeAndValue () const override |
| Returns the symbol's type-and-value metadata. | |
| FunctionPrototype * | GetPrototype () |
| Returns the function prototype. | |
| const FunctionPrototype * | GetPrototype () const |
| Returns the function prototype. | |
| CompoundStatement * | GetBody () |
| Returns the function body. | |
| const CompoundStatement * | GetBody () const |
| Returns the function body. | |
| TypeDescriptor * | GetThisTypeDescriptor () |
| Returns the this-parameter type descriptor. | |
| const TypeDescriptor * | GetThisTypeDescriptor () const |
| Returns the this-parameter type descriptor. | |
| Scope | GetScope () const |
| Returns the declaration scope of this function. | |
| bool | IsNative () const |
| Returns true if this function is native (no Bond body). | |
| size_t | GetNumReservedJumpTargetIds () const |
| Returns the number of reserved jump target IDs used by code generation. | |
| void | SetNumReservedJumpTargetIds (size_t numIds) |
| Sets the number of reserved jump target IDs used by code generation. | |
| Public Member Functions inherited from Bond::Symbol | |
| virtual | ~Symbol () |
| virtual const Token * | GetContextToken () const override |
| Returns the token used as source context for diagnostics. | |
| virtual bool | IsResolved () const |
| Returns true when symbol resolution has completed for this symbol. | |
| bool | IsTypeDefinition () const |
| Returns true if this symbol defines a type. | |
| Symbol * | GetParentSymbol () |
| Returns the enclosing symbol. | |
| const Symbol * | GetParentSymbol () const |
| Returns the enclosing symbol. | |
| void | SetParentSymbol (Symbol *parent) |
| Sets the enclosing symbol. | |
| Symbol * | FindSymbol (const StringView &name) |
| Finds a directly contained symbol by name. | |
| const Symbol * | FindSymbol (const StringView &name) const |
| Finds a directly contained symbol by name. | |
| Symbol * | FindSymbol (const Token *name) |
| Finds a directly contained symbol by token text. | |
| const Symbol * | FindSymbol (const Token *name) const |
| Finds a directly contained symbol by token text. | |
| Symbol * | FindSymbol (const QualifiedIdentifier *identifier) |
| Finds a symbol referenced by a qualified identifier. | |
| const Symbol * | FindSymbol (const QualifiedIdentifier *identifier) const |
| Finds a symbol referenced by a qualified identifier. | |
| void | InsertSymbol (Symbol *symbol) |
| Inserts a symbol into this symbol's child list. | |
| bool | IsAnonymous () const |
| Returns true if this symbol has no explicit name. | |
| bool | Matches (const StringView &name) const |
| Returns true if this symbol's name matches the given text. | |
| Public Member Functions inherited from Bond::ListParseNode | |
| virtual | ~ListParseNode () |
| ListParseNode * | GetNextNode () |
| Returns the next node in the list. | |
| const ListParseNode * | GetNextNode () const |
| Returns the next node in the list. | |
| void | SetNextNode (ListParseNode *next) |
| Sets the next node in the list. | |
| Public Member Functions inherited from Bond::ParseNode | |
| virtual | ~ParseNode () |
Additional Inherited Members | |
| Public Types inherited from Bond::Symbol | |
| enum | SymbolType { TYPE_NAMESPACE , TYPE_STRUCT , TYPE_ENUM , TYPE_LOCALSCOPE , TYPE_VALUE , TYPE_FUNCTION } |
| Identifies the concrete symbol category. More... | |
| Protected Member Functions inherited from Bond::Symbol | |
| Symbol () | |
| Protected Member Functions inherited from Bond::ListParseNode | |
| ListParseNode () | |
| Protected Member Functions inherited from Bond::ParseNode | |
| ParseNode () | |
Represents a function declaration or definition.
|
inline |
|
inlinevirtual |
|
inlineoverridevirtual |
Dispatches this node to the given visitor.
| visitor | Visitor that handles this node type. |
Implements Bond::ParseNode.
|
inlineoverridevirtual |
Dispatches this node to the given visitor.
| visitor | Visitor that handles this node type. |
Implements Bond::ParseNode.
|
inline |
Returns the function body.
|
inline |
Returns the function body.
|
inlineoverridevirtual |
Returns the symbol name token.
Reimplemented from Bond::Symbol.
|
inline |
Returns the number of reserved jump target IDs used by code generation.
|
inline |
Returns the function prototype.
|
inline |
Returns the function prototype.
|
inline |
Returns the declaration scope of this function.
|
inlineoverridevirtual |
Returns the concrete symbol type.
Implements Bond::Symbol.
|
inline |
Returns the this-parameter type descriptor.
|
inline |
Returns the this-parameter type descriptor.
|
inlineoverridevirtual |
Returns the symbol's type-and-value metadata.
Reimplemented from Bond::Symbol.
|
inlineoverridevirtual |
Returns the symbol's type-and-value metadata.
Reimplemented from Bond::Symbol.
|
inline |
Returns true if this function is native (no Bond body).
|
inline |
Sets the number of reserved jump target IDs used by code generation.
| numIds | Number of reserved jump target IDs. |