--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ThirdParty/Jasy/jasy/js/tokenize/Lang.py Mon Aug 12 22:21:53 2013 +0200 @@ -0,0 +1,24 @@ +# +# 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" +])