IfNode constructor

IfNode(
  1. Expr condition,
  2. List<Node> thenBranch,
  3. List<Node> elseBranch
)

Creates a conditional node with its two possible branches.

Implementation

IfNode(this.condition, this.thenBranch, this.elseBranch);