Skip to content
Snippets Groups Projects
Commit 0958bbbe authored by Leo Balter's avatar Leo Balter
Browse files

small fixes for feature tags and trailing space

parent 30c23553
No related branches found
No related tags found
No related merge requests found
......@@ -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() {
......
......@@ -20,7 +20,7 @@ features: [generators, class-methods-private]
var callCount = 0;
class C {
class C {
*#gen() {
callCount += 1;
/*{ body }*/
......
......@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment