Function Call Node
data class FunctionCallNode(lineNumber: Int, functionIdentifier: String, arguments: List<ExpressionNode>) : ExpressionNode
Content copied to clipboard
Function call node
Constructors
FunctionCallNode
Link copied to clipboard
fun FunctionCallNode(lineNumber: Int, functionIdentifier: String, arguments: List<ExpressionNode>)
Content copied to clipboard
Create empty Function call node
Functions
component1
Link copied to clipboard
component2
Link copied to clipboard
component3
Link copied to clipboard
copy
Link copied to clipboard
fun copy(lineNumber: Int, functionIdentifier: String, arguments: List<ExpressionNode>): FunctionCallNode
Content copied to clipboard
Properties
arguments
Link copied to clipboard
functionIdentifier
Link copied to clipboard
lineNumber
Link copied to clipboard