Conditional class
A ternary or where condition will either pick trueExpr
or falseExpr
.
// a ? b : c
Conditional(
VariableRead('a'),
VariableRead('b'),
VariableRead('c'),
)
Constructors
- Conditional(AST condition, AST trueExp, AST falseExp)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
visit<
R, C, CO extends C> (AstVisitor< R, C?> visitor, [CO? context]) → R -
Given a
visitor
and optionally acontext
, produce a return valueR
.override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited