fork from https://github.com/mozilla/pdf.js.git
This commit is contained in:
14
external/builder/fixtures_babel/unused-function.js
vendored
Normal file
14
external/builder/fixtures_babel/unused-function.js
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
function usedByUsed() {}
|
||||
function usedByUnused() {}
|
||||
function usedByRemovedCode() {}
|
||||
|
||||
function used() {
|
||||
usedByUsed();
|
||||
return;
|
||||
usedByRemovedCode();
|
||||
}
|
||||
function unused() {
|
||||
usedByUnused();
|
||||
}
|
||||
|
||||
used();
|
||||
Reference in New Issue
Block a user