small fixes for feature tags and trailing space

This commit is contained in:
Leo Balter 2018-09-04 12:35:55 -04:00
parent 30c2355329
commit 0958bbbede
7 changed files with 7 additions and 7 deletions

View File

@ -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() {

View File

@ -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() {

View File

@ -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() {

View File

@ -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() {

View File

@ -20,7 +20,7 @@ features: [generators, class-methods-private]
var callCount = 0;
class C {
class C {
*#gen() {
callCount += 1;
/*{ body }*/

View File

@ -15,7 +15,7 @@ info: |
GeneratorMethod :
* # PropertyName ( UniqueFormalParameters ) { GeneratorBody }
features: [generators, class-methods-private]
features: [generators, class-static-methods-private]
---*/
class C {static *#gen() {

View File

@ -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() {