jerryscript/tests/jerry/functions-only.exp
2014-07-04 14:20:06 +04:00

13 lines
158 B
Plaintext

(function () {
if ((this != null)) {
return this;
}
while (true) {
if ([][2]) return false;
}
}
)({}, function () {
return [true];
}
);