mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 21:14:28 -08:00
49 lines
543 B
JavaScript
49 lines
543 B
JavaScript
|
|
// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#keywords
|
||
|
|
|
||
|
|
export const reserved = [
|
||
|
|
'break',
|
||
|
|
'case',
|
||
|
|
'catch',
|
||
|
|
'class',
|
||
|
|
'const',
|
||
|
|
'continue',
|
||
|
|
'debugger',
|
||
|
|
'default',
|
||
|
|
'delete',
|
||
|
|
'do',
|
||
|
|
'else',
|
||
|
|
'export',
|
||
|
|
'extends',
|
||
|
|
'finally',
|
||
|
|
'for',
|
||
|
|
'function',
|
||
|
|
'if',
|
||
|
|
'import',
|
||
|
|
'in',
|
||
|
|
'instanceof',
|
||
|
|
'new',
|
||
|
|
'return',
|
||
|
|
'super',
|
||
|
|
'switch',
|
||
|
|
'this',
|
||
|
|
'throw',
|
||
|
|
'try',
|
||
|
|
'typeof',
|
||
|
|
'var',
|
||
|
|
'void',
|
||
|
|
'while',
|
||
|
|
'with',
|
||
|
|
'yield',
|
||
|
|
'enum',
|
||
|
|
'implements',
|
||
|
|
'interface',
|
||
|
|
'let',
|
||
|
|
'package',
|
||
|
|
'private',
|
||
|
|
'protected',
|
||
|
|
'public',
|
||
|
|
'static',
|
||
|
|
'yield',
|
||
|
|
'await',
|
||
|
|
]
|