Declaration Node
data class DeclarationNode(lineNumber: Int, identifier: AssignLHS, expression: ExpressionNode) : CodeNode, DeclarationOrAssignment
Content copied to clipboard
Declaration node
Constructors
DeclarationNode
Link copied to clipboard
fun DeclarationNode(lineNumber: Int, identifier: AssignLHS, expression: ExpressionNode)
Content copied to clipboard
Create empty Declaration 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, identifier: AssignLHS, expression: ExpressionNode): DeclarationNode
Content copied to clipboard
Properties
expression
Link copied to clipboard
identifier
Link copied to clipboard
lineNumber
Link copied to clipboard