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

View File

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

View File

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

View File

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

View File

@ -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 }*/

View File

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

View File

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