Files
jerryscript/tests/jerry-tests/functions-only.exp
T
2014-07-01 17:09:17 +04:00

13 lines
158 B
Plaintext

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