├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── bench ├── README.md ├── ca.cert ├── cert.pem ├── chompfile.toml ├── generate.js ├── http2-server.js ├── key.pem ├── parallel-mapped-esms.html ├── parallel-mapped.html ├── parallel.html ├── results.html ├── results │ ├── chrome.fastest.parallel-allmapped-esms.csv │ ├── chrome.fastest.parallel-allmapped.csv │ ├── chrome.fastest.parallel-mapped-esms.csv │ ├── chrome.fastest.parallel-mapped.csv │ ├── chrome.fastest.parallel.csv │ ├── chrome.slow.parallel-allmapped-esms.csv │ ├── chrome.slow.parallel-allmapped.csv │ ├── chrome.slow.parallel-mapped-esms.csv │ ├── chrome.slow.parallel-mapped.csv │ ├── chrome.slow.parallel.csv │ ├── firefox.fastest.parallel-allmapped-esms.csv │ ├── firefox.fastest.parallel-mapped-esms.csv │ ├── firefox.fastest.parallel.csv │ ├── firefox.slow.parallel-allmapped-esms.csv │ ├── firefox.slow.parallel-mapped-esms.csv │ └── firefox.slow.parallel.csv └── runner.html ├── chompfile.toml ├── index.d.ts ├── package.json ├── resources ├── testharness.js └── testharnessreport.js ├── rollup.config.js ├── src ├── core.js ├── env.js ├── es-module-shims.js ├── features.js ├── hot-reload.js ├── resolve.js └── self.js └── test ├── base-href.js ├── fixtures ├── css-assertion.js ├── d3.js ├── d3.min.js ├── dep.ts ├── es-modules │ ├── _a.js │ ├── _b.js │ ├── _c.js │ ├── _d.js │ ├── _g.js │ ├── _h.js │ ├── _i.js │ ├── a.js │ ├── b.js │ ├── bare-dynamic-import.js │ ├── base-href-bare.js │ ├── base-href-relative.js │ ├── built-in-fallback.js │ ├── c.js │ ├── deperror.js │ ├── direct.js │ ├── dynamic-import.js │ ├── dynamic-parent.js │ ├── dynamic-url-map.js │ ├── dynamic.js │ ├── es6-dep.js │ ├── es6-file.js │ ├── es6-withdep.js │ ├── es6.js │ ├── exec-order-a.js │ ├── exec-order-b.js │ ├── exec-order-c.js │ ├── exec-order.js │ ├── export-default.js │ ├── export-star.js │ ├── export-star2.js │ ├── export.js │ ├── global1.js │ ├── import-meta-resolve.js │ ├── import-relative-path.js │ ├── import.js │ ├── importer1.js │ ├── load-non-existent.js │ ├── main.js │ ├── moduleName.js │ ├── no-imports.js │ ├── query-param-a.js │ ├── query-param-b.js │ ├── rebinding.js │ ├── reexport-binding.js │ ├── reexport1.js │ ├── reexport2.js │ ├── s.js │ ├── star-dep.js │ ├── tdz.js │ ├── test-file.js │ ├── with-absolute-source-mapping-url.js │ ├── with-relative-source-mapping-url.js │ ├── with-relative-source-mapping-url.js.map │ ├── with-relative-source-mapping-url.ts │ ├── with-relative-source-url.js │ ├── with-source-url-and-source-mapping-url.js │ └── without-source-url.js ├── hotreload-accept-dep.js ├── hotreload-parent.js ├── hotreload.js ├── instance-case-a.js ├── instance-case-b.js ├── instance-case-common.js ├── instance-case.js ├── json-assertion.js ├── json-ld.js ├── json-ld.jsonld ├── json-proto.js ├── json.json ├── load-order │ ├── module-2.js │ ├── module-shim-2.js │ ├── module-shim.js │ ├── module.js │ ├── normal-2.js │ └── normal.js ├── magic-string.js ├── magic-string.min.js ├── module-dynamic.js ├── module-static.js ├── once.js ├── proto.json ├── rollup.js ├── rollup.min.js ├── sheet.css ├── source-phase-dynamic.js ├── source-phase-import.js ├── template.jsx ├── test-circular1.js ├── test-circular2.js ├── test-circular3.js ├── test-cycle.js ├── test-defer-dynamic.js ├── test-defer.js ├── test-dep.js ├── test-dep.ts ├── test-nested-dynamic.js ├── test-rel-dynamic.js ├── test-self-import.js ├── test.js ├── test.ts ├── test.wasm ├── tla.js ├── transform.js ├── transformed.js ├── ts-loading-css.ts └── wasm-import.js ├── frame.html ├── hot.js ├── perf.html ├── polyfill.js ├── resolve-export.js ├── resources ├── execute-start.wasm ├── exported-names.wasm ├── invalid-bytecode.wasm ├── invalid-module.wasm ├── js-wasm-cycle-function-error.js ├── js-wasm-cycle-function-error.wasm ├── js-wasm-cycle-global.js ├── js-wasm-cycle-global.wasm ├── js-wasm-cycle-memory.js ├── js-wasm-cycle-memory.wasm ├── js-wasm-cycle-table.js ├── js-wasm-cycle-table.wasm ├── js-wasm-cycle-value.js ├── js-wasm-cycle-value.wasm ├── js-wasm-cycle.js ├── js-wasm-cycle.wasm ├── log.js ├── resolve-export.wasm ├── wasm-export-i64-global.wasm ├── wasm-export-to-wasm.wasm ├── wasm-import-error-from-wasm.wasm ├── wasm-import-from-wasm.wasm ├── wasm-import-func.js ├── wasm-import-func.wasm ├── wasm-import-global.js ├── wasm-import-global.wasm ├── wasm-import-memory.js ├── wasm-import-memory.wasm ├── wasm-import-table.js ├── wasm-import-table.wasm ├── wasm-js-cycle.js ├── wasm-js-cycle.wasm ├── worker-helper.js ├── worker-source-phase.js ├── worker.js └── worker.wasm ├── revoke-blob-urls.js ├── runMochaTests.js ├── server.mjs ├── shim-map-overrides.js ├── shim.js ├── skip-test-sp-js-wasm-cycle.tentative.html ├── test-base-href.html ├── test-csp.html ├── test-dom-order.html ├── test-double-polyfill.html ├── test-early-module-load.html ├── test-hot.html ├── test-iframe-sandbox.html ├── test-load-event.html ├── test-polyfill-wasm.html ├── test-polyfill.html ├── test-preload-case.html ├── test-revoke-blob-urls.html ├── test-shim-map-overrides.html ├── test-shim.html ├── test-sp-execute-start.tentative.html ├── test-sp-exported-names.tentative.html ├── test-sp-invalid-bytecode.tentative.html ├── test-sp-js-wasm-cycle-errors.tentative.html ├── test-sp-module-parse-error.tentative.html ├── test-sp-resolve-export.tentative.html ├── test-sp-source-phase.tentative.html ├── test-sp-wasm-import-wasm-export.tentative.html ├── test-sp-wasm-import.tentative.html ├── test-sp-wasm-js-cycle.tentative.html ├── test-sp-wasm-to-wasm-link-error.tentative.html ├── test-ts.html └── typescript.js /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/README.md -------------------------------------------------------------------------------- /bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/README.md -------------------------------------------------------------------------------- /bench/ca.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/ca.cert -------------------------------------------------------------------------------- /bench/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/cert.pem -------------------------------------------------------------------------------- /bench/chompfile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/chompfile.toml -------------------------------------------------------------------------------- /bench/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/generate.js -------------------------------------------------------------------------------- /bench/http2-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/http2-server.js -------------------------------------------------------------------------------- /bench/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/key.pem -------------------------------------------------------------------------------- /bench/parallel-mapped-esms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/parallel-mapped-esms.html -------------------------------------------------------------------------------- /bench/parallel-mapped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/parallel-mapped.html -------------------------------------------------------------------------------- /bench/parallel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/parallel.html -------------------------------------------------------------------------------- /bench/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results.html -------------------------------------------------------------------------------- /bench/results/chrome.fastest.parallel-allmapped-esms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/chrome.fastest.parallel-allmapped-esms.csv -------------------------------------------------------------------------------- /bench/results/chrome.fastest.parallel-allmapped.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/chrome.fastest.parallel-allmapped.csv -------------------------------------------------------------------------------- /bench/results/chrome.fastest.parallel-mapped-esms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/chrome.fastest.parallel-mapped-esms.csv -------------------------------------------------------------------------------- /bench/results/chrome.fastest.parallel-mapped.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/chrome.fastest.parallel-mapped.csv -------------------------------------------------------------------------------- /bench/results/chrome.fastest.parallel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/chrome.fastest.parallel.csv -------------------------------------------------------------------------------- /bench/results/chrome.slow.parallel-allmapped-esms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/chrome.slow.parallel-allmapped-esms.csv -------------------------------------------------------------------------------- /bench/results/chrome.slow.parallel-allmapped.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/chrome.slow.parallel-allmapped.csv -------------------------------------------------------------------------------- /bench/results/chrome.slow.parallel-mapped-esms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/chrome.slow.parallel-mapped-esms.csv -------------------------------------------------------------------------------- /bench/results/chrome.slow.parallel-mapped.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/chrome.slow.parallel-mapped.csv -------------------------------------------------------------------------------- /bench/results/chrome.slow.parallel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/chrome.slow.parallel.csv -------------------------------------------------------------------------------- /bench/results/firefox.fastest.parallel-allmapped-esms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/firefox.fastest.parallel-allmapped-esms.csv -------------------------------------------------------------------------------- /bench/results/firefox.fastest.parallel-mapped-esms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/firefox.fastest.parallel-mapped-esms.csv -------------------------------------------------------------------------------- /bench/results/firefox.fastest.parallel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/firefox.fastest.parallel.csv -------------------------------------------------------------------------------- /bench/results/firefox.slow.parallel-allmapped-esms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/firefox.slow.parallel-allmapped-esms.csv -------------------------------------------------------------------------------- /bench/results/firefox.slow.parallel-mapped-esms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/firefox.slow.parallel-mapped-esms.csv -------------------------------------------------------------------------------- /bench/results/firefox.slow.parallel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/results/firefox.slow.parallel.csv -------------------------------------------------------------------------------- /bench/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/bench/runner.html -------------------------------------------------------------------------------- /chompfile.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/chompfile.toml -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/package.json -------------------------------------------------------------------------------- /resources/testharness.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/resources/testharness.js -------------------------------------------------------------------------------- /resources/testharnessreport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/resources/testharnessreport.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/src/core.js -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/src/env.js -------------------------------------------------------------------------------- /src/es-module-shims.js: -------------------------------------------------------------------------------- 1 | import './core.js'; 2 | -------------------------------------------------------------------------------- /src/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/src/features.js -------------------------------------------------------------------------------- /src/hot-reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/src/hot-reload.js -------------------------------------------------------------------------------- /src/resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/src/resolve.js -------------------------------------------------------------------------------- /src/self.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/src/self.js -------------------------------------------------------------------------------- /test/base-href.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/base-href.js -------------------------------------------------------------------------------- /test/fixtures/css-assertion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/css-assertion.js -------------------------------------------------------------------------------- /test/fixtures/d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/d3.js -------------------------------------------------------------------------------- /test/fixtures/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/d3.min.js -------------------------------------------------------------------------------- /test/fixtures/dep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/dep.ts -------------------------------------------------------------------------------- /test/fixtures/es-modules/_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/_a.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/_b.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/_c.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/_d.js: -------------------------------------------------------------------------------- 1 | export var d = 'd'; 2 | ordering.push('_d'); -------------------------------------------------------------------------------- /test/fixtures/es-modules/_g.js: -------------------------------------------------------------------------------- 1 | export var g = 'g'; 2 | ordering.push('_g'); -------------------------------------------------------------------------------- /test/fixtures/es-modules/_h.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/_h.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/_i.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/_i.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/a.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/b.js: -------------------------------------------------------------------------------- 1 | export var b = 'b'; 2 | ordering.push('b'); -------------------------------------------------------------------------------- /test/fixtures/es-modules/bare-dynamic-import.js: -------------------------------------------------------------------------------- 1 | export default 'bareDynamicImport'; -------------------------------------------------------------------------------- /test/fixtures/es-modules/base-href-bare.js: -------------------------------------------------------------------------------- 1 | export default 'base href bare'; -------------------------------------------------------------------------------- /test/fixtures/es-modules/base-href-relative.js: -------------------------------------------------------------------------------- 1 | export default 'base href relative'; -------------------------------------------------------------------------------- /test/fixtures/es-modules/built-in-fallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/built-in-fallback.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/c.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/deperror.js: -------------------------------------------------------------------------------- 1 | throw 'dep error'; 2 | -------------------------------------------------------------------------------- /test/fixtures/es-modules/direct.js: -------------------------------------------------------------------------------- 1 | import { p } from './es6-dep.js'; 2 | -------------------------------------------------------------------------------- /test/fixtures/es-modules/dynamic-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/dynamic-import.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/dynamic-parent.js: -------------------------------------------------------------------------------- 1 | import './dynamic.js'; 2 | -------------------------------------------------------------------------------- /test/fixtures/es-modules/dynamic-url-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/dynamic-url-map.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/dynamic.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/es6-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/es6-dep.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/es6-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/es6-file.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/es6-withdep.js: -------------------------------------------------------------------------------- 1 | export { p } from './es6-dep.js'; -------------------------------------------------------------------------------- /test/fixtures/es-modules/es6.js: -------------------------------------------------------------------------------- 1 | export var p = 'p'; 2 | -------------------------------------------------------------------------------- /test/fixtures/es-modules/exec-order-a.js: -------------------------------------------------------------------------------- 1 | ordering.push('a'); -------------------------------------------------------------------------------- /test/fixtures/es-modules/exec-order-b.js: -------------------------------------------------------------------------------- 1 | ordering.push('b'); -------------------------------------------------------------------------------- /test/fixtures/es-modules/exec-order-c.js: -------------------------------------------------------------------------------- 1 | ordering.push('c'); -------------------------------------------------------------------------------- /test/fixtures/es-modules/exec-order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/exec-order.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/export-default.js: -------------------------------------------------------------------------------- 1 | export default function() { 2 | return 'test'; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/es-modules/export-star.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/export-star.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/export-star2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/export-star2.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/export.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/global1.js: -------------------------------------------------------------------------------- 1 | done(); 2 | -------------------------------------------------------------------------------- /test/fixtures/es-modules/import-meta-resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/import-meta-resolve.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/import-relative-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/import-relative-path.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/import.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/importer1.js: -------------------------------------------------------------------------------- 1 | import 'global1'; 2 | -------------------------------------------------------------------------------- /test/fixtures/es-modules/load-non-existent.js: -------------------------------------------------------------------------------- 1 | import './non-existent.js'; -------------------------------------------------------------------------------- /test/fixtures/es-modules/main.js: -------------------------------------------------------------------------------- 1 | import "./deperror.js"; 2 | -------------------------------------------------------------------------------- /test/fixtures/es-modules/moduleName.js: -------------------------------------------------------------------------------- 1 | export var name = import.meta.url; -------------------------------------------------------------------------------- /test/fixtures/es-modules/no-imports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/no-imports.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/query-param-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/query-param-a.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/query-param-b.js: -------------------------------------------------------------------------------- 1 | export const b = 'b'; -------------------------------------------------------------------------------- /test/fixtures/es-modules/rebinding.js: -------------------------------------------------------------------------------- 1 | export var p = 4; -------------------------------------------------------------------------------- /test/fixtures/es-modules/reexport-binding.js: -------------------------------------------------------------------------------- 1 | import { p } from './rebinding.js'; -------------------------------------------------------------------------------- /test/fixtures/es-modules/reexport1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/reexport1.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/reexport2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/reexport2.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/s.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/s.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/star-dep.js: -------------------------------------------------------------------------------- 1 | export var foo = 'foo'; -------------------------------------------------------------------------------- /test/fixtures/es-modules/tdz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/tdz.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/test-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/test-file.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/with-absolute-source-mapping-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/with-absolute-source-mapping-url.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/with-relative-source-mapping-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/with-relative-source-mapping-url.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/with-relative-source-mapping-url.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/with-relative-source-mapping-url.js.map -------------------------------------------------------------------------------- /test/fixtures/es-modules/with-relative-source-mapping-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/with-relative-source-mapping-url.ts -------------------------------------------------------------------------------- /test/fixtures/es-modules/with-relative-source-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/with-relative-source-url.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/with-source-url-and-source-mapping-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/es-modules/with-source-url-and-source-mapping-url.js -------------------------------------------------------------------------------- /test/fixtures/es-modules/without-source-url.js: -------------------------------------------------------------------------------- 1 | export const answer = 42; 2 | -------------------------------------------------------------------------------- /test/fixtures/hotreload-accept-dep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/hotreload-accept-dep.js -------------------------------------------------------------------------------- /test/fixtures/hotreload-parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/hotreload-parent.js -------------------------------------------------------------------------------- /test/fixtures/hotreload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/hotreload.js -------------------------------------------------------------------------------- /test/fixtures/instance-case-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/instance-case-a.js -------------------------------------------------------------------------------- /test/fixtures/instance-case-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/instance-case-b.js -------------------------------------------------------------------------------- /test/fixtures/instance-case-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/instance-case-common.js -------------------------------------------------------------------------------- /test/fixtures/instance-case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/instance-case.js -------------------------------------------------------------------------------- /test/fixtures/json-assertion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/json-assertion.js -------------------------------------------------------------------------------- /test/fixtures/json-ld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/json-ld.js -------------------------------------------------------------------------------- /test/fixtures/json-ld.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/json-ld.jsonld -------------------------------------------------------------------------------- /test/fixtures/json-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/json-proto.js -------------------------------------------------------------------------------- /test/fixtures/json.json: -------------------------------------------------------------------------------- 1 | { 2 | "json": "module" 3 | } -------------------------------------------------------------------------------- /test/fixtures/load-order/module-2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/load-order/module-shim-2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/load-order/module-shim.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/load-order/module.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/load-order/normal-2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/load-order/normal.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/magic-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/magic-string.js -------------------------------------------------------------------------------- /test/fixtures/magic-string.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/magic-string.min.js -------------------------------------------------------------------------------- /test/fixtures/module-dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/module-dynamic.js -------------------------------------------------------------------------------- /test/fixtures/module-static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/module-static.js -------------------------------------------------------------------------------- /test/fixtures/once.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/once.js -------------------------------------------------------------------------------- /test/fixtures/proto.json: -------------------------------------------------------------------------------- 1 | { "__proto__": "module" } 2 | -------------------------------------------------------------------------------- /test/fixtures/rollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/rollup.js -------------------------------------------------------------------------------- /test/fixtures/rollup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/rollup.min.js -------------------------------------------------------------------------------- /test/fixtures/sheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/sheet.css -------------------------------------------------------------------------------- /test/fixtures/source-phase-dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/source-phase-dynamic.js -------------------------------------------------------------------------------- /test/fixtures/source-phase-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/source-phase-import.js -------------------------------------------------------------------------------- /test/fixtures/template.jsx: -------------------------------------------------------------------------------- 1 | Totally JSX 2 | -------------------------------------------------------------------------------- /test/fixtures/test-circular1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/test-circular1.js -------------------------------------------------------------------------------- /test/fixtures/test-circular2.js: -------------------------------------------------------------------------------- 1 | export { g } from './test-circular3.js'; -------------------------------------------------------------------------------- /test/fixtures/test-circular3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/test-circular3.js -------------------------------------------------------------------------------- /test/fixtures/test-cycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/test-cycle.js -------------------------------------------------------------------------------- /test/fixtures/test-defer-dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/test-defer-dynamic.js -------------------------------------------------------------------------------- /test/fixtures/test-defer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/test-defer.js -------------------------------------------------------------------------------- /test/fixtures/test-dep.js: -------------------------------------------------------------------------------- 1 | export var hello = 'world'; 2 | -------------------------------------------------------------------------------- /test/fixtures/test-dep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/test-dep.ts -------------------------------------------------------------------------------- /test/fixtures/test-nested-dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/test-nested-dynamic.js -------------------------------------------------------------------------------- /test/fixtures/test-rel-dynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/test-rel-dynamic.js -------------------------------------------------------------------------------- /test/fixtures/test-self-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/test-self-import.js -------------------------------------------------------------------------------- /test/fixtures/test.js: -------------------------------------------------------------------------------- 1 | export { hello as default } from "test-dep"; 2 | -------------------------------------------------------------------------------- /test/fixtures/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/test.ts -------------------------------------------------------------------------------- /test/fixtures/test.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | addTwo 3 |  j 4 | name -------------------------------------------------------------------------------- /test/fixtures/tla.js: -------------------------------------------------------------------------------- 1 | await 0; 2 | -------------------------------------------------------------------------------- /test/fixtures/transform.js: -------------------------------------------------------------------------------- 1 | export { default } from './template.jsx'; 2 | -------------------------------------------------------------------------------- /test/fixtures/transformed.js: -------------------------------------------------------------------------------- 1 | export { transformed } from './file.jsx'; -------------------------------------------------------------------------------- /test/fixtures/ts-loading-css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/ts-loading-css.ts -------------------------------------------------------------------------------- /test/fixtures/wasm-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/fixtures/wasm-import.js -------------------------------------------------------------------------------- /test/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/frame.html -------------------------------------------------------------------------------- /test/hot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/hot.js -------------------------------------------------------------------------------- /test/perf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/perf.html -------------------------------------------------------------------------------- /test/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/polyfill.js -------------------------------------------------------------------------------- /test/resolve-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resolve-export.js -------------------------------------------------------------------------------- /test/resources/execute-start.wasm: -------------------------------------------------------------------------------- 1 | asm`./log.jslogExec 2 |  -------------------------------------------------------------------------------- /test/resources/exported-names.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/exported-names.wasm -------------------------------------------------------------------------------- /test/resources/invalid-bytecode.wasm: -------------------------------------------------------------------------------- 1 | asm*` -------------------------------------------------------------------------------- /test/resources/invalid-module.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | B -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle-function-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle-function-error.js -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle-function-error.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle-function-error.wasm -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle-global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle-global.js -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle-global.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle-global.wasm -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle-memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle-memory.js -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle-memory.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle-memory.wasm -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle-table.js -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle-table.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle-table.wasm -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle-value.js -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle-value.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle-value.wasm -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle.js -------------------------------------------------------------------------------- /test/resources/js-wasm-cycle.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/js-wasm-cycle.wasm -------------------------------------------------------------------------------- /test/resources/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/log.js -------------------------------------------------------------------------------- /test/resources/resolve-export.wasm: -------------------------------------------------------------------------------- 1 | asm -------------------------------------------------------------------------------- /test/resources/wasm-export-i64-global.wasm: -------------------------------------------------------------------------------- 1 | asm~B* g -------------------------------------------------------------------------------- /test/resources/wasm-export-to-wasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/wasm-export-to-wasm.wasm -------------------------------------------------------------------------------- /test/resources/wasm-import-error-from-wasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/wasm-import-error-from-wasm.wasm -------------------------------------------------------------------------------- /test/resources/wasm-import-from-wasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/wasm-import-from-wasm.wasm -------------------------------------------------------------------------------- /test/resources/wasm-import-func.js: -------------------------------------------------------------------------------- 1 | export let f = 5; 2 | -------------------------------------------------------------------------------- /test/resources/wasm-import-func.wasm: -------------------------------------------------------------------------------- 1 | asm`./wasm-import-func.jsf -------------------------------------------------------------------------------- /test/resources/wasm-import-global.js: -------------------------------------------------------------------------------- 1 | export let g = 5; 2 | -------------------------------------------------------------------------------- /test/resources/wasm-import-global.wasm: -------------------------------------------------------------------------------- 1 | asm./wasm-import-global.jsg~ -------------------------------------------------------------------------------- /test/resources/wasm-import-memory.js: -------------------------------------------------------------------------------- 1 | export let m = 5; 2 | -------------------------------------------------------------------------------- /test/resources/wasm-import-memory.wasm: -------------------------------------------------------------------------------- 1 | asm./wasm-import-memory.jsm -------------------------------------------------------------------------------- /test/resources/wasm-import-table.js: -------------------------------------------------------------------------------- 1 | export let t = 5; 2 | -------------------------------------------------------------------------------- /test/resources/wasm-import-table.wasm: -------------------------------------------------------------------------------- 1 | asm./wasm-import-table.jstp -------------------------------------------------------------------------------- /test/resources/wasm-js-cycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/wasm-js-cycle.js -------------------------------------------------------------------------------- /test/resources/wasm-js-cycle.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/wasm-js-cycle.wasm -------------------------------------------------------------------------------- /test/resources/worker-helper.js: -------------------------------------------------------------------------------- 1 | export function pm(x) { postMessage(x); } 2 | -------------------------------------------------------------------------------- /test/resources/worker-source-phase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/worker-source-phase.js -------------------------------------------------------------------------------- /test/resources/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/resources/worker.js -------------------------------------------------------------------------------- /test/resources/worker.wasm: -------------------------------------------------------------------------------- 1 | asm``./worker-helper.jspm 2 | A* -------------------------------------------------------------------------------- /test/revoke-blob-urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/revoke-blob-urls.js -------------------------------------------------------------------------------- /test/runMochaTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/runMochaTests.js -------------------------------------------------------------------------------- /test/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/server.mjs -------------------------------------------------------------------------------- /test/shim-map-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/shim-map-overrides.js -------------------------------------------------------------------------------- /test/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/shim.js -------------------------------------------------------------------------------- /test/skip-test-sp-js-wasm-cycle.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/skip-test-sp-js-wasm-cycle.tentative.html -------------------------------------------------------------------------------- /test/test-base-href.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-base-href.html -------------------------------------------------------------------------------- /test/test-csp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-csp.html -------------------------------------------------------------------------------- /test/test-dom-order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-dom-order.html -------------------------------------------------------------------------------- /test/test-double-polyfill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-double-polyfill.html -------------------------------------------------------------------------------- /test/test-early-module-load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-early-module-load.html -------------------------------------------------------------------------------- /test/test-hot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-hot.html -------------------------------------------------------------------------------- /test/test-iframe-sandbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-iframe-sandbox.html -------------------------------------------------------------------------------- /test/test-load-event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-load-event.html -------------------------------------------------------------------------------- /test/test-polyfill-wasm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-polyfill-wasm.html -------------------------------------------------------------------------------- /test/test-polyfill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-polyfill.html -------------------------------------------------------------------------------- /test/test-preload-case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-preload-case.html -------------------------------------------------------------------------------- /test/test-revoke-blob-urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-revoke-blob-urls.html -------------------------------------------------------------------------------- /test/test-shim-map-overrides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-shim-map-overrides.html -------------------------------------------------------------------------------- /test/test-shim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-shim.html -------------------------------------------------------------------------------- /test/test-sp-execute-start.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-execute-start.tentative.html -------------------------------------------------------------------------------- /test/test-sp-exported-names.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-exported-names.tentative.html -------------------------------------------------------------------------------- /test/test-sp-invalid-bytecode.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-invalid-bytecode.tentative.html -------------------------------------------------------------------------------- /test/test-sp-js-wasm-cycle-errors.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-js-wasm-cycle-errors.tentative.html -------------------------------------------------------------------------------- /test/test-sp-module-parse-error.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-module-parse-error.tentative.html -------------------------------------------------------------------------------- /test/test-sp-resolve-export.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-resolve-export.tentative.html -------------------------------------------------------------------------------- /test/test-sp-source-phase.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-source-phase.tentative.html -------------------------------------------------------------------------------- /test/test-sp-wasm-import-wasm-export.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-wasm-import-wasm-export.tentative.html -------------------------------------------------------------------------------- /test/test-sp-wasm-import.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-wasm-import.tentative.html -------------------------------------------------------------------------------- /test/test-sp-wasm-js-cycle.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-wasm-js-cycle.tentative.html -------------------------------------------------------------------------------- /test/test-sp-wasm-to-wasm-link-error.tentative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-sp-wasm-to-wasm-link-error.tentative.html -------------------------------------------------------------------------------- /test/test-ts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/test-ts.html -------------------------------------------------------------------------------- /test/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guybedford/es-module-shims/HEAD/test/typescript.js --------------------------------------------------------------------------------