projects
/
platform
/
upstream
/
js.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Imported Upstream version 1.0.0
[platform/upstream/js.git]
/
js
/
src
/
jit-test
/
tests
/
closures
/
bug540242.js
1
for (j = 0; j < 1; j++) {
2
var f = eval("\
3
(function() {\
4
for (var a = 0; a < 8; ++a) {\
5
if (a % 3 == 2) {\
6
eval(\"\
7
for(b in[0,0,0,0]) {\
8
print()\
9
}\
10
\")\
11
}\
12
gc()\
13
}\
14
})\
15
");
16
f()
17
}