mirror of
https://github.com/tc39/test262.git
synced 2025-07-23 22:15:24 +02:00
small fixes for feature tags and trailing space
This commit is contained in:
parent
30c2355329
commit
0958bbbede
@ -16,7 +16,7 @@ info: |
|
|||||||
|
|
||||||
AsyncMethod :
|
AsyncMethod :
|
||||||
async [no LineTerminator here] # PropertyName ( UniqueFormalParameters ) { AsyncFunctionBody }
|
async [no LineTerminator here] # PropertyName ( UniqueFormalParameters ) { AsyncFunctionBody }
|
||||||
features: [async-functions, class-methods-private]
|
features: [async-functions, class-static-methods-private]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C { static async #method() {
|
class C { static async #method() {
|
||||||
|
@ -16,7 +16,7 @@ info: |
|
|||||||
|
|
||||||
AsyncMethod :
|
AsyncMethod :
|
||||||
async [no LineTerminator here] # PropertyName ( UniqueFormalParameters ) { AsyncFunctionBody }
|
async [no LineTerminator here] # PropertyName ( UniqueFormalParameters ) { AsyncFunctionBody }
|
||||||
features: [async-functions, class-methods-private]
|
features: [async-functions, class-static-methods-private]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class { static async #method() {
|
var C = class { static async #method() {
|
||||||
|
@ -16,7 +16,7 @@ info: |
|
|||||||
|
|
||||||
AsyncGeneratorMethod :
|
AsyncGeneratorMethod :
|
||||||
async [no LineTerminator here] * # PropertyName ( UniqueFormalParameters ) { AsyncGeneratorBody }
|
async [no LineTerminator here] * # PropertyName ( UniqueFormalParameters ) { AsyncGeneratorBody }
|
||||||
features: [async-iteration, class-methods-private]
|
features: [async-iteration, class-static-methods-private]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C { static async *#gen() {
|
class C { static async *#gen() {
|
||||||
|
@ -16,7 +16,7 @@ info: |
|
|||||||
|
|
||||||
AsyncGeneratorMethod :
|
AsyncGeneratorMethod :
|
||||||
async [no LineTerminator here] * # PropertyName ( UniqueFormalParameters ) { AsyncGeneratorBody }
|
async [no LineTerminator here] * # PropertyName ( UniqueFormalParameters ) { AsyncGeneratorBody }
|
||||||
features: [async-iteration, class-methods-private]
|
features: [async-iteration, class-static-methods-private]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class { static async *#gen() {
|
var C = class { static async *#gen() {
|
||||||
|
@ -20,7 +20,7 @@ features: [generators, class-methods-private]
|
|||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
|
||||||
class C {
|
class C {
|
||||||
*#gen() {
|
*#gen() {
|
||||||
callCount += 1;
|
callCount += 1;
|
||||||
/*{ body }*/
|
/*{ body }*/
|
||||||
|
@ -15,7 +15,7 @@ info: |
|
|||||||
|
|
||||||
GeneratorMethod :
|
GeneratorMethod :
|
||||||
* # PropertyName ( UniqueFormalParameters ) { GeneratorBody }
|
* # PropertyName ( UniqueFormalParameters ) { GeneratorBody }
|
||||||
features: [generators, class-methods-private]
|
features: [generators, class-static-methods-private]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
class C {static *#gen() {
|
class C {static *#gen() {
|
||||||
|
@ -15,7 +15,7 @@ info: |
|
|||||||
|
|
||||||
GeneratorMethod :
|
GeneratorMethod :
|
||||||
* # PropertyName ( UniqueFormalParameters ) { GeneratorBody }
|
* # PropertyName ( UniqueFormalParameters ) { GeneratorBody }
|
||||||
features: [generators, class-methods-private]
|
features: [generators, class-static-methods-private]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var C = class { static *#gen() {
|
var C = class { static *#gen() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user