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

Sun, 14 Apr 2019 15:09:21 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 14 Apr 2019 15:09:21 +0200
changeset 6942
2602857055c5
parent 6650
ThirdParty/Jasy/jasy/script/tokenize/Lang.py@1dd52aa8897c
permissions
-rw-r--r--

Major restructuring of the source tree to get prepared for a setup.py based installation.

#
# 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