1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// |reftest| skip -- tail-call-optimization is not supported
// Copyright (C) 2017 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-function-calls-runtime-semantics-evaluation
description: >
Tail-call with identifier named "eval" in object environment.
info: |
12.3.4.1 Runtime Semantics: Evaluation
...
6. If Type(ref) is Reference and IsPropertyReference(ref) is false and
GetReferencedName(ref) is "eval", then
a. If SameValue(func, %eval%) is true, then
...
...
9. Return ? EvaluateCall(func, ref, arguments, tailCall).
12.3.4.2 Runtime Semantics: EvaluateCall( func, ref, arguments, tailPosition )
...
7. If tailPosition is true, perform PrepareForTailCall().
8. Let result be Call(func, thisValue, argList).
...
flags: [noStrict]
features: [tail-call-optimization]
includes: [tcoHelper.js]
---*/
var callCount = 0;
var f, scope = {};
with (scope) {
f = function (n) {
"use strict";
if (n === 0) {
callCount += 1
return;
}
return eval(n - 1);
}
}
scope.eval = f;
f($MAX_ITERATIONS);
assert.sameValue(callCount, 1);
reportCompare(0, 0);
|