From 9af485a584e47fd503ed5c62b9f6482574715f1e Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 10 Oct 2016 03:50:11 +0200 Subject: Squashed 'thirdparty/systemjs/' content from commit 5ed69b6 git-subtree-dir: thirdparty/systemjs git-subtree-split: 5ed69b6344e8fc1cd43bf758350b2236f57e1499 --- test/tests/duplicateDeps/m1.js | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 test/tests/duplicateDeps/m1.js (limited to 'test/tests/duplicateDeps/m1.js') diff --git a/test/tests/duplicateDeps/m1.js b/test/tests/duplicateDeps/m1.js new file mode 100644 index 000000000..77b7efb3b --- /dev/null +++ b/test/tests/duplicateDeps/m1.js @@ -0,0 +1,23 @@ +System.register(["tests/duplicateDeps/m2.js", "tests/duplicateDeps/m2.js", "tests/duplicateDeps/m2.js"], function(exports_1) { + var m2_1, m2_2; + function foo() { + return m2_1.f1() + m2_2.f2(); + } + exports_1("foo", foo); + return { + setters:[ + function (_m2_1) { + m2_1 = _m2_1; + }, + function (_m2_2) { + m2_2 = _m2_2; + }, + function (_m2_3) { + var reexports_1 = {}; + reexports_1["f3"] = _m2_3["f3"]; + exports_1(reexports_1); + }], + execute: function() { + } + } +}); -- cgit v1.2.3