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

Mon, 12 Aug 2013 22:21:53 +0200

author
T.Rzepka <Tobias.Rzepka@gmail.com>
date
Mon, 12 Aug 2013 22:21:53 +0200
branch
Py2 comp.
changeset 2847
1843ef6e2656
parent 2779
4d433896b6d6
child 3145
a9de05d4a22f
permissions
-rw-r--r--

Merge with default branch.

#
# Jasy - Web Tooling Framework
# Copyright 2010-2012 Zynga Inc.
#

"""JavaScript 1.7 keywords"""
from __future__ import unicode_literals    # __IGNORE_WARNING__

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