UNPKG

977 BJavaScriptView Raw
1/**
2 * @fileoverview A shared list of ES3 keywords.
3 * @author Josh Perez
4 * @copyright 2015 Jose Roberto Vidal. All rights reserved.
5 */
6"use strict";
7
8module.exports = [
9 "abstract",
10 "boolean",
11 "break",
12 "byte",
13 "case",
14 "catch",
15 "char",
16 "class",
17 "const",
18 "continue",
19 "debugger",
20 "default",
21 "delete",
22 "do",
23 "double",
24 "else",
25 "enum",
26 "export",
27 "extends",
28 "false",
29 "final",
30 "finally",
31 "float",
32 "for",
33 "function",
34 "goto",
35 "if",
36 "implements",
37 "import",
38 "in",
39 "instanceof",
40 "int",
41 "interface",
42 "long",
43 "native",
44 "new",
45 "null",
46 "package",
47 "private",
48 "protected",
49 "public",
50 "return",
51 "short",
52 "static",
53 "super",
54 "switch",
55 "synchronized",
56 "this",
57 "throw",
58 "throws",
59 "transient",
60 "true",
61 "try",
62 "typeof",
63 "var",
64 "void",
65 "volatile",
66 "while",
67 "with"
68];