f724ae98a1c0859885083448e2cbc3f3d4c31cf1 changed the build script to use Babel, so this commit updates the file names accordingly
27 lines
266 B
JavaScript
27 lines
266 B
JavaScript
/* globals f0 */
|
|
function f1() {
|
|
/* head */
|
|
"1";
|
|
/* mid */
|
|
"2";
|
|
/* tail */
|
|
}
|
|
|
|
function f2() {
|
|
// head
|
|
"1";
|
|
// mid
|
|
"2";
|
|
// tail
|
|
}
|
|
|
|
function f3() {
|
|
if ("1") { // begin block
|
|
"1";
|
|
}
|
|
"2"; // trailing
|
|
if (/* s */"3"/*e*/) {
|
|
"4";
|
|
}
|
|
}
|