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;
|
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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue