Interface: FunctionCallExpressionTypeSemantics
compiler.FunctionCallExpressionTypeSemantics
Type semantics for AST Node FunctionCallExpression.
Since
0.5.0
Hierarchy
-
↳
FunctionCallExpressionTypeSemantics
Table of contents
Properties
Properties
evaluatedType
• evaluatedType: ProcessedType
The value type that this expression evaluates to. This is used to properly represent the evaluated type of expressions that do not explicitly show their type.
Since
0.10.0
Inherited from
ExpressionTypeSemantics.evaluatedType
Defined in
kipper/core/src/compiler/ast/nodes/expressions/expression-type-semantics.ts:18
funcOrExp
• funcOrExp: Expression
<ExpressionSemantics
, ExpressionTypeSemantics
, CompilableASTNode
<SemanticData
, TypeData
>> | ScopeVariableDeclaration
| ScopeFunctionDeclaration
| ScopeParameterDeclaration
The function that this expression calls.
This can be a function declaration, a parameter declaration, a variable declaration or a referenceable i.e. a function stored inside a variable of some sort.
Since
0.12.0
Defined in
kipper/core/src/compiler/ast/nodes/expressions/function-call-expression/function-call-expression-type-semantics.ts:25