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

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

eric ide

mercurial