Class ConditionalExpr

All Implemented Interfaces:
NodeWithCondition<ConditionalExpr>, NodeWithRange<Node>, NodeWithTokenRange<Node>, Observable, Visitable, HasParentNode<Node>, Cloneable

public class ConditionalExpr extends Expression implements NodeWithCondition<ConditionalExpr>
The ternary conditional expression. In b==0?x:y, b==0 is the condition, x is thenExpr, and y is elseExpr.
Author:
Julio Vilmar Gesser