RESERVED_WORDS top-level constant

List<String> const RESERVED_WORDS

Implementation

const List<String> RESERVED_WORDS = [
  'assert',
  'default',
  'finally',
  'rethrow',
  'try',
  'break',
  'do',
  'for',
  'return',
  'var',
  'case',
  'else',
  'if',
  'super',
  'void',
  'catch',
  'enum',
  'in',
  'switch',
  'while',
  'class',
  'extends',
  'is',
  'this',
  'with',
  'const',
  'false',
  'new',
  'throw',
  'continue',
  'final',
  'null',
  'true',
];