зеркало из https://github.com/mozilla/gecko-dev.git
Backed out 2 changesets (bug 1540243) for mozlint failure in /builds/worker/checkouts/gecko/js/src/tests/test262-update.py CLOSED TREE
Backed out changeset 56f89628841e (bug 1540243) Backed out changeset c3d4d8a91af7 (bug 1540243)
This commit is contained in:
Родитель
303117e873
Коммит
25421d707e
|
@ -10,7 +10,7 @@ var newTarget = Object.defineProperty(function(){}.bind(), "prototype", {
|
|||
var AsyncGenerator = async function*(){}.constructor;
|
||||
|
||||
assertThrowsInstanceOf(() => {
|
||||
Reflect.construct(AsyncGenerator, ["@error"], newTarget);
|
||||
Reflect.construct(AsyncGenerator, ["#error"], newTarget);
|
||||
}, SyntaxError);
|
||||
|
||||
assertEq(getProtoCalled, false);
|
||||
|
|
|
@ -8,7 +8,7 @@ var newTarget = Object.defineProperty(function(){}.bind(), "prototype", {
|
|||
});
|
||||
|
||||
assertThrowsInstanceOf(() => {
|
||||
Reflect.construct(Function, ["@error"], newTarget);
|
||||
Reflect.construct(Function, ["#error"], newTarget);
|
||||
}, SyntaxError);
|
||||
|
||||
assertEq(getProtoCalled, false);
|
||||
|
|
|
@ -10,7 +10,7 @@ var newTarget = Object.defineProperty(function(){}.bind(), "prototype", {
|
|||
var AsyncFunction = async function(){}.constructor;
|
||||
|
||||
assertThrowsInstanceOf(() => {
|
||||
Reflect.construct(AsyncFunction, ["@error"], newTarget);
|
||||
Reflect.construct(AsyncFunction, ["#error"], newTarget);
|
||||
}, SyntaxError);
|
||||
|
||||
assertEq(getProtoCalled, false);
|
||||
|
|
|
@ -10,7 +10,7 @@ var newTarget = Object.defineProperty(function(){}.bind(), "prototype", {
|
|||
var Generator = function*(){}.constructor;
|
||||
|
||||
assertThrowsInstanceOf(() => {
|
||||
Reflect.construct(Generator, ["@error"], newTarget);
|
||||
Reflect.construct(Generator, ["#error"], newTarget);
|
||||
}, SyntaxError);
|
||||
|
||||
assertEq(getProtoCalled, false);
|
||||
|
|
|
@ -21,6 +21,7 @@ from operator import itemgetter
|
|||
# Skip all tests which use features not supported in SpiderMonkey.
|
||||
UNSUPPORTED_FEATURES = set([
|
||||
"tail-call-optimization",
|
||||
"class-fields-public",
|
||||
"class-static-fields-public",
|
||||
"class-fields-private",
|
||||
"class-static-fields-private",
|
||||
|
@ -42,8 +43,6 @@ FEATURE_CHECK_NEEDED = {
|
|||
"Atomics": "!this.hasOwnProperty('Atomics')",
|
||||
"BigInt": "!this.hasOwnProperty('BigInt')",
|
||||
"SharedArrayBuffer": "!this.hasOwnProperty('SharedArrayBuffer')",
|
||||
# Syntax is a bit weird, because this string cannot have spaces in it
|
||||
"class-fields-public": "(function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()",
|
||||
"dynamic-import": "!xulRuntime.shell",
|
||||
}
|
||||
RELEASE_OR_BETA = set()
|
||||
|
@ -254,8 +253,8 @@ def convertTestFile(test262parser, testSource, testName, includeSet, strictTests
|
|||
|
||||
# Async tests are marked with the "async" attribute. It is an error for a
|
||||
# test to use the $DONE function without specifying the "async" attribute.
|
||||
isAsync = "async" in testRec
|
||||
assert b"$DONE" not in testSource or isAsync, "Missing async attribute in: %s" % testName
|
||||
async = "async" in testRec
|
||||
assert b"$DONE" not in testSource or async, "Missing async attribute in: %s" % testName
|
||||
|
||||
# When the "module" attribute is set, the source code is module code.
|
||||
isModule = "module" in testRec
|
||||
|
@ -299,7 +298,7 @@ def convertTestFile(test262parser, testSource, testName, includeSet, strictTests
|
|||
if "Atomics" in testRec["features"] and "SharedArrayBuffer" in testRec["features"]:
|
||||
refTestSkipIf.append(("(this.hasOwnProperty('getBuildConfiguration')"
|
||||
"&&getBuildConfiguration()['arm64-simulator'])",
|
||||
"ARM64 Simulator cannot emulate atomics"))
|
||||
"ARM64 Simulator cannot emulate atomics"))
|
||||
|
||||
# Includes for every test file in a directory is collected in a single
|
||||
# shell.js file per directory level. This is done to avoid adding all
|
||||
|
@ -309,7 +308,7 @@ def convertTestFile(test262parser, testSource, testName, includeSet, strictTests
|
|||
includeSet.update(testRec["includes"])
|
||||
|
||||
# Add reportCompare() after all positive, synchronous tests.
|
||||
if not isNegative and not isAsync:
|
||||
if not isNegative and not async:
|
||||
testEpilogue = "reportCompare(0, 0);"
|
||||
else:
|
||||
testEpilogue = ""
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// Copyright (C) 2018 Kevin Gibbons. All rights reserved.
|
||||
// This code is governed by the BSD license found in the LICENSE file.
|
||||
/*---
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/computed-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/computed-symbol-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/grammar-privatename-identifier-semantics-stringvalue.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/literal-names-asi.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/literal-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-field-usage.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-method-getter-usage.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-method-usage.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-field-identifier-initializer.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-field-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-getter-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-getter.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-method-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-method.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-setter-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-setter.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-privatename-identifier-initializer-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-privatename-identifier-initializer.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-async-generator-method-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-async-generator-method-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-async-method-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-async-method-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-generator-method-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-generator-method-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-method-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-method-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-alt-by-classname.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-by-classname.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-initializer-alt-by-classname.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-initializer-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-initializer.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/static-private-fields.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private,class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/static-private-methods-with-fields.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/static-private-methods.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/string-literal-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/computed-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/computed-symbol-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/grammar-privatename-identifier-semantics-stringvalue.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/literal-names-asi.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/literal-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-field-usage.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-method-getter-usage.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-method-usage.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-field-identifier-initializer.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-field-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-getter-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-getter.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-method-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-method.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-setter-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-setter.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-privatename-identifier-initializer-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-privatename-identifier-initializer.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-async-generator-method-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-async-generator-method-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-async-method-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-async-method-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-generator-method-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-generator-method-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-method-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-method-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-alt-by-classname.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-by-classname.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-initializer-alt-by-classname.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-initializer-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier-initializer.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-static-privatename-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/static-private-fields.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private,class-static-fields-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-static-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/static-private-methods-with-fields.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-static-methods-private is not supported
|
||||
// |reftest| skip -- class-static-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/static-private-methods.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/string-literal-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-method.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/computed-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/computed-symbol-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/grammar-privatename-identifier-semantics-stringvalue.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/literal-names-asi.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/literal-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-field-usage.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-method-getter-usage.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-method-usage.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-fields-private is not supported
|
||||
// |reftest| skip -- class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/private-names.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-field-identifier-initializer.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip-if((function(){try{eval('c=class{x;}');return(false);}catch{return(true);}})()) -- class-fields-public is not enabled unconditionally
|
||||
// |reftest| skip -- class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-field-identifier.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-getter-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-getter.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// |reftest| skip -- class-methods-private,class-fields-private is not supported
|
||||
// |reftest| skip -- class-methods-private,class-fields-private,class-fields-public is not supported
|
||||
// This file was procedurally generated from the following sources:
|
||||
// - src/class-elements/rs-private-method-alt.case
|
||||
// - src/class-elements/productions/cls-expr-after-same-line-static-async-gen.template
|
||||
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче