aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/amd-module-3.js
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/systemjs/test/tests/amd-module-3.js')
-rw-r--r--thirdparty/systemjs/test/tests/amd-module-3.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/thirdparty/systemjs/test/tests/amd-module-3.js b/thirdparty/systemjs/test/tests/amd-module-3.js
new file mode 100644
index 000000000..6c9128051
--- /dev/null
+++ b/thirdparty/systemjs/test/tests/amd-module-3.js
@@ -0,0 +1,13 @@
+define([
+ // with a single-line comment
+ './amd-module.js',
+ /* with a multi-line
+ comment
+ */
+ './amd-module.js'
+ // trailing single-line comment
+ /* trailing multi-line
+ comment */
+], function () {
+ return { amd: true };
+});