FunctionCallNode

data class FunctionCallNode(lineNumber: Int, functionIdentifier: String, arguments: List<ExpressionNode>) : ExpressionNode

Function call node

Constructors

FunctionCallNode
Link copied to clipboard
fun FunctionCallNode(lineNumber: Int, functionIdentifier: String, arguments: List<ExpressionNode>)
Create empty Function call node

Functions

component1
Link copied to clipboard
operator fun component1(): Int
component2
Link copied to clipboard
operator fun component2(): String
component3
Link copied to clipboard
operator fun component3(): List<ExpressionNode>
copy
Link copied to clipboard
fun copy(lineNumber: Int, functionIdentifier: String, arguments: List<ExpressionNode>): FunctionCallNode
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

arguments
Link copied to clipboard
val arguments: List<ExpressionNode>
functionIdentifier
Link copied to clipboard
val functionIdentifier: String
lineNumber
Link copied to clipboard
open override val lineNumber: Int