DeclareVariableNode

data class DeclareVariableNode(name: String, mutable: Boolean, value: Expr?, section: Section?) : Node

Functions

accept
Link copied to clipboard
open override fun accept(visitor: NodeMapVisitor): Node
open override fun accept(visitor: NodeVisitor)
open override fun <R> accept(visitor: NodeVisitorR<R>): R
open override fun <T> accept(visitor: NodeVisitor1<T>, param0: T)
span
Link copied to clipboard
open fun span(other: Sectional): Section?

Properties

mutable
Link copied to clipboard
val mutable: Boolean
name
Link copied to clipboard
val name: String
section
Link copied to clipboard
open override val section: Section? = null
value
Link copied to clipboard
val value: Expr?