@abaplint/transpiler
Version:
26 lines • 877 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DEFAULT_KEYWORDS = void 0;
// https://www.w3schools.com/js/js_reserved.asp
exports.DEFAULT_KEYWORDS = [
"abstract", "arguments", "await",
"break", "byte", "catch",
// "char",
"class", "const", "continue",
"debugger", "default", "do",
"double", "else", "enum", "eval",
"export", "extends", "false", "final",
"finally", "for", "function",
"goto", "if", "implements", "import",
"in", "instanceof", "interface",
"let", "long", "native", "new",
"null", "package", "private", // "protected",
"public", "return", "short", "static",
"switch", "synchronized", "this",
"throw", "throws", "transient", "true",
"try", "typeof", "var", "void",
"delete",
"volatile", "while", "yield"
];
// "with"
//# sourceMappingURL=keywords.js.map