mirror of https://github.com/tc39/test262.git
remove unused template item for arguments
This commit is contained in:
parent
8d55711b19
commit
234962036a
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -23,7 +23,7 @@ features: [async-iteration]
|
|||
|
||||
var callCount = 0;
|
||||
var obj = {
|
||||
async *method(/*{ params }*/) {
|
||||
async *method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -42,7 +42,7 @@ features: [async-iteration]
|
|||
|
||||
var callCount = 0;
|
||||
class C {
|
||||
static async *method(/*{ params }*/) {
|
||||
static async *method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ features: [async-iteration]
|
|||
|
||||
var callCount = 0;
|
||||
class C {
|
||||
async *method(/*{ params }*/) {
|
||||
async *method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
class C {
|
||||
static *method(/*{ params }*/) {
|
||||
static *method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
class C {
|
||||
*method(/*{ params }*/) {
|
||||
*method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
class C {
|
||||
static method(/*{ params }*/) {
|
||||
static method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
class C {
|
||||
method(/*{ params }*/) {
|
||||
method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -43,7 +43,7 @@ features: [async-iteration]
|
|||
|
||||
var callCount = 0;
|
||||
var C = class {
|
||||
static async *method(/*{ params }*/) {
|
||||
static async *method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -43,7 +43,7 @@ features: [async-iteration]
|
|||
|
||||
var callCount = 0;
|
||||
var C = class {
|
||||
async *method(/*{ params }*/) {
|
||||
async *method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
var C = class {
|
||||
static *method(/*{ params }*/) {
|
||||
static *method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
var C = class {
|
||||
*method(/*{ params }*/) {
|
||||
*method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
var C = class {
|
||||
static method(/*{ params }*/) {
|
||||
static method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
var C = class {
|
||||
method(/*{ params }*/) {
|
||||
method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
// Stores a reference `ref` for case evaluation
|
||||
function ref(/*{ params }*/) {
|
||||
function ref() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
// Stores a reference `ref` for case evaluation
|
||||
function* ref(/*{ params }*/) {
|
||||
function* ref() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
var obj = {
|
||||
*method(/*{ params }*/) {
|
||||
*method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ info: |
|
|||
|
||||
var callCount = 0;
|
||||
var obj = {
|
||||
method(/*{ params }*/) {
|
||||
method() {
|
||||
/*{ body }*/
|
||||
callCount = callCount + 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue