pdf.js/external/builder/fixtures_esprima/comments-expected.js
Tim van der Meij c454868be1
Fix duplicated function name in the Esprima fixtures
This makes `gulp externaltest` work again. It looks like this wasn't
validated before, but is now after recent package updates.
2018-08-25 16:23:20 +02:00

18 lines
128 B
JavaScript

function f1() {
"1";
"2";
}
function f2() {
"1";
"2";
}
function f3() {
if ("1") {
"1";
}
"2";
if ("3") {
"4";
}
}