summaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/all-circular3.js
blob: fea5e3f2297a242b563386f5ce3c39d9bcf39a64 (plain)
1
2
3
4
5
6
7
8
9
10
define(function(require, exports) {
  var obj = require('./all-circular4.js').obj;
  exports.checkObj = function() {
    return obj.circular;
  }
  exports.setObj = function() {
    obj.circular = 'changed';
  }
  require('./all-circular4.js').set();
});