aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/duplicateDeps/m2.js
blob: 03f71ea8e01715d0004ebb0bfca455ec23cab5d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
System.register([], function(exports_1) {
    function f1() { return 1; }
    exports_1("f1", f1);
    function f2() { return 2; }
    exports_1("f2", f2);
    function f3() { return 3; }
    exports_1("f3", f3);
    return {
        setters:[],
        execute: function() {
        }
    }
});