switchDefault abstract method

SwitchDefault switchDefault(
  1. List<Label> labels,
  2. Token keyword,
  3. Token colon,
  4. List<Statement> statements,
)

Returns a newly created switch default. The list of labels can be null if there are no labels.

Implementation

SwitchDefault switchDefault(List<Label> labels, Token keyword, Token colon,
    List<Statement> statements);