Package icyllis.arc3d.compiler.tree
Class FunctionReference
java.lang.Object
icyllis.arc3d.compiler.tree.Node
icyllis.arc3d.compiler.tree.Expression
icyllis.arc3d.compiler.tree.FunctionReference
An identifier referring to a function name. This is an intermediate value: FunctionReferences are
always eventually replaced by FunctionCalls in valid programs.
-
Nested Class Summary
Nested classes/interfaces inherited from class icyllis.arc3d.compiler.tree.Node
Node.ElementKind, Node.ExpressionKind, Node.StatementKind, Node.SymbolKind
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
accept
(TreeVisitor visitor) Visit this AST with a given visitor.clone
(int position) getKind()
static Expression
make
(Context context, int position, FunctionDecl overloadChain) toString
(int parentPrecedence) Methods inherited from class icyllis.arc3d.compiler.tree.Expression
clone, getCoercionCost, getConstantValue, getType, isBooleanLiteral, isConstructorCall, isFloatLiteral, isIncomplete, isIntLiteral, isLiteral, toString
Methods inherited from class icyllis.arc3d.compiler.tree.Node
getEndOffset, getStartOffset
-
Method Details
-
make
@Nonnull public static Expression make(@Nonnull Context context, int position, FunctionDecl overloadChain) -
getKind
- Specified by:
getKind
in classExpression
- See Also:
-
accept
Description copied from class:Node
Visit this AST with a given visitor. -
getOverloadChain
-
clone
- Specified by:
clone
in classExpression
-
toString
- Specified by:
toString
in classExpression
-