gotoStmt method

Stmt gotoStmt()

Implementation

Stmt gotoStmt() {
  consume(TokenType.kGoto, 'Expected "goto" keyword.');
  return GotoStmt(rawExpr());
}