-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
76 lines (76 loc) · 1.93 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
System.registerModule("facade/lang", [], function() {
"use strict";
var __moduleName = "facade/lang";
var CONST = function CONST() {};
($traceurRuntime.createClass)(CONST, {}, {});
return {get CONST() {
return CONST;
}};
});
System.registerModule("fixtures/component", [], function() {
"use strict";
var __moduleName = "fixtures/component";
var CONST = System.get("facade/lang").CONST;
var Inject = function Inject(token) {
this.token = token;
};
($traceurRuntime.createClass)(Inject, {
get token() {
return this.$__0;
},
set token(value) {
this.$__0 = value;
}
}, {});
Object.defineProperty(Inject, "annotations", {get: function() {
return [new CONST()];
}});
var InjectPromise = function InjectPromise(token) {
this.token = token;
};
($traceurRuntime.createClass)(InjectPromise, {
get token() {
return this.$__1;
},
set token(value) {
this.$__1 = value;
}
}, {});
Object.defineProperty(InjectPromise, "annotations", {get: function() {
return [new CONST()];
}});
var InjectLazy = function InjectLazy(token) {
this.token = token;
};
($traceurRuntime.createClass)(InjectLazy, {
get token() {
return this.$__2;
},
set token(value) {
this.$__2 = value;
}
}, {});
Object.defineProperty(InjectLazy, "annotations", {get: function() {
return [new CONST()];
}});
var DependencyAnnotation = function DependencyAnnotation() {};
($traceurRuntime.createClass)(DependencyAnnotation, {}, {});
Object.defineProperty(DependencyAnnotation, "annotations", {get: function() {
return [new CONST()];
}});
return {
get Inject() {
return Inject;
},
get InjectPromise() {
return InjectPromise;
},
get InjectLazy() {
return InjectLazy;
},
get DependencyAnnotation() {
return DependencyAnnotation;
}
};
});
System.get("fixtures/component" + '');