зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1814899: Add testcase r=jandem
Depends on D169274 Differential Revision: https://phabricator.services.mozilla.com/D169275
This commit is contained in:
Родитель
e0030408ac
Коммит
5ba1f3caa6
|
@ -0,0 +1,22 @@
|
|||
function bar(x) {
|
||||
with ({}) {}
|
||||
switch (x) {
|
||||
case 1:
|
||||
foo(2);
|
||||
break;
|
||||
case 2:
|
||||
gczeal(14, 1);
|
||||
break;
|
||||
}
|
||||
return "a sufficiently long string";
|
||||
}
|
||||
|
||||
function foo(x) {
|
||||
for (var s in bar(x)) { gczeal(0); }
|
||||
}
|
||||
|
||||
with ({}) {}
|
||||
for (var i = 0; i < 100; i++) {
|
||||
foo(0);
|
||||
}
|
||||
foo(1);
|
Загрузка…
Ссылка в новой задаче