RangeWhenCondition

data class RangeWhenCondition(    val operator: Node.Expression.WhenExpression.WhenConditionRangeOperator,     val expression: Node.Expression,     val supplement: NodeSupplement = NodeSupplement()) : Node.Expression.WhenExpression.WhenCondition

AST node that represents a when condition using range. The node corresponds to KtWhenConditionInRange.

Constructors

Link copied to clipboard
constructor(    operator: Node.Expression.WhenExpression.WhenConditionRangeOperator,     expression: Node.Expression,     supplement: NodeSupplement = NodeSupplement())

Properties

Link copied to clipboard
open override val expression: Node.Expression

operand of operator.

Link copied to clipboard

operator of this condition.

Link copied to clipboard
open override val supplement: NodeSupplement

Supplemental data for the node.

Link copied to clipboard
open override val type: Nothing? = null

always null.