blob: 0869b90a6ae7d7606d88ae7aa461e87b2e2fabd5 (
plain)
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
50
51
52
53
54
55
56
57
58
59
60
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
* Contributor:
* Christian Holler <decoder@own-hero.net>
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 622167;
var summary = 'Handle infinite recursion';
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
function eval() { eval(); }
function DoWhile_3()
{
eval();
}
try
{
DoWhile_3();
}
catch(e) { }
var r;
function* f()
{
r = arguments;
test();
yield 170;
}
function test()
{
function foopy()
{
try
{
for (var i of f());
}
catch (e)
{
gc();
}
}
foopy();
}
test();
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("All tests passed!");
|