6a5019a719a9014c047e67aa1cf34453ab8392ce.js 895 B

1234567891011121314151617181920212223242526
  1. System.register([], function (_export, _context) {
  2. "use strict";
  3. /**
  4. * This is the module which implements circular-reference detection.
  5. */
  6. /**
  7. * Reports a circular reference error fired by module import.
  8. * @param imported The binding of the import.
  9. * @param moduleRequest The module request of the import.
  10. * @param importMeta The import.meta of the source module.
  11. * @param extras Extra data passed by circular reference detection implementation.
  12. */
  13. function report(imported, moduleRequest, importMeta, extras) {
  14. console.warn("Found possible circular reference in \"" + importMeta.url + "\", happened when use \"" + imported + "\" imported from \"" + moduleRequest + "\" ", extras.error);
  15. }
  16. _export("report", report);
  17. return {
  18. setters: [],
  19. execute: function () {}
  20. };
  21. });
  22. //# sourceMappingURL=6a5019a719a9014c047e67aa1cf34453ab8392ce.js.map