ScriptBody

data class ScriptBody(val declarations: List<Node.Declaration>, val supplement: NodeSupplement = NodeSupplement()) : Node.Declaration, Node.WithDeclarations

AST node that represents a body of Kotlin script. The node corresponds to KtScript and its child KtBlockExpression.

Constructors

Link copied to clipboard
constructor(declarations: List<Node.Declaration>, supplement: NodeSupplement = NodeSupplement())

Properties

Link copied to clipboard
open override val declarations: List<Node.Declaration>

contents of the script body.

Link copied to clipboard
open override val supplement: NodeSupplement

Supplemental data for the node.