Bug 1708235 - Remove shell flag requirement for private field tests r=yulia

As well, convert --enable-private-fields to --disable-private-fields

Differential Revision: https://phabricator.services.mozilla.com/D113705
This commit is contained in:
Matthew Gaudet 2021-04-30 20:42:10 +00:00
Родитель a945eb31d9
Коммит 2bd9ba6041
1365 изменённых файлов: 806 добавлений и 1388 удалений

Просмотреть файл

@ -1,4 +1,4 @@
// |jit-test| --enable-private-fields; --enable-private-methods;
// |jit-test| --enable-private-methods;
load(libdir + 'asserts.js');
load(libdir + 'evalInFrame.js');

Просмотреть файл

@ -1,4 +1,4 @@
// |jit-test| --enable-private-fields; --more-compartments
// |jit-test| --more-compartments
a = newGlobal()
b = a.Debugger(this)

Просмотреть файл

@ -1,4 +1,4 @@
// |jit-test| --enable-private-fields; --enable-ergonomic-brand-checks;
// |jit-test| --enable-ergonomic-brand-checks;
class Base {
constructor(o) {
return o;

Просмотреть файл

@ -1,5 +1,3 @@
// |jit-test| --enable-private-fields;
var acc = 0;
const loopCount = 100;

Просмотреть файл

@ -1,4 +1,3 @@
// |jit-test| --enable-private-fields;
load(libdir + 'asserts.js');
load(libdir + 'evalInFrame.js');

Просмотреть файл

@ -1,6 +1,3 @@
// |jit-test| --enable-private-fields;
class A {
#x = 10

Просмотреть файл

@ -1,5 +1,3 @@
// |jit-test| --enable-private-fields;
function assertThrows(fun, errorType) {
try {
fun();

Просмотреть файл

@ -1,5 +1,3 @@
// |jit-test| --enable-private-fields;
var shouldBeThis;
class A {

Просмотреть файл

@ -1,5 +1,3 @@
// |jit-test| --enable-private-fields;
load(libdir + "asserts.js");
class C {

Просмотреть файл

@ -1,4 +1,4 @@
// |jit-test| skip-if: !('oomTest' in this); --enable-private-fields
// |jit-test| skip-if: !('oomTest' in this);
// Check for proxy expando OOM issues.
function assertThrowsTypeError(f) {

Просмотреть файл

@ -1,5 +1,3 @@
// |jit-test| --enable-private-fields;
function rp(x) {
return Reflect.parse(x);
};

Просмотреть файл

@ -1,5 +1,3 @@
// |jit-test| --enable-private-fields;
let hit = false;
function f() {
@ -15,6 +13,6 @@ class C {
try {
C.m({}); // throws a TypeError
} catch {}
} catch { }
assertEq(hit, true);

Просмотреть файл

@ -1,5 +1,3 @@
// |jit-test| --enable-private-fields;
class B {
constructor(obj) { return obj; }
}

Просмотреть файл

@ -1,5 +1,3 @@
// |jit-test| --enable-private-fields;
// Ensure private fields are stamped in order and that
// we can successfully partially initialize objects.

Просмотреть файл

@ -1,6 +1,3 @@
// |jit-test| --enable-private-fields;
class Base {
constructor(o) {
return o;

Просмотреть файл

@ -1,4 +1,4 @@
// |jit-test| --enable-private-fields; --enable-private-methods
// |jit-test| --enable-private-methods
// Test that the sourceStart/sourceEnd values of scripts match the current
// expectations. These values are internal details and slightly arbitrary so

Просмотреть файл

@ -1,4 +1,3 @@
// |jit-test| --enable-private-fields;
load(libdir + 'bytecode-cache.js');
function test() {
@ -7,4 +6,4 @@ function test() {
}
};
evalWithCache(test.toString(), {assertEqBytecode: true, assertEqResult: true});
evalWithCache(test.toString(), { assertEqBytecode: true, assertEqResult: true });

Просмотреть файл

@ -11019,7 +11019,7 @@ static bool SetContextOptions(JSContext* cx, const OptionParser& op) {
enablePropertyErrorMessageFix =
!op.getBoolOption("disable-property-error-message-fix");
enableIteratorHelpers = op.getBoolOption("enable-iterator-helpers");
enablePrivateClassFields = op.getBoolOption("enable-private-fields") ||
enablePrivateClassFields = !op.getBoolOption("disable-private-fields") ||
op.getBoolOption("enable-private-methods");
enablePrivateClassMethods = op.getBoolOption("enable-private-methods");
enableErgonomicBrandChecks =
@ -11993,8 +11993,9 @@ int main(int argc, char** argv) {
"property of null or undefined") ||
!op.addBoolOption('\0', "enable-iterator-helpers",
"Enable iterator helpers") ||
!op.addBoolOption('\0', "enable-private-fields",
"Enable private class fields") ||
!op.addBoolOption('\0', "disable-private-fields",
"Disable private class fields (overriden by "
"--enable-private-methods)") ||
!op.addBoolOption('\0', "enable-private-methods",
"Enable private class methods") ||
!op.addBoolOption(

Просмотреть файл

@ -1017,8 +1017,6 @@ shell-option(--enable-iterator-helpers) script non262/Iterator/prototype/take/ta
shell-option(--enable-iterator-helpers) script non262/Iterator/prototype/take/take-more-than-available.js
# Enable private methods in Reflect.parse tests.
# Private methods currently need private fields to be enabled as well.
shell-option(--enable-private-fields) script non262/reflect-parse/classes.js
shell-option(--enable-private-methods) script non262/reflect-parse/classes.js
# New Ergonomic Brand Check Tests: Failure to find private method https://bugzilla.mozilla.org/show_bug.cgi?id=1706763

Просмотреть файл

@ -1,5 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest|
function assertLineAndColumn(str, line, column) {
try {
eval(str);

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| skip-if(!xulRuntime.shell) -- needs newGlobal()
class A {
#x = {a: 1};

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest|
// Verify that private fields are enabled.
class A {
@ -29,7 +29,7 @@ with (new class A { #x; }) {
`);
// Make sure we don't create a generic binding for #x.
with(new class {
with (new class {
#x = 12;
}) {
assertEq('#x' in this, false);

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest|
// Returns the argument in the constructor to allow stamping private fields into
// arbitrary objects.

Просмотреть файл

@ -1,5 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest|
var C = class {
static #field = () => 'Test262';
static field = () => 'Test262';

Просмотреть файл

@ -1,5 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest|
// AllPrivateIdentifiersValid uses only lexical string names, not
// the dynamic private names; which means the below is not a syntax
// error but is instead a TypeError on access.

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest|
//
// Ensure PrivateNames aren't iterable.

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest|
class A {
#x = 10;

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest|
// Validate CCWs and proxies
class Base {

Просмотреть файл

@ -1,5 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest|
// Ensure that the distinction between Proxy Init and Proxy Set holds
function assertThrowsTypeError(f) {

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-option
// |reftest|
class A {
#x = 14;

Просмотреть файл

@ -44,8 +44,6 @@ RELEASE_OR_BETA = set(
]
)
SHELL_OPTIONS = {
"class-fields-private": "--enable-private-fields",
"class-static-fields-private": "--enable-private-fields",
"class-methods-private": "--enable-private-methods",
"class-static-methods-private": "--enable-private-methods",
"class-fields-private-in": "--enable-ergonomic-brand-checks",

Просмотреть файл

@ -1,4 +1,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// Copyright (C) 2019 Caio Lima (Igalia SL). All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---

Просмотреть файл

@ -1,4 +1,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// Copyright (C) 2019 Caio Lima (Igalia SL). All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---

Просмотреть файл

@ -1,4 +1,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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,3 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) -- requires shell-options
// 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| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// 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| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// 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

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| shell-option(--enable-private-methods) skip-if(!xulRuntime.shell) async -- requires shell-options
// 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-static-async-gen.template

Просмотреть файл

@ -1,4 +1,4 @@
// |reftest| shell-option(--enable-private-fields) skip-if(!xulRuntime.shell) async -- requires shell-options
// |reftest| async
// 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-method.template

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше