mirror of
https://github.com/tc39/test262.git
synced 2025-07-25 15:04:43 +02:00
revisions
This commit is contained in:
parent
d65bee93c5
commit
cfe7f35059
@ -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: Syntax error if you call delete on call expressions . private async generator method
|
desc: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
||||||
template: delete-error
|
template: delete-error
|
||||||
features: [class, class-fields-private, class-methods-private, class-fields-public]
|
features: [class, class-fields-private, class-methods-private, class-fields-public]
|
||||||
---*/
|
---*/
|
||||||
@ -14,7 +14,7 @@ var g = this.f;
|
|||||||
//- expression
|
//- expression
|
||||||
g().#m
|
g().#m
|
||||||
//- functiondeclaration
|
//- functiondeclaration
|
||||||
f() {
|
f() {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
async *#m() {}
|
async *#m() {}
|
@ -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: Syntax error if you call delete on call expressions . private async method
|
desc: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
||||||
template: delete-error
|
template: delete-error
|
||||||
features: [class, class-fields-private, class-methods-private, class-fields-public]
|
features: [class, class-fields-private, class-methods-private, class-fields-public]
|
||||||
---*/
|
---*/
|
||||||
@ -14,7 +14,7 @@ var g = this.f;
|
|||||||
//- expression
|
//- expression
|
||||||
g().#m
|
g().#m
|
||||||
//- functiondeclaration
|
//- functiondeclaration
|
||||||
f() {
|
f() {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
async #m() {}
|
async #m() {}
|
@ -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: Syntax error if you call delete on call expressions . private generator method
|
desc: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
||||||
template: delete-error
|
template: delete-error
|
||||||
features: [class, class-fields-private, class-methods-private, class-fields-public]
|
features: [class, class-fields-private, class-methods-private, class-fields-public]
|
||||||
---*/
|
---*/
|
||||||
@ -14,7 +14,7 @@ var g = this.f;
|
|||||||
//- expression
|
//- expression
|
||||||
g().#m
|
g().#m
|
||||||
//- functiondeclaration
|
//- functiondeclaration
|
||||||
f() {
|
f() {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
* #m() {}
|
* #m() {}
|
@ -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: Syntax error if you call delete on call expressions . private method
|
desc: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
||||||
template: delete-error
|
template: delete-error
|
||||||
features: [class, class-fields-private, class-methods-private, class-fields-public]
|
features: [class, class-fields-private, class-methods-private, class-fields-public]
|
||||||
---*/
|
---*/
|
||||||
@ -14,7 +14,7 @@ var g = this.f;
|
|||||||
//- expression
|
//- expression
|
||||||
g().#m
|
g().#m
|
||||||
//- functiondeclaration
|
//- functiondeclaration
|
||||||
f() {
|
f() {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
#m() {}
|
#m() {}
|
@ -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: Syntax error if you call delete on call expressions . privatename
|
desc: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
||||||
template: delete-error
|
template: delete-error
|
||||||
features: [class, class-fields-private, class-fields-public]
|
features: [class, class-fields-private, class-fields-public]
|
||||||
---*/
|
---*/
|
||||||
@ -14,6 +14,6 @@ var g = this.f;
|
|||||||
//- expression
|
//- expression
|
||||||
g().#x
|
g().#x
|
||||||
//- functiondeclaration
|
//- functiondeclaration
|
||||||
f() {
|
f() {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
@ -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: Syntax error if you call delete on member expressions . private async generator method
|
desc: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
||||||
template: delete-error
|
template: delete-error
|
||||||
features: [class-methods-private]
|
features: [class-methods-private]
|
||||||
---*/
|
---*/
|
||||||
@ -11,4 +11,4 @@ features: [class-methods-private]
|
|||||||
this.#m
|
this.#m
|
||||||
|
|
||||||
//- functiondeclaration
|
//- functiondeclaration
|
||||||
async *#m() {}
|
async *#m() {}
|
@ -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: Syntax error if you call delete on member expressions . private async method
|
desc: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
||||||
template: delete-error
|
template: delete-error
|
||||||
features: [class-methods-private]
|
features: [class-methods-private]
|
||||||
---*/
|
---*/
|
||||||
@ -11,4 +11,4 @@ features: [class-methods-private]
|
|||||||
this.#m
|
this.#m
|
||||||
|
|
||||||
//- functiondeclaration
|
//- functiondeclaration
|
||||||
async #m() {}
|
async #m() {}
|
@ -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: Syntax error if you call delete on member expressions . private generator method
|
desc: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
||||||
template: delete-error
|
template: delete-error
|
||||||
features: [class-methods-private]
|
features: [class-methods-private]
|
||||||
---*/
|
---*/
|
||||||
@ -11,4 +11,4 @@ features: [class-methods-private]
|
|||||||
this.#m
|
this.#m
|
||||||
|
|
||||||
//- functiondeclaration
|
//- functiondeclaration
|
||||||
*#m() {}
|
*#m() {}
|
@ -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: Syntax error if you call delete on member expressions . private method
|
desc: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
||||||
template: delete-error
|
template: delete-error
|
||||||
features: [class-methods-private]
|
features: [class-methods-private]
|
||||||
---*/
|
---*/
|
||||||
@ -11,4 +11,4 @@ features: [class-methods-private]
|
|||||||
this.#m
|
this.#m
|
||||||
|
|
||||||
//- functiondeclaration
|
//- functiondeclaration
|
||||||
#m() {}
|
#m() {}
|
@ -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: Syntax error if you call delete on member expressions . privatename
|
desc: It's a SyntaxError if delete operator is applied to MemberExpression.PrivateName
|
||||||
template: delete-error
|
template: delete-error
|
||||||
features: [class-fields-private]
|
features: [class-fields-private]
|
||||||
---*/
|
---*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user