mirror of
https://github.com/tc39/test262.git
synced 2025-07-29 17:04:31 +02:00
Make all harness/* file names consistent; update occurrences in test
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
This commit is contained in:
parent
53842533b7
commit
86209d8fd9
@ -1,5 +1,4 @@
|
|||||||
//Date_constants.js
|
// Copyright (C) 2009 the Sputnik authors. All rights reserved.
|
||||||
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
||||||
// This code is governed by the BSD license found in the LICENSE file.
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
var date_1899_end = -2208988800001;
|
var date_1899_end = -2208988800001;
|
@ -7,8 +7,7 @@ info: >
|
|||||||
a constructor: it initialises the newly created object
|
a constructor: it initialises the newly created object
|
||||||
es5id: 15.9.3.2_A1_T1
|
es5id: 15.9.3.2_A1_T1
|
||||||
description: Checking types of newly created objects and it values
|
description: Checking types of newly created objects and it values
|
||||||
includes:
|
includes: [dateConstants.js]
|
||||||
- Date_constants.js
|
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
if (typeof new Date(date_1899_end) !== "object") {
|
if (typeof new Date(date_1899_end) !== "object") {
|
||||||
|
@ -8,8 +8,7 @@ info: >
|
|||||||
initial value of Date.prototype
|
initial value of Date.prototype
|
||||||
es5id: 15.9.3.2_A2_T1
|
es5id: 15.9.3.2_A2_T1
|
||||||
description: Checking Date.prototype property of newly constructed objects
|
description: Checking Date.prototype property of newly constructed objects
|
||||||
includes:
|
includes: [dateConstants.js]
|
||||||
- Date_constants.js
|
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var x11 = new Date(date_1899_end);
|
var x11 = new Date(date_1899_end);
|
||||||
|
@ -7,8 +7,7 @@ info: >
|
|||||||
is set to "Date"
|
is set to "Date"
|
||||||
es5id: 15.9.3.2_A3_T1.1
|
es5id: 15.9.3.2_A3_T1.1
|
||||||
description: Test based on delete prototype.toString
|
description: Test based on delete prototype.toString
|
||||||
includes:
|
includes: [dateConstants.js]
|
||||||
- Date_constants.js
|
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var x1 = new Date(date_1899_end);
|
var x1 = new Date(date_1899_end);
|
||||||
|
@ -7,8 +7,7 @@ info: >
|
|||||||
is set to "Date"
|
is set to "Date"
|
||||||
es5id: 15.9.3.2_A3_T1.2
|
es5id: 15.9.3.2_A3_T1.2
|
||||||
description: Test based on overwriting prototype.toString
|
description: Test based on overwriting prototype.toString
|
||||||
includes:
|
includes: [dateConstants.js]
|
||||||
- Date_constants.js
|
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
Date.prototype.toString = Object.prototype.toString;
|
Date.prototype.toString = Object.prototype.toString;
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
info: Promise.all([]) is resolved immediately
|
info: Promise.all([]) is resolved immediately
|
||||||
es6id: 25.4.4.1_A2.2_T1
|
es6id: 25.4.4.1_A2.2_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
description: Promise.all([]) returns immediately
|
description: Promise.all([]) returns immediately
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
@ -8,7 +8,7 @@ info: >
|
|||||||
es6id: S25.4.4.1_A7.2_T1
|
es6id: S25.4.4.1_A7.2_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.all() accepts a one-element array
|
description: Promise.all() accepts a one-element array
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
es6id: S25.4.4.1_A8.1_T1
|
es6id: S25.4.4.1_A8.1_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.all([p1, p2]) resolution functions are called in predictable sequence
|
description: Promise.all([p1, p2]) resolution functions are called in predictable sequence
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ info: >
|
|||||||
es6id: S25.4.4.1_A8.1_T1
|
es6id: S25.4.4.1_A8.1_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.all() rejects when a promise in its array rejects
|
description: Promise.all() rejects when a promise in its array rejects
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ info: >
|
|||||||
es6id: S25.4.4.1_A8.2_T2
|
es6id: S25.4.4.1_A8.2_T2
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.all() rejects when second promise in array rejects
|
description: Promise.all() rejects when second promise in array rejects
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ info: >
|
|||||||
es6id: S25.4.2.1_A3.2_T2
|
es6id: S25.4.2.1_A3.2_T2
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise onResolved functions are called in predictable sequence
|
description: Promise onResolved functions are called in predictable sequence
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ info: >
|
|||||||
es6id: S25.4.4_A2.1_T1
|
es6id: S25.4.4_A2.1_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise onResolved functions are called in predictable sequence
|
description: Promise onResolved functions are called in predictable sequence
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ info: >
|
|||||||
es6id: S25.4.4_A2.1_T2
|
es6id: S25.4.4_A2.1_T2
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise onResolved functions are called in predictable sequence
|
description: Promise onResolved functions are called in predictable sequence
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ info: >
|
|||||||
es6id: S25.4.4_A2.1_T3
|
es6id: S25.4.4_A2.1_T3
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise onResolved functions are called in predictable sequence
|
description: Promise onResolved functions are called in predictable sequence
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ info: >
|
|||||||
es6id: S25.4.5.3_A5.1_T1
|
es6id: S25.4.5.3_A5.1_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.prototype.then enqueues handler if pending
|
description: Promise.prototype.then enqueues handler if pending
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ info: >
|
|||||||
es6id: S25.4.5.3_A5.2_T1
|
es6id: S25.4.5.3_A5.2_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.prototype.then immediately queues handler if fulfilled
|
description: Promise.prototype.then immediately queues handler if fulfilled
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ info: >
|
|||||||
es6id: S25.4.5.3_A5.3_T1
|
es6id: S25.4.5.3_A5.3_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.prototype.then immediately queues handler if rejected
|
description: Promise.prototype.then immediately queues handler if rejected
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
es6id: S25.4.4.3_A6.1_T1
|
es6id: S25.4.4.3_A6.1_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.race([1]) settles immediately
|
description: Promise.race([1]) settles immediately
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
es6id: S25.4.4.3_A6.2_T1
|
es6id: S25.4.4.3_A6.2_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.race([p1]) settles immediately
|
description: Promise.race([p1]) settles immediately
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
es6id: S25.4.4.3_A7.1_T1
|
es6id: S25.4.4.3_A7.1_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.race([p1, p2]) settles when first settles
|
description: Promise.race([p1, p2]) settles when first settles
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
es6id: S25.4.4.3_A7.1_T2
|
es6id: S25.4.4.3_A7.1_T2
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.race([p1, p2]) settles when first settles
|
description: Promise.race([p1, p2]) settles when first settles
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
es6id: S25.4.4.3_A7.1_T3
|
es6id: S25.4.4.3_A7.1_T3
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.race([p1, p2]) settles when first settles
|
description: Promise.race([p1, p2]) settles when first settles
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
es6id: S25.4.4.3_A7.2_T1
|
es6id: S25.4.4.3_A7.2_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.race([p1, p2]) settles when first settles
|
description: Promise.race([p1, p2]) settles when first settles
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ info: >
|
|||||||
es6id: S25.4.4.5_A3.1_T1
|
es6id: S25.4.4.5_A3.1_T1
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.resolve delegates to foreign thenable
|
description: Promise.resolve delegates to foreign thenable
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ info: >
|
|||||||
es6id: S25.4.4.5
|
es6id: S25.4.4.5
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.resolve delegates to foreign thenable
|
description: Promise.resolve delegates to foreign thenable
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ info: >
|
|||||||
es6id: S25.4.4.5
|
es6id: S25.4.4.5
|
||||||
author: Sam Mikes
|
author: Sam Mikes
|
||||||
description: Promise.resolve delegates to foreign thenable
|
description: Promise.resolve delegates to foreign thenable
|
||||||
includes: [PromiseHelper.js]
|
includes: [promiseHelper.js]
|
||||||
flags: [async]
|
flags: [async]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization.
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization.
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization.
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization.
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization.
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization.
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization.
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization.
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
|
@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization.
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
|
@ -5,7 +5,7 @@ description: Expression is a candidate for tail-call optimization.
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Expression within statement is a candidate for tail-call optimizati
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
@ -5,7 +5,7 @@ description: Statement within statement is a candidate for tail-call optimizatio
|
|||||||
esid: static-semantics-hasproductionintailposition
|
esid: static-semantics-hasproductionintailposition
|
||||||
flags: [onlyStrict]
|
flags: [onlyStrict]
|
||||||
features: [tail-call-optimization]
|
features: [tail-call-optimization]
|
||||||
includes: [tco-helper.js]
|
includes: [tcoHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
||||||
var callCount = 0;
|
var callCount = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user