1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Rename builder esprima fixtures to babel

f724ae98a1 changed the build
script to use Babel, so this commit updates the file names accordingly
This commit is contained in:
Nicolò Ribaudo 2024-05-09 15:05:11 +02:00
parent b6765403a1
commit 83d878d34c
No known key found for this signature in database
GPG key ID: AAFDA9101C58F338
20 changed files with 8 additions and 8 deletions

View file

@ -1,37 +0,0 @@
function f1() {
return;
var i = 0;
}
function f2() {
return 1;
var i = 0;
}
function f3() {
var i = 0;
throw "test";
var j = 0;
}
function f4() {
var i = 0;
if (true) {
return;
}
throw "test";
var j = 0;
}
var obj = {
method1() { return; var i = 0; },
method2() { return; },
};
class C {
method1() { return; var i = 0; }
method2() { return; }
}
var arrow1 = () => { return; var i = 0; };
var arrow2 = () => { return; };