aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/shared-dep-bundles/a.js
blob: 76aef0ec950dc166865fb88680eb236f22839a7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"format register";

System.register("lib/shared-dep", [], function($__export) {
  "use strict";
  var __moduleName = "lib/shared-dep";
  function shared() {}
  $__export("default", shared);
  return {
    setters: [],
    execute: function() {
      ;
    }
  };
});



System.register("lib/a", ["./shared-dep"], function($__export) {
  "use strict";
  var __moduleName = "lib/a";
  var shared;
  return {
    setters: [function(m) {
      shared = m.default;
    }],
    execute: function() {
    }
  };
});



//# sourceMappingURL=a.js.map