continueStatement abstract method

ContinueStatement continueStatement(
  1. Token continueKeyword,
  2. SimpleIdentifier? label,
  3. Token semicolon
)

Returns a newly created continue statement. The label can be null if there is no label associated with the statement.

Implementation

ContinueStatement continueStatement(
    Token continueKeyword, SimpleIdentifier? label, Token semicolon);