aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/all-layers3.js
blob: ac519f19aa5e0c5e00cdf232f85c251483c6935f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
System.register(["./all-layers2.js", "./all-layers4.js"], function($__export) {
  "use strict";
  var c, p;
  return {
    setters: [
      function(m) {
        p = m.p;
      }, 
      function(m) {
        $__export('c', c = m.c);
      }
    ],
    execute: function() {
      p();
    }
  };
});