mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-28 23:28:16 +02:00
f724ae98a1
changed the build
script to use Babel, so this commit updates the file names accordingly
21 lines
259 B
JavaScript
21 lines
259 B
JavaScript
function f1() {}
|
|
function f2() {
|
|
return 1;
|
|
}
|
|
function f3() {
|
|
var i = 0;
|
|
throw "test";
|
|
}
|
|
function f4() {
|
|
var i = 0;
|
|
}
|
|
var obj = {
|
|
method1() {},
|
|
method2() {}
|
|
};
|
|
class C {
|
|
method1() {}
|
|
method2() {}
|
|
}
|
|
var arrow1 = () => {};
|
|
var arrow2 = () => {};
|