mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
This makes `gulp externaltest` work again. It looks like this wasn't validated before, but is now after recent package updates.
26 lines
266 B
JavaScript
26 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";
|
|
}
|
|
}
|