1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-28 23:28:16 +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

@ -0,0 +1,26 @@
/* 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";
}
}