f724ae98a1c0859885083448e2cbc3f3d4c31cf1 changed the build script to use Babel, so this commit updates the file names accordingly
35 lines
282 B
JavaScript
35 lines
282 B
JavaScript
if ('test') {
|
|
"1";
|
|
}
|
|
if (true) {
|
|
"1";
|
|
}
|
|
if (true) {
|
|
"1";
|
|
} else {
|
|
"2";
|
|
}
|
|
if (false) {
|
|
"1";
|
|
}
|
|
if (false) {
|
|
"1";
|
|
} else {
|
|
"2";
|
|
}
|
|
if (true && false) {
|
|
"1";
|
|
}
|
|
if (true && false || '1') {
|
|
"1";
|
|
}
|
|
|
|
function f1() {
|
|
if (true) {
|
|
"1";
|
|
}
|
|
if (false) {
|
|
"2";
|
|
}
|
|
}
|