remove unused template item for arguments

This commit is contained in:
Leo Balter 2017-04-20 15:07:56 -04:00
parent 8d55711b19
commit 234962036a
No known key found for this signature in database
GPG Key ID: 2C75F319D398E36B
22 changed files with 23 additions and 23 deletions

View File

@ -19,7 +19,7 @@ features: [async-iteration]
var callCount = 0; var callCount = 0;
// Stores a reference `ref` for case evaluation // Stores a reference `ref` for case evaluation
async function* ref(/*{ params }*/) { async function* ref() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -20,7 +20,7 @@ features: [async-iteration]
var callCount = 0; var callCount = 0;
// Stores a reference `ref` for case evaluation // Stores a reference `ref` for case evaluation
var ref; var ref;
ref = async function*(/*{ params }*/) { ref = async function*() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
}; };

View File

@ -23,7 +23,7 @@ features: [async-iteration]
var callCount = 0; var callCount = 0;
var obj = { var obj = {
async *method(/*{ params }*/) { async *method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -8,7 +8,7 @@ esid: sec-asyncgenerator-definitions-evaluation
info: | info: |
AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier AsyncGeneratorExpression : async [no LineTerminator here] function * BindingIdentifier
( FormalParameters ) { AsyncGeneratorBody } ( FormalParameters ) { AsyncGeneratorBody }
[...] [...]
7. Let closure be ! AsyncGeneratorFunctionCreate(Normal, FormalParameters, 7. Let closure be ! AsyncGeneratorFunctionCreate(Normal, FormalParameters,
AsyncGeneratorBody, funcEnv, strict). AsyncGeneratorBody, funcEnv, strict).
@ -20,7 +20,7 @@ features: [async-iteration]
var callCount = 0; var callCount = 0;
// Stores a reference `ref` for case evaluation // Stores a reference `ref` for case evaluation
var ref; var ref;
ref = async function* g(/*{ params }*/) { ref = async function* g() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
}; };

View File

@ -42,7 +42,7 @@ features: [async-iteration]
var callCount = 0; var callCount = 0;
class C { class C {
static async *method(/*{ params }*/) { static async *method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -41,7 +41,7 @@ features: [async-iteration]
var callCount = 0; var callCount = 0;
class C { class C {
async *method(/*{ params }*/) { async *method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
class C { class C {
static *method(/*{ params }*/) { static *method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
class C { class C {
*method(/*{ params }*/) { *method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
class C { class C {
static method(/*{ params }*/) { static method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
class C { class C {
method(/*{ params }*/) { method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -43,7 +43,7 @@ features: [async-iteration]
var callCount = 0; var callCount = 0;
var C = class { var C = class {
static async *method(/*{ params }*/) { static async *method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -43,7 +43,7 @@ features: [async-iteration]
var callCount = 0; var callCount = 0;
var C = class { var C = class {
async *method(/*{ params }*/) { async *method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
var C = class { var C = class {
static *method(/*{ params }*/) { static *method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
var C = class { var C = class {
*method(/*{ params }*/) { *method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
var C = class { var C = class {
static method(/*{ params }*/) { static method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
var C = class { var C = class {
method(/*{ params }*/) { method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
// Stores a reference `ref` for case evaluation // Stores a reference `ref` for case evaluation
function ref(/*{ params }*/) { function ref() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -16,7 +16,7 @@ info: |
var callCount = 0; var callCount = 0;
// Stores a reference `ref` for case evaluation // Stores a reference `ref` for case evaluation
var ref; var ref;
ref = function(/*{ params }*/) { ref = function() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
}; };

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
// Stores a reference `ref` for case evaluation // Stores a reference `ref` for case evaluation
function* ref(/*{ params }*/) { function* ref() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -16,7 +16,7 @@ info: |
var callCount = 0; var callCount = 0;
// Stores a reference `ref` for case evaluation // Stores a reference `ref` for case evaluation
var ref; var ref;
ref = function*(/*{ params }*/) { ref = function*() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
}; };

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
var obj = { var obj = {
*method(/*{ params }*/) { *method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }

View File

@ -15,7 +15,7 @@ info: |
var callCount = 0; var callCount = 0;
var obj = { var obj = {
method(/*{ params }*/) { method() {
/*{ body }*/ /*{ body }*/
callCount = callCount + 1; callCount = callCount + 1;
} }