aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/all-circular4.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/all-circular4.js')
-rw-r--r--thirdparty/systemjs/test/tests/all-circular4.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/thirdparty/systemjs/test/tests/all-circular4.js b/thirdparty/systemjs/test/tests/all-circular4.js
new file mode 100644
index 000000000..692445730
--- /dev/null
+++ b/thirdparty/systemjs/test/tests/all-circular4.js
@@ -0,0 +1,5 @@
+exports.obj = { circular: 'mess' };
+var setter = require('./all-circular3.js');
+exports.set = function() {
+ setter.setObj();
+}