23 lines
377 B
JavaScript
Executable File
23 lines
377 B
JavaScript
Executable File
"use strict";
|
|
|
|
(function f(_x) {
|
|
var _left;
|
|
_function: while (true) {
|
|
var n = _x;
|
|
if (n <= 0) {
|
|
return "foo";
|
|
} else {
|
|
doSmth();
|
|
|
|
if (!(_left = getTrueValue())) {
|
|
return _left;
|
|
}
|
|
if (_left = getFalseValue()) {
|
|
return _left;
|
|
}
|
|
_x = n - 1;
|
|
continue _function;
|
|
}
|
|
}
|
|
})(1000000, true) === "foo";
|