Skip to content

Commit

Permalink
Cleaned up code, added test case for esprima 2.5 enhancement to parse…
Browse files Browse the repository at this point in the history
… new.target meta-property.
  • Loading branch information
steveg committed Dec 15, 2015
1 parent 6420bda commit 8739f75
Show file tree
Hide file tree
Showing 2 changed files with 227 additions and 2 deletions.
4 changes: 2 additions & 2 deletions escodegen.js
Expand Up @@ -1941,9 +1941,9 @@
MetaProperty: function (expr, precedence, flags) {
var result;
result = [];
result.push(generateIdentifier(expr.meta));
result.push(expr.meta);
result.push('.');
result.push(generateIdentifier(expr.property));
result.push(expr.property);
return parenthesize(result, Precedence.Member, precedence);
},

Expand Down
225 changes: 225 additions & 0 deletions test/harmony-esprima-2.5.js
@@ -0,0 +1,225 @@
/*
Copyright (C) 2011-2013 Yusuke Suzuki <utatane.tea@gmail.com>
Copyright (C) 2015 Ingvar Stepanyan <me@rreverser.com>
Copyright (C) 2012 Ariya Hidayat <ariya.hidayat@gmail.com>
Copyright (C) 2012 Joost-Wim Boekesteijn <joost-wim@boekesteijn.nl>
Copyright (C) 2012 Yusuke Suzuki <utatane.tea@gmail.com>
Copyright (C) 2012 Arpad Borsos <arpad.borsos@googlemail.com>
Copyright (C) 2011 Ariya Hidayat <ariya.hidayat@gmail.com>
Copyright (C) 2011 Arpad Borsos <arpad.borsos@googlemail.com>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

'use strict';

var esprima = require('./3rdparty/esprima-2.5.0'),
escodegen = require('./loader'),
chai = require('chai'),
expect = chai.expect,
data;

data = {
'Harmony MetaProperty': {
'class SomeClass { constructor() { if (new.target === SomeClass) { throw new Error(\'Boom\'); }}}': {
type: 'Program',
body: [ {
type: "ClassDeclaration",
id: {
type: "Identifier",
name: "SomeClass"
},
superClass: null,
body: {
type: "ClassBody",
body: [
{
type: "MethodDefinition",
key: {
type: "Identifier",
name: "constructor"
},
computed: false,
value: {
type: "FunctionExpression",
id: null,
params: [],
defaults: [],
body: {
type: "BlockStatement",
body: [
{
type: "IfStatement",
test: {
type: "BinaryExpression",
operator: "===",
left: {
type: "MetaProperty",
meta: "new",
property: "target"
},
right: {
type: "Identifier",
name: "SomeClass"
}
},
consequent: {
type: "BlockStatement",
body: [
{
type: "ThrowStatement",
argument: {
type: "NewExpression",
callee: {
type: "Identifier",
name: "Error"
},
arguments: [
{
type: "Literal",
value: "Boom",
raw: "'Boom'"
}
]
}
}
]
},
alternate: null
}
]
},
generator: false,
expression: false
},
kind: "constructor",
static: false
}
],
}
}],
}
},
};

function updateDeeply(target, override) {
var key, val;

function isHashObject(target) {
return typeof target === 'object' && target instanceof Object && !(target instanceof RegExp);
}

for (key in override) {
if (override.hasOwnProperty(key)) {
val = override[key];
if (isHashObject(val)) {
if (isHashObject(target[key])) {
updateDeeply(target[key], val);
} else {
target[key] = updateDeeply({}, val);
}
} else {
target[key] = val;
}
}
}
return target;
}

// Special handling for regular expression literal since we need to
// convert it to a string literal, otherwise it will be decoded
// as object "{}" and the regular expression would be lost.
function adjustRegexLiteral(key, value) {
'use strict';
if (key === 'value' && value instanceof RegExp) {
value = value.toString();
}
return value;
}

function testIdentity(code, syntax) {
'use strict';
var expected, tree, actual, actual2, options, StringObject;

// alias, so that JSLint does not complain.
StringObject = String;

options = {
comment: false,
range: false,
loc: false,
tokens: false,
raw: false
};

tree = esprima.parse(code, options);
expected = JSON.stringify(tree, adjustRegexLiteral, 4);
tree = esprima.parse(escodegen.generate(tree), options);
actual = JSON.stringify(tree, adjustRegexLiteral, 4);
tree = esprima.parse(escodegen.generate(syntax), options);
actual2 = JSON.stringify(tree, adjustRegexLiteral, 4);
expect(actual).to.be.equal(expected);
expect(actual2).to.be.equal(expected);
}

function testGenerate(expected, result) {
'use strict';
var actual, options;

options = {
indent: ' ',
parse: esprima.parse
};

if (result.options) {
options = updateDeeply(options, result.options);
}

actual = escodegen.generate(result.generateFrom, options);
expect(actual).to.be.equal(expected);
}

function isGeneratorIdentityFixture(result) {
'use strict';
return !result.hasOwnProperty('generateFrom') &&
!result.hasOwnProperty('result');
}

function runTest(code, result) {
'use strict';
if (result.hasOwnProperty('generateFrom')) {
testGenerate(code, result);
} else {
testIdentity(code, result);
}
}

describe('harmony 2.x test', function () {
Object.keys(data).forEach(function (category) {
Object.keys(data[category]).forEach(function (source) {
it(category, function () {
var expected = data[category][source];
runTest(source, expected);
});
});
});
});
/* vim: set sw=4 ts=4 et tw=80 : */

0 comments on commit 8739f75

Please sign in to comment.