diff options
author | Leo Balter <leonardo.balter@gmail.com> | 2017-04-20 15:07:56 -0400 |
---|---|---|
committer | Leo Balter <leonardo.balter@gmail.com> | 2017-04-21 15:23:59 -0400 |
commit | 234962036a465cfd9922447bb9e3d3478be8a9b8 (patch) | |
tree | db1e3d7b6909450725ff37c6bf1944ab4e9c2b30 /src | |
parent | 8d55711b1976a88381f22091ea7341d22bfdfe95 (diff) | |
download | qtdeclarative-testsuites-234962036a465cfd9922447bb9e3d3478be8a9b8.tar.gz |
remove unused template item for arguments
Diffstat (limited to 'src')
22 files changed, 23 insertions, 23 deletions
diff --git a/src/arguments/default/async-gen-func-decl.template b/src/arguments/default/async-gen-func-decl.template index 9fa27aecd..246b59921 100644 --- a/src/arguments/default/async-gen-func-decl.template +++ b/src/arguments/default/async-gen-func-decl.template @@ -19,7 +19,7 @@ features: [async-iteration] var callCount = 0; // Stores a reference `ref` for case evaluation -async function* ref(/*{ params }*/) { +async function* ref() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/async-gen-func-expr.template b/src/arguments/default/async-gen-func-expr.template index e42fe98fc..0647ade7f 100644 --- a/src/arguments/default/async-gen-func-expr.template +++ b/src/arguments/default/async-gen-func-expr.template @@ -20,7 +20,7 @@ features: [async-iteration] var callCount = 0; // Stores a reference `ref` for case evaluation var ref; -ref = async function*(/*{ params }*/) { +ref = async function*() { /*{ body }*/ callCount = callCount + 1; }; diff --git a/src/arguments/default/async-gen-meth.template b/src/arguments/default/async-gen-meth.template index 69678ea9e..bc726b345 100644 --- a/src/arguments/default/async-gen-meth.template +++ b/src/arguments/default/async-gen-meth.template @@ -23,7 +23,7 @@ features: [async-iteration] var callCount = 0; var obj = { - async *method(/*{ params }*/) { + async *method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/async-gen-named-func-expr.template b/src/arguments/default/async-gen-named-func-expr.template index acb8edb4f..a196a6dc9 100644 --- a/src/arguments/default/async-gen-named-func-expr.template +++ b/src/arguments/default/async-gen-named-func-expr.template @@ -8,7 +8,7 @@ esid: sec-asyncgenerator-definitions-evaluation info: | AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier ( FormalParameters ) { AsyncGeneratorBody } - + [...] 7. Let closure be ! AsyncGeneratorFunctionCreate(Normal, FormalParameters, AsyncGeneratorBody, funcEnv, strict). @@ -20,7 +20,7 @@ features: [async-iteration] var callCount = 0; // Stores a reference `ref` for case evaluation var ref; -ref = async function* g(/*{ params }*/) { +ref = async function* g() { /*{ body }*/ callCount = callCount + 1; }; diff --git a/src/arguments/default/cls-decl-async-gen-meth-static.template b/src/arguments/default/cls-decl-async-gen-meth-static.template index 32fa9073a..75d27616b 100644 --- a/src/arguments/default/cls-decl-async-gen-meth-static.template +++ b/src/arguments/default/cls-decl-async-gen-meth-static.template @@ -42,7 +42,7 @@ features: [async-iteration] var callCount = 0; class C { - static async *method(/*{ params }*/) { + static async *method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-decl-async-gen-meth.template b/src/arguments/default/cls-decl-async-gen-meth.template index d0ef01303..f0eac2cff 100644 --- a/src/arguments/default/cls-decl-async-gen-meth.template +++ b/src/arguments/default/cls-decl-async-gen-meth.template @@ -41,7 +41,7 @@ features: [async-iteration] var callCount = 0; class C { - async *method(/*{ params }*/) { + async *method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-decl-gen-meth-static.template b/src/arguments/default/cls-decl-gen-meth-static.template index e57381376..29a505cd9 100644 --- a/src/arguments/default/cls-decl-gen-meth-static.template +++ b/src/arguments/default/cls-decl-gen-meth-static.template @@ -15,7 +15,7 @@ info: | var callCount = 0; class C { - static *method(/*{ params }*/) { + static *method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-decl-gen-meth.template b/src/arguments/default/cls-decl-gen-meth.template index d24c31401..3e7033e0b 100644 --- a/src/arguments/default/cls-decl-gen-meth.template +++ b/src/arguments/default/cls-decl-gen-meth.template @@ -15,7 +15,7 @@ info: | var callCount = 0; class C { - *method(/*{ params }*/) { + *method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-decl-meth-static.template b/src/arguments/default/cls-decl-meth-static.template index ea045e283..ddd3875d9 100644 --- a/src/arguments/default/cls-decl-meth-static.template +++ b/src/arguments/default/cls-decl-meth-static.template @@ -15,7 +15,7 @@ info: | var callCount = 0; class C { - static method(/*{ params }*/) { + static method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-decl-meth.template b/src/arguments/default/cls-decl-meth.template index b7f09f8dd..ed91693c1 100644 --- a/src/arguments/default/cls-decl-meth.template +++ b/src/arguments/default/cls-decl-meth.template @@ -15,7 +15,7 @@ info: | var callCount = 0; class C { - method(/*{ params }*/) { + method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-expr-async-gen-meth-static.template b/src/arguments/default/cls-expr-async-gen-meth-static.template index 9dc410ad5..9f0b4bddf 100644 --- a/src/arguments/default/cls-expr-async-gen-meth-static.template +++ b/src/arguments/default/cls-expr-async-gen-meth-static.template @@ -43,7 +43,7 @@ features: [async-iteration] var callCount = 0; var C = class { - static async *method(/*{ params }*/) { + static async *method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-expr-async-gen-meth.template b/src/arguments/default/cls-expr-async-gen-meth.template index 853cf2634..4bcf442bb 100644 --- a/src/arguments/default/cls-expr-async-gen-meth.template +++ b/src/arguments/default/cls-expr-async-gen-meth.template @@ -43,7 +43,7 @@ features: [async-iteration] var callCount = 0; var C = class { - async *method(/*{ params }*/) { + async *method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-expr-gen-meth-static.template b/src/arguments/default/cls-expr-gen-meth-static.template index 1fefb34ee..bf800123e 100644 --- a/src/arguments/default/cls-expr-gen-meth-static.template +++ b/src/arguments/default/cls-expr-gen-meth-static.template @@ -15,7 +15,7 @@ info: | var callCount = 0; var C = class { - static *method(/*{ params }*/) { + static *method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-expr-gen-meth.template b/src/arguments/default/cls-expr-gen-meth.template index 0781417d6..3f6cbe6ce 100644 --- a/src/arguments/default/cls-expr-gen-meth.template +++ b/src/arguments/default/cls-expr-gen-meth.template @@ -15,7 +15,7 @@ info: | var callCount = 0; var C = class { - *method(/*{ params }*/) { + *method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-expr-meth-static.template b/src/arguments/default/cls-expr-meth-static.template index 57dfc2293..0bb00a0cb 100644 --- a/src/arguments/default/cls-expr-meth-static.template +++ b/src/arguments/default/cls-expr-meth-static.template @@ -15,7 +15,7 @@ info: | var callCount = 0; var C = class { - static method(/*{ params }*/) { + static method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/cls-expr-meth.template b/src/arguments/default/cls-expr-meth.template index 99d5c5687..3e1c62221 100644 --- a/src/arguments/default/cls-expr-meth.template +++ b/src/arguments/default/cls-expr-meth.template @@ -15,7 +15,7 @@ info: | var callCount = 0; var C = class { - method(/*{ params }*/) { + method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/func-decl.template b/src/arguments/default/func-decl.template index 271dac007..6b37285f6 100644 --- a/src/arguments/default/func-decl.template +++ b/src/arguments/default/func-decl.template @@ -15,7 +15,7 @@ info: | var callCount = 0; // Stores a reference `ref` for case evaluation -function ref(/*{ params }*/) { +function ref() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/func-expr.template b/src/arguments/default/func-expr.template index 58fc72285..32d710893 100644 --- a/src/arguments/default/func-expr.template +++ b/src/arguments/default/func-expr.template @@ -16,7 +16,7 @@ info: | var callCount = 0; // Stores a reference `ref` for case evaluation var ref; -ref = function(/*{ params }*/) { +ref = function() { /*{ body }*/ callCount = callCount + 1; }; diff --git a/src/arguments/default/gen-func-decl.template b/src/arguments/default/gen-func-decl.template index b9e7fdcc9..36bd0e796 100644 --- a/src/arguments/default/gen-func-decl.template +++ b/src/arguments/default/gen-func-decl.template @@ -15,7 +15,7 @@ info: | var callCount = 0; // Stores a reference `ref` for case evaluation -function* ref(/*{ params }*/) { +function* ref() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/gen-func-expr.template b/src/arguments/default/gen-func-expr.template index 70baf6f7a..6d3392264 100644 --- a/src/arguments/default/gen-func-expr.template +++ b/src/arguments/default/gen-func-expr.template @@ -16,7 +16,7 @@ info: | var callCount = 0; // Stores a reference `ref` for case evaluation var ref; -ref = function*(/*{ params }*/) { +ref = function*() { /*{ body }*/ callCount = callCount + 1; }; diff --git a/src/arguments/default/gen-meth.template b/src/arguments/default/gen-meth.template index a459aecf6..2919dae1e 100644 --- a/src/arguments/default/gen-meth.template +++ b/src/arguments/default/gen-meth.template @@ -15,7 +15,7 @@ info: | var callCount = 0; var obj = { - *method(/*{ params }*/) { + *method() { /*{ body }*/ callCount = callCount + 1; } diff --git a/src/arguments/default/meth.template b/src/arguments/default/meth.template index 5cbe57184..ef2a2dda2 100644 --- a/src/arguments/default/meth.template +++ b/src/arguments/default/meth.template @@ -15,7 +15,7 @@ info: | var callCount = 0; var obj = { - method(/*{ params }*/) { + method() { /*{ body }*/ callCount = callCount + 1; } |