aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/all-circular3.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/all-circular3.js')
-rw-r--r--thirdparty/systemjs/test/tests/all-circular3.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/thirdparty/systemjs/test/tests/all-circular3.js b/thirdparty/systemjs/test/tests/all-circular3.js
new file mode 100644
index 000000000..fea5e3f22
--- /dev/null
+++ b/thirdparty/systemjs/test/tests/all-circular3.js
@@ -0,0 +1,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();
+}); \ No newline at end of file