Skip to content
Snippets Groups Projects
Unverified Commit 27e2c28d authored by Leo Balter's avatar Leo Balter Committed by GitHub
Browse files

Merge pull request #1334 from anba/test-issues

Fix multiple test issues
parents 2659c888 1f57fe41
No related branches found
No related tags found
No related merge requests found
Showing
with 102 additions and 51 deletions
...@@ -115,6 +115,7 @@ template ...@@ -115,6 +115,7 @@ template
TypedArray TypedArray
u180e u180e
Uint8Array Uint8Array
Uint16Array
WeakMap WeakMap
WeakSet WeakSet
......
...@@ -18,7 +18,7 @@ info: | ...@@ -18,7 +18,7 @@ info: |
... ...
For all other grammatical productions, recurse on all nonterminals. If any piece returns true, then return true. Otherwise return false. For all other grammatical productions, recurse on all nonterminals. If any piece returns true, then return true. Otherwise return false.
features: [class-fields] features: [class-fields]
template: initializer-eval template: initializer-eval-arguments
---*/ ---*/
//- initializer //- initializer
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
desc: error if `new.call` in StatementList of eval desc: error if `new.target` in StatementList of eval
info: | info: |
Additional Early Error Rules for Eval Inside Initializer Additional Early Error Rules for Eval Inside Initializer
These static semantics are applied by PerformEval when a direct eval call occurs inside a class field initializer. These static semantics are applied by PerformEval when a direct eval call occurs inside a class field initializer.
...@@ -17,12 +17,8 @@ info: | ...@@ -17,12 +17,8 @@ info: |
It is a Syntax Error if StatementList Contains NewTarget. It is a Syntax Error if StatementList Contains NewTarget.
features: [class-fields] features: [class-fields]
template: initializer-eval template: initializer-eval-newtarget
---*/ ---*/
//- initializer //- initializer
new.call new.target
//- earlyerror
SyntaxError
//- executionerror
SyntaxError
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
desc: error if `super()` in StatementList of eval desc: error if `super()['x']` in StatementList of eval
info: | info: |
Additional Early Error Rules for Eval Inside Initializer Additional Early Error Rules for Eval Inside Initializer
These static semantics are applied by PerformEval when a direct eval call occurs inside a class field initializer. These static semantics are applied by PerformEval when a direct eval call occurs inside a class field initializer.
...@@ -17,12 +17,8 @@ info: | ...@@ -17,12 +17,8 @@ info: |
It is a Syntax Error if StatementList Contains SuperCall. It is a Syntax Error if StatementList Contains SuperCall.
features: [class-fields] features: [class-fields]
template: initializer-eval-super template: initializer-eval-super-call
---*/ ---*/
//- initializer //- initializer
super() super()['x']
//- earlyerror
SyntaxError
//- executionerror
SyntaxError
...@@ -11,18 +11,14 @@ info: | ...@@ -11,18 +11,14 @@ info: |
... ...
The remaining eval rules apply as outside a constructor, inside a method, and inside a function. The remaining eval rules apply as outside a constructor, inside a method, and inside a function.
Additional Early Error Rules for Eval Outside Methods Additional Early Error Rules for Eval Outside Constructor Methods
These static semantics are applied by PerformEval when a direct eval call occurs outside of a MethodDefinition. These static semantics are applied by PerformEval when a direct eval call occurs outside of the constructor method of a ClassDeclaration or ClassExpression.
ScriptBody:StatementList ScriptBody:StatementList
It is a Syntax Error if StatementList Contains SuperCall. It is a Syntax Error if StatementList Contains SuperCall.
features: [class-fields] features: [class-fields]
template: initializer-eval-super template: initializer-eval-super-call
---*/ ---*/
//- initializer //- initializer
super().x super().x
//- earlyerror
SyntaxError
//- executionerror
SyntaxError
...@@ -17,12 +17,8 @@ info: | ...@@ -17,12 +17,8 @@ info: |
It is a Syntax Error if StatementList Contains SuperCall. It is a Syntax Error if StatementList Contains SuperCall.
features: [class-fields] features: [class-fields]
template: initializer-eval-super template: initializer-eval-super-call
---*/ ---*/
//- initializer //- initializer
super() super()
//- earlyerror
SyntaxError
//- executionerror
SyntaxError
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
desc: error if `super().x` in StatementList of eval desc: error if `super.x` in StatementList of eval
info: | info: |
Additional Early Error Rules for Eval Inside Initializer Additional Early Error Rules for Eval Inside Initializer
These static semantics are applied by PerformEval when a direct eval call occurs inside a class field initializer. These static semantics are applied by PerformEval when a direct eval call occurs inside a class field initializer.
...@@ -17,12 +17,8 @@ info: | ...@@ -17,12 +17,8 @@ info: |
It is a Syntax Error if StatementList Contains SuperProperty. It is a Syntax Error if StatementList Contains SuperProperty.
features: [class-fields] features: [class-fields]
template: initializer-eval-super template: initializer-eval-super-property
---*/ ---*/
//- initializer //- initializer
super.x super.x
//- earlyerror
SyntaxError
//- executionerror
SyntaxError
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// This code is governed by the BSD license found in the LICENSE file. // This code is governed by the BSD license found in the LICENSE file.
/*--- /*---
desc: error if `super().x` in StatementList of eval desc: error if `super['x']` in StatementList of eval
info: | info: |
Additional Early Error Rules for Eval Inside Initializer Additional Early Error Rules for Eval Inside Initializer
These static semantics are applied by PerformEval when a direct eval call occurs inside a class field initializer. These static semantics are applied by PerformEval when a direct eval call occurs inside a class field initializer.
...@@ -17,12 +17,8 @@ info: | ...@@ -17,12 +17,8 @@ info: |
It is a Syntax Error if StatementList Contains SuperProperty. It is a Syntax Error if StatementList Contains SuperProperty.
features: [class-fields] features: [class-fields]
template: initializer-eval-super template: initializer-eval-super-property
---*/ ---*/
//- initializer //- initializer
super['x'] super['x']
//- earlyerror
SyntaxError
//- executionerror
SyntaxError
...@@ -8,7 +8,7 @@ name: direct eval ...@@ -8,7 +8,7 @@ name: direct eval
---*/ ---*/
var executed = false; var executed = false;
class C = { class C {
x = eval('executed = true; /*{ initializer }*/;'); x = eval('executed = true; /*{ initializer }*/;');
} }
......
...@@ -8,7 +8,7 @@ name: indirect eval ...@@ -8,7 +8,7 @@ name: indirect eval
---*/ ---*/
var executed = false; var executed = false;
class C = { class C {
x = (0, eval)('executed = true; /*{ initializer }*/;'); x = (0, eval)('executed = true; /*{ initializer }*/;');
} }
......
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-performeval-rules-in-initializer
path: language/statements/class/fields-direct-
name: direct eval
---*/
var executed = false;
class C {
x = eval('executed = true; /*{ initializer }*/;');
}
var c = new C();
assert.sameValue(executed, true);
assert.sameValue(c.x, undefined);
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-performeval-rules-in-initializer
path: language/statements/class/fields-indirect-
name: indirect eval
---*/
var executed = false;
class C {
x = (0, eval)('executed = true; /*{ initializer }*/;');
}
assert.throws(SyntaxError, function() {
new C();
});
assert.sameValue(executed, false);
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-performeval-rules-in-initializer
path: language/expressions/class/fields-direct-
name: direct eval
---*/
var executed = false;
var C = class {
x = eval('executed = true; /*{ initializer }*/;');
}
var c = new C();
assert.sameValue(executed, true);
assert.sameValue(c.x, undefined);
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-performeval-rules-in-initializer
path: language/expressions/class/fields-indirect-
name: indirect eval
---*/
var executed = false;
var C = class {
x = (0, eval)('executed = true; /*{ initializer }*/;');
}
assert.throws(SyntaxError, function() {
new C();
});
assert.sameValue(executed, false);
...@@ -7,14 +7,14 @@ path: language/statements/class/fields-derived-cls-direct- ...@@ -7,14 +7,14 @@ path: language/statements/class/fields-derived-cls-direct-
name: direct eval name: direct eval
---*/ ---*/
class A = {} class A {}
var executed = false; var executed = false;
class C extends A = { class C extends A {
x = eval('executed = true; /*{ initializer }*/;'); x = eval('executed = true; /*{ initializer }*/;');
} }
assert.throws(/*{ earlyerror }*/, function() { assert.throws(SyntaxError, function() {
new C(); new C();
}); });
......
...@@ -7,15 +7,15 @@ path: language/statements/class/fields-derived-cls-indirect- ...@@ -7,15 +7,15 @@ path: language/statements/class/fields-derived-cls-indirect-
name: indirect eval name: indirect eval
---*/ ---*/
class A = {} class A {}
var executed = false; var executed = false;
class C extends A = { class C extends A {
x = (0, eval)('executed = true; /*{ initializer }*/;'); x = (0, eval)('executed = true; /*{ initializer }*/;');
} }
assert.throws(/*{ executionerror }*/, function() { assert.throws(SyntaxError, function() {
new C(); new C();
}); });
assert.sameValue(executed, true); assert.sameValue(executed, false);
...@@ -14,7 +14,7 @@ var C = class extends A { ...@@ -14,7 +14,7 @@ var C = class extends A {
x = eval('executed = true; /*{ initializer }*/;'); x = eval('executed = true; /*{ initializer }*/;');
} }
assert.throws(/*{ earlyerror }*/, function() { assert.throws(SyntaxError, function() {
new C(); new C();
}); });
......
...@@ -14,8 +14,8 @@ var C = class extends A { ...@@ -14,8 +14,8 @@ var C = class extends A {
x = (0, eval)('executed = true; /*{ initializer }*/;'); x = (0, eval)('executed = true; /*{ initializer }*/;');
} }
assert.throws(/*{ executionerror }*/, function() { assert.throws(SyntaxError, function() {
new C(); new C();
}); });
assert.sameValue(executed, true); assert.sameValue(executed, false);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment