-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhedn.json
128 lines (128 loc) · 3.04 KB
/
hedn.json
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"build" : {
"-D" : ["test=stx_makro","no-deprecation-warnings"],
"-cp" : ["src/main/haxe","src/gen/haxe"],
"-lib" : [
"tink_core","tink_macro",
"stx_pico","stx_nano","stx_fn","stx_fp","stx_ds","bake"
],
"unit" : {
"--macro": [
"include('stx.assert.makro',true)",
"include('stx.makro',true)"
],
"--main" : "Unit",
"interp" : {
"--interp" : true
},
"cpp" : {
"--cpp" : "dist/unit/cpp"
}
},
"boot" : {
"--macro" : ["Main.boot()"],
"-D" : ["make"],
"--main" : "Main",
"--interp" : true
},
"test" : {
"-L" : "stx_test",
"-cp": "src/test/haxe",
"-D" : ["stx.log.filter.show=false"],
"expr" : {
"--main" : "stx.makro.expr.Test",
"interp" : {
"--interp" : true
},
"cpp" : {
"--cpp" : "dist/test/cpp"
}
},
"identity" : {
"--main" : "stx.makro.test.IdentityTest",
"interp" : {
"--interp" : true
}
}
},
"feat" : {
"-L" : "stx_test",
"-cp" : ["src/test/haxe","src/feat/haxe"],
"comparable" : {
"--main" : "stx.makro.feat.comparable.Test",
"interp" : {
"--interp" : true
}
},
"to_complex_type" : {
"--main" : "stx.makro.ToComplexTypeTest",
"interp" : {
"--interp" : true
}
},
"gen" : {
"--main" : "stx.makro.feat.track_generics.Test",
"interp" : {
"--interp" : true
}
},
"materialize" : {
"--main" : "stx.makro.feat.materialize.Test",
"interp" : {
"--interp" : true
}
},
"types_of_type" : {
"--main" : "stx.makro.feat.types_of_type.Test",
"interp" : {
"--interp" : true
}
},
"on_type_not_found" : {
"--main" : "stx.makro.feat.on_type_not_found.Test",
"interp" : {
"--interp" : true
}
},
"std_type" : {
"--main" : "stx.makro.feat.std_type.Test",
"interp" : {
"--interp" : true
}
},
"bind" : {
"--macro" : [
"stx.makro.feat.bind.Plugin.use()"
],
"--main" : "stx.makro.feat.bind.Test",
"interp" : {
"--interp" : true
}
},
"type_incoming" : {
"--main" : "stx.makro.feat.type_incoming.Test",
"interp" : {
"--interp" : true
}
},
"module_type_cleverness" : {
"--macro" : [
"stx.makro.feat.module_type_cleverness.Plugin.use()"
],
"--main" : "stx.makro.feat.module_type_cleverness.Test",
"interp" : {
"--interp" : true
}
},
"type_variables" : {
"--macro" : [
"stx.makro.feat.type_variables.Plugin.use()"
],
"--main" : "stx.makro.feat.type_variables.Test",
"interp" : {
"--interp" : true
}
}
}
}
}