Bug 1915045 Ensure decode tasks are scheduled on BufferingState::Enter() r=media...
[gecko.git] / js / xpconnect / tests / unit / not-esmified-not-exported.jsm
blob094eab7f923dd3488fc39ffd7d3f071570a38849
1 var exportedVar = "exported var";
2 function exportedFunction() {
3   return "exported function";
5 let exportedLet = "exported let";
6 const exportedConst = "exported const";
8 var notExportedVar = "not exported var";
9 function notExportedFunction() {
10   return "not exported function";
12 let notExportedLet = "not exported let";
13 const notExportedConst = "not exported const";
15 const EXPORTED_SYMBOLS = [
16   "exportedVar",
17   "exportedFunction",
18   "exportedLet",
19   "exportedConst",