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

branch
eric7
changeset 9209
b99e7fd55fd3
parent 8312
800c432b34c8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/ThirdParty/Jasy/jasy/script/tokenize/Lang.py	Thu Jul 07 11:23:56 2022 +0200
@@ -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