aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/foo.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/foo.js')
-rw-r--r--thirdparty/systemjs/test/tests/foo.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/thirdparty/systemjs/test/tests/foo.js b/thirdparty/systemjs/test/tests/foo.js
new file mode 100644
index 000000000..343cf430b
--- /dev/null
+++ b/thirdparty/systemjs/test/tests/foo.js
@@ -0,0 +1,10 @@
+System.register("tests/foo.js", [], function($__export) {
+ "use strict";
+ var __moduleName = "foo";
+ return {
+ setters: [],
+ execute: function() {
+ $__export('f', 'f');
+ }
+ };
+});