diff options
Diffstat (limited to 'src')
10 files changed, 10 insertions, 4 deletions
diff --git a/src/arguments/default/cls-decl-gen-meth-static.template b/src/arguments/default/cls-decl-gen-meth-static.template index 29a505cd9..52a268b28 100644 --- a/src/arguments/default/cls-decl-gen-meth-static.template +++ b/src/arguments/default/cls-decl-gen-meth-static.template @@ -11,6 +11,7 @@ info: | Most ECMAScript functions make an arguments object available to their code. Depending upon the characteristics of the function definition, its arguments object is either an ordinary object or an arguments exotic object. +features: [generators] ---*/ var callCount = 0; diff --git a/src/arguments/default/cls-decl-gen-meth.template b/src/arguments/default/cls-decl-gen-meth.template index 3e7033e0b..0406c21d8 100644 --- a/src/arguments/default/cls-decl-gen-meth.template +++ b/src/arguments/default/cls-decl-gen-meth.template @@ -11,6 +11,7 @@ info: | Most ECMAScript functions make an arguments object available to their code. Depending upon the characteristics of the function definition, its arguments object is either an ordinary object or an arguments exotic object. +features: [generators] ---*/ var callCount = 0; diff --git a/src/arguments/default/cls-expr-gen-meth-static.template b/src/arguments/default/cls-expr-gen-meth-static.template index bf800123e..3649a0081 100644 --- a/src/arguments/default/cls-expr-gen-meth-static.template +++ b/src/arguments/default/cls-expr-gen-meth-static.template @@ -11,6 +11,7 @@ info: | Most ECMAScript functions make an arguments object available to their code. Depending upon the characteristics of the function definition, its arguments object is either an ordinary object or an arguments exotic object. +features: [generators] ---*/ var callCount = 0; diff --git a/src/arguments/default/cls-expr-gen-meth.template b/src/arguments/default/cls-expr-gen-meth.template index 3f6cbe6ce..28073d5a1 100644 --- a/src/arguments/default/cls-expr-gen-meth.template +++ b/src/arguments/default/cls-expr-gen-meth.template @@ -11,6 +11,7 @@ info: | Most ECMAScript functions make an arguments object available to their code. Depending upon the characteristics of the function definition, its arguments object is either an ordinary object or an arguments exotic object. +features: [generators] ---*/ var callCount = 0; diff --git a/src/arguments/default/gen-meth.template b/src/arguments/default/gen-meth.template index 2919dae1e..ecccfb117 100644 --- a/src/arguments/default/gen-meth.template +++ b/src/arguments/default/gen-meth.template @@ -11,6 +11,7 @@ info: | Most ECMAScript functions make an arguments object available to their code. Depending upon the characteristics of the function definition, its arguments object is either an ordinary object or an arguments exotic object. +features: [generators] ---*/ var callCount = 0; diff --git a/src/class-fields/default/cls-decl-after-same-line-gen.template b/src/class-fields/default/cls-decl-after-same-line-gen.template index 78e8d4b48..876e0d8c5 100644 --- a/src/class-fields/default/cls-decl-after-same-line-gen.template +++ b/src/class-fields/default/cls-decl-after-same-line-gen.template @@ -4,7 +4,7 @@ /*--- path: language/statements/class/fields-after-same-line-gen- name: field definitions after a generator in the same line -features: [class-fields] +features: [generators, class-fields] esid: prod-FieldDefinition ---*/ diff --git a/src/class-fields/default/cls-decl-after-same-line-static-gen.template b/src/class-fields/default/cls-decl-after-same-line-static-gen.template index af4c1db02..d89d9975a 100644 --- a/src/class-fields/default/cls-decl-after-same-line-static-gen.template +++ b/src/class-fields/default/cls-decl-after-same-line-static-gen.template @@ -4,7 +4,7 @@ /*--- path: language/statements/class/fields-after-same-line-static-gen- name: field definitions after a static generator in the same line -features: [class-fields] +features: [generators, class-fields] esid: prod-FieldDefinition ---*/ diff --git a/src/class-fields/default/cls-expr-after-same-line-gen.template b/src/class-fields/default/cls-expr-after-same-line-gen.template index 9057ad6c1..07e7a485d 100644 --- a/src/class-fields/default/cls-expr-after-same-line-gen.template +++ b/src/class-fields/default/cls-expr-after-same-line-gen.template @@ -4,7 +4,7 @@ /*--- path: language/expressions/class/fields-after-same-line-gen- name: field definitions after a generator in the same line -features: [class-fields] +features: [generators, class-fields] esid: prod-FieldDefinition ---*/ diff --git a/src/class-fields/default/cls-expr-after-same-line-static-gen.template b/src/class-fields/default/cls-expr-after-same-line-static-gen.template index a13b8ef50..c64467527 100644 --- a/src/class-fields/default/cls-expr-after-same-line-static-gen.template +++ b/src/class-fields/default/cls-expr-after-same-line-static-gen.template @@ -4,7 +4,7 @@ /*--- path: language/expressions/class/fields-after-same-line-static-gen- name: field definitions after a static generator in the same line -features: [class-fields] +features: [generators, class-fields] esid: prod-FieldDefinition ---*/ diff --git a/src/function-forms/syntax/async-meth.template b/src/function-forms/syntax/async-meth.template index 7200251a5..bec86025b 100644 --- a/src/function-forms/syntax/async-meth.template +++ b/src/function-forms/syntax/async-meth.template @@ -10,6 +10,7 @@ info: | AsyncMethod : async PropertyName ( UniqueFormalParameters ) { AsyncFunctionBody } +features: [async-iteration] ---*/ ({ |