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