NodeValue

data class NodeValue(val unwrappedValue: Node) : OutputValue<Node> , Expression

An immutable Node.

Constructors

Link copied to clipboard
constructor(unwrappedValue: Node)

Properties

Link copied to clipboard
open override val unwrappedValue: Node

The wrapped value.

Functions

Link copied to clipboard
open override fun <T> accept(visitor: ExpressionVisitor<T>): T

Accepts a visitor.

open override fun <O> accept(visitor: OutputValueVisitor<O>): O
Link copied to clipboard

Chains two expressions together, which is used in ComposedExpressions.

Link copied to clipboard