IfStmt.terminalElse constructor

IfStmt.terminalElse(
  1. Token token, {
  2. required List<Stmt> body,
})

Implementation

IfStmt.terminalElse(this.token, {required this.body})
  : isTerminalElse = true,
    expr = null,
    nextIfStmt = null;