Only last parameter between parentheses can have spread
This commit is contained in:
committed by
Richard van Velzen
parent
f9cab7ad61
commit
6b03b800b3
26
test/mocha/class.js
Normal file
26
test/mocha/class.js
Normal file
@@ -0,0 +1,26 @@
|
||||
var assert = require("assert");
|
||||
var uglify = require("../../");
|
||||
|
||||
describe("Class", function() {
|
||||
it("Should not accept spread on non-last parameters in methods", function() {
|
||||
var tests = [
|
||||
"class foo { bar(...a, b) { return a.join(b) } }",
|
||||
"class foo { bar(a, b, ...c, d) { return c.join(a + b) + d } }",
|
||||
"class foo { *bar(...a, b) { return a.join(b) } }",
|
||||
"class foo { *bar(a, b, ...c, d) { return c.join(a + b) + d } }"
|
||||
];
|
||||
var test = function(code) {
|
||||
return function() {
|
||||
uglify.parse(code, {fromString: true});
|
||||
}
|
||||
}
|
||||
var error = function(e) {
|
||||
return e instanceof uglify.JS_Parse_Error &&
|
||||
e.message === "Unexpected token: expand (...)";
|
||||
}
|
||||
|
||||
for (var i = 0; i < tests.length; i++) {
|
||||
assert.throws(test(tests[i]), error);
|
||||
}
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user