flip more ES 2015 flags (#555)

This commit is contained in:
Jeff Williams 2015-01-27 12:19:45 -08:00
parent 4b4445fd9b
commit 25e7e63f59

View File

@ -142,9 +142,21 @@ AstBuilder.prototype.build = function(source, filename) {
range: true,
tokens: true,
ecmaFeatures: {
binaryLiterals: true,
blockBindings: true,
defaultParams: true,
forOf: true,
generators: true,
jsx: false,
templateStrings: true
objectLiteralComputedProperties: true,
objectLiteralDuplicateProperties: true,
objectLiteralShorthandMethods: true,
objectLiteralShorthandProperties: true,
octalLiterals: true,
regexUFlag: true,
regexYFlag: true,
templateStrings: true,
unicodeCodePointEscapes: true
}
};