ThirdParty/Jasy/jasy/script/tokenize/Lang.py

changeset 6650
1dd52aa8897c
parent 5843
76eee727ccd9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ThirdParty/Jasy/jasy/script/tokenize/Lang.py	Sat Jan 12 12:11:42 2019 +0100
@@ -0,0 +1,25 @@
+#
+# Jasy - Web Tooling Framework
+# Copyright 2010-2012 Zynga Inc.
+# Copyright 2013-2014 Sebastian Werner
+#
+
+from __future__ import unicode_literals
+
+"""JavaScript 1.7 keywords"""
+keywords = set([
+    "break",
+    "case", "catch", "const", "continue",
+    "debugger", "default", "delete", "do",
+    "else",
+    "false", "finally", "for", "function",
+    "if", "in", "instanceof",
+    "let",
+    "new", "null",
+    "return",
+    "switch",
+    "this", "throw", "true", "try", "typeof",
+    "var", "void",
+    "yield",
+    "while", "with"
+])

eric ide

mercurial