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