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

branch
Py2 comp.
changeset 2847
1843ef6e2656
parent 2779
4d433896b6d6
child 3145
a9de05d4a22f
equal deleted inserted replaced
2846:b852fe4d153a 2847:1843ef6e2656
1 #
2 # Jasy - Web Tooling Framework
3 # Copyright 2010-2012 Zynga Inc.
4 #
5
6 """JavaScript 1.7 keywords"""
7 from __future__ import unicode_literals # __IGNORE_WARNING__
8
9 keywords = set([
10 "break",
11 "case", "catch", "const", "continue",
12 "debugger", "default", "delete", "do",
13 "else",
14 "false", "finally", "for", "function",
15 "if", "in", "instanceof",
16 "let",
17 "new", "null",
18 "return",
19 "switch",
20 "this", "throw", "true", "try", "typeof",
21 "var", "void",
22 "yield",
23 "while", "with"
24 ])

eric ide

mercurial