DeclarationNode
class DeclarationNode(val variable: ObjectVariableNode, val initializer: ExpressionNode, val sourceLocation: SourceLocation, val comment: String? = null) : SimpleStatementNode
Constructing a new object and binding it to a variable.
Constructors
Link copied to clipboard
fun DeclarationNode(variable: ObjectVariableNode, initializer: ExpressionNode, sourceLocation: SourceLocation, comment: String? = null)