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;
// Stores a reference `ref` for case evaluation
async function* ref(/*{ params }*/) {
async function* ref() {
/*{ body }*/
callCount = callCount + 1;
}

View File

@ -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;
};

View File

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

View File

@ -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;
};

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -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;
};

View File

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

View File

@ -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;
};

View File

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

View File

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