aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/register-circular1.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/register-circular1.js')
-rw-r--r--thirdparty/systemjs/test/tests/register-circular1.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/thirdparty/systemjs/test/tests/register-circular1.js b/thirdparty/systemjs/test/tests/register-circular1.js
deleted file mode 100644
index 178980f73..000000000
--- a/thirdparty/systemjs/test/tests/register-circular1.js
+++ /dev/null
@@ -1,24 +0,0 @@
-System.register(["./register-circular2.js"], function($__export) {
- "use strict";
- var c,
- q,
- r;
- function p() {
- if (q)
- $__export("r", r = c);
- else
- $__export("q", q = c);
- }
- $__export("p", p);
- return {
- setters: [function(m) {
- c = m.c;
- }],
- execute: function() {
- c = 5;
- q = $__export("q", q);
- r = $__export("r", r);
- p();
- }
- };
-}); \ No newline at end of file