ScriptInitializer

data class ScriptInitializer(val body: Node.Statement, val supplement: NodeSupplement = NodeSupplement()) : Node.Declaration

AST node that represents a script initializer, which wraps non-declaration statements in the script. The node corresponds to KtScriptInitializer.

Constructors

Link copied to clipboard
constructor(body: Node.Statement, supplement: NodeSupplement = NodeSupplement())

Properties

Link copied to clipboard

content statement of the initializer.

Link copied to clipboard
open override val supplement: NodeSupplement

Supplemental data for the node.