Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

keywords.js 917B

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