mirror of
https://github.com/tc39/test262.git
synced 2025-09-25 19:18:48 +02:00
Enable strict mode testing for sm/generators
This commit is contained in:
parent
8f259600e2
commit
6aa99aa29a
@ -2,8 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [deepEqual.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [sm/assertThrowsValue.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [deepEqual.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [sm/non262-generators-shell.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [sm/assertThrowsValue.js, sm/non262-generators-shell.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [sm/non262-generators-shell.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [sm/non262-generators-shell.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [deepEqual.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [deepEqual.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [deepEqual.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [deepEqual.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [deepEqual.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -2,8 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
@ -19,7 +17,7 @@ function* gen() {
|
||||
}
|
||||
|
||||
var j = 0;
|
||||
for (i of gen())
|
||||
for (var i of gen())
|
||||
assert.sameValue(i, j++);
|
||||
|
||||
// now mess up the stack
|
||||
|
@ -2,8 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
IteratorNext should throw if the value returned by iterator.next() is not an object.
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [compareArray.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -4,8 +4,6 @@
|
||||
*/
|
||||
|
||||
/*---
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -2,8 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
Return value should not be overwritten by finally block with normal execution.
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [compareArray.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [sm/assertThrowsValue.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -3,8 +3,6 @@
|
||||
|
||||
/*---
|
||||
includes: [sm/assertThrowsValue.js]
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
@ -2,8 +2,6 @@
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
|
||||
/*---
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
Returning non-object from @@iterator should throw
|
||||
esid: pending
|
||||
|
@ -4,8 +4,6 @@
|
||||
/*---
|
||||
features:
|
||||
- IsHTMLDDA
|
||||
flags:
|
||||
- noStrict
|
||||
description: |
|
||||
pending
|
||||
esid: pending
|
||||
|
Loading…
x
Reference in New Issue
Block a user