diff --git a/test/staging/sm/class/compPropDestr.js b/test/staging/sm/class/compPropDestr.js index 0b678255d4..cfaa3aca89 100644 --- a/test/staging/sm/class/compPropDestr.js +++ b/test/staging/sm/class/compPropDestr.js @@ -6,15 +6,10 @@ includes: [sm/non262.js, sm/non262-shell.js] flags: - noStrict description: | - pending + Computed Property Names esid: pending ---*/ -var BUGNUMBER = 924688; -var summary = 'Computed Property Names'; - -print(BUGNUMBER + ": " + summary); var key = "z"; var { [key]: foo } = { z: "bar" }; assert.sameValue(foo, "bar"); - diff --git a/test/staging/sm/class/compPropNames.js b/test/staging/sm/class/compPropNames.js index b90e19865a..f7a645eadf 100644 --- a/test/staging/sm/class/compPropNames.js +++ b/test/staging/sm/class/compPropNames.js @@ -6,13 +6,9 @@ includes: [sm/non262.js, sm/non262-shell.js] flags: - noStrict description: | - pending + Computed Property Names esid: pending ---*/ -var BUGNUMBER = 924688; -var summary = 'Computed Property Names'; - -print(BUGNUMBER + ": " + summary); // Function definitions. function syntaxError (script) { @@ -249,4 +245,3 @@ obj = { assert.sameValue(obj.hey, 1); assert.sameValue(obj[4], 2); assertThrowsValue(() => { obj.x = 7; }, 3); - diff --git a/test/staging/sm/class/methDefn.js b/test/staging/sm/class/methDefn.js index 6bd3494e50..c4f1675010 100644 --- a/test/staging/sm/class/methDefn.js +++ b/test/staging/sm/class/methDefn.js @@ -6,13 +6,9 @@ includes: [sm/non262.js, sm/non262-shell.js] flags: - noStrict description: | - pending + Method Definitions esid: pending ---*/ -var BUGNUMBER = 924672; -var summary = 'Method Definitions' - -print(BUGNUMBER + ": " + summary); // Function definitions. function syntaxError (script) { @@ -210,4 +206,3 @@ testStrictMode(); // Tests provided by benvie in the bug to distinguish from ES5 desugar. assert.sameValue(({ method() {} }).method.name, "method"); assert.throws(ReferenceError, function() {({ method() { method() } }).method() }); - diff --git a/test/staging/sm/class/methDefnGen.js b/test/staging/sm/class/methDefnGen.js index 4cbe845f15..efcc50b8e4 100644 --- a/test/staging/sm/class/methDefnGen.js +++ b/test/staging/sm/class/methDefnGen.js @@ -6,13 +6,9 @@ includes: [sm/non262.js, sm/non262-shell.js] flags: - noStrict description: | - pending + Method Definitions - Generators esid: pending ---*/ -var BUGNUMBER = 924672; -var summary = 'Method Definitions - Generators' - -print(BUGNUMBER + ": " + summary); // Function definitions. function syntaxError (script) { @@ -89,4 +85,3 @@ assert.sameValue(a.b(1).next().value, 1); // Generators should not have [[Construct]] a = {*g() { yield 1; }} assert.throws(TypeError, () => { new a.g }); -