mirror of https://github.com/tc39/test262.git
small fixes for feature tags and trailing space
This commit is contained in:
parent
30c2355329
commit
0958bbbede
|
@ -16,7 +16,7 @@ info: |
|
|||
|
||||
AsyncMethod :
|
||||
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() {
|
||||
|
|
|
@ -16,7 +16,7 @@ info: |
|
|||
|
||||
AsyncMethod :
|
||||
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() {
|
||||
|
|
|
@ -16,7 +16,7 @@ info: |
|
|||
|
||||
AsyncGeneratorMethod :
|
||||
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() {
|
||||
|
|
|
@ -16,7 +16,7 @@ info: |
|
|||
|
||||
AsyncGeneratorMethod :
|
||||
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() {
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
GeneratorMethod :
|
||||
* # PropertyName ( UniqueFormalParameters ) { GeneratorBody }
|
||||
features: [generators, class-methods-private]
|
||||
features: [generators, class-static-methods-private]
|
||||
---*/
|
||||
|
||||
class C {static *#gen() {
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
GeneratorMethod :
|
||||
* # PropertyName ( UniqueFormalParameters ) { GeneratorBody }
|
||||
features: [generators, class-methods-private]
|
||||
features: [generators, class-static-methods-private]
|
||||
---*/
|
||||
|
||||
var C = class { static *#gen() {
|
||||
|
|
Loading…
Reference in New Issue