MethodCallNode

data class MethodCallNode(lineNumber: Int, instanceIdentifier: String, dataStructureMethod: DataStructureMethod, arguments: List<ExpressionNode>, identifier: String) : ExpressionNode, AssignLHS

Method call node

Constructors

MethodCallNode
Link copied to clipboard
fun MethodCallNode(lineNumber: Int, instanceIdentifier: String, dataStructureMethod: DataStructureMethod, arguments: List<ExpressionNode>, identifier: String = "")
Create empty Method 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(): DataStructureMethod
component4
Link copied to clipboard
operator fun component4(): List<ExpressionNode>
component5
Link copied to clipboard
operator fun component5(): String
copy
Link copied to clipboard
fun copy(lineNumber: Int, instanceIdentifier: String, dataStructureMethod: DataStructureMethod, arguments: List<ExpressionNode>, identifier: String = ""): MethodCallNode
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>
dataStructureMethod
Link copied to clipboard
val dataStructureMethod: DataStructureMethod
identifier
Link copied to clipboard
open override val identifier: String
instanceIdentifier
Link copied to clipboard
val instanceIdentifier: String
lineNumber
Link copied to clipboard
open override val lineNumber: Int