e.g. continue; continue $a;
continue; continue $a;
ContinueStatement : continue [no LineTerminator here] [Identifier] ;
This class represents a continue statement in the storedprocedure language. It extends the Statement that could part of a block.
Statement
340341342343344345346347
return this; } @Override public StatementEnd continue_() { appendCallElement(new BranchCallElement(new ContinueStatement())); return this; }
346347348349350351352353
return this; } @Override public StatementEnd continue_(String label) { appendCallElement(new BranchCallElement(new ContinueStatement(label))); return this; }
334335336337338339340341
341342343344345346347348
347348349350351352353354
319320321322323324325326
325326327328329330331332