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

Mon, 16 Sep 2019 18:56:09 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 16 Sep 2019 18:56:09 +0200
changeset 7239
3e9e09a49cf5
parent 6942
2602857055c5
permissions
-rw-r--r--

jasy: some fixes for syntax warnings.

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