forked from Fantom-Factory/afJson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJsonModule.fan
98 lines (98 loc) · 2.46 KB
/
JsonModule.fan
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
//
// for afJson v1.0
//
//@Js @NoDoc
//const class JsonModule {
//
// remember to re-enable "afIoc.module" in pod meta
//
// Str:Obj nonInvasiveIocModule() {
// [
// "services" : [
// [
// "id" : Json#.qname,
// "type" : Json#,
// ],
// [
// "id" : EntityConverter#.qname,
// "type" : EntityConverter#,
// ],
// [
// "id" : JsonTypeInspectors#.qname,
// "type" : JsonTypeInspectors#,
// ],
// [
// "id" : JsonReader#.qname,
// "type" : JsonReader#,
// ],
// [
// "id" : JsonWriter#.qname,
// "type" : JsonWriter#,
// ]
// ],
//
// "contributions" : [
// [
// "serviceId" : JsonTypeInspectors#.qname,
// "key" : "afJson.literal",
// "value" : LiteralInspector()
// ],
// [
// "serviceId" : JsonTypeInspectors#.qname,
// "key" : "afJson.map",
// "after" : "afJson.literal",
// "value" : NamedInspector(Map#, MapConverter())
// ],
// [
// "serviceId" : JsonTypeInspectors#.qname,
// "key" : "afJson.list",
// "after" : "afJson.map",
// "value" : NamedInspector(List#, ListConverter())
// ],
// [
// "serviceId" : JsonTypeInspectors#.qname,
// "key" : "afJson.type",
// "after" : "afJson.list",
// "value" : NamedInspector(Type#, TypeConverter())
// ],
// [
// "serviceId" : JsonTypeInspectors#.qname,
// "key" : "afJson.slot",
// "after" : "afJson.type",
// "value" : NamedInspector(Slot#, SlotConverter())
// ],
// [
// "serviceId" : JsonTypeInspectors#.qname,
// "key" : "afJson.method",
// "after" : "afJson.slot",
// "value" : NamedInspector(Method#, SlotConverter())
// ],
// [
// "serviceId" : JsonTypeInspectors#.qname,
// "key" : "afJson.field",
// "after" : "afJson.method",
// "value" : NamedInspector(Field#, SlotConverter())
// ],
// [
// "serviceId" : JsonTypeInspectors#.qname,
// "key" : "afJson.objLit",
// "after" : "afJson.method",
// "before" : "afJson.obj", // this is the important constraint
// "value" : NamedInspector(Obj#, LiteralConverter())
// ],
// [
// "serviceId" : JsonTypeInspectors#.qname,
// "key" : "afJson.serializable",
// "after" : "afJson.objLit",
// "value" : SerializableInspector()
// ],
// [
// "serviceId" : JsonTypeInspectors#.qname,
// "key" : "afJson.obj",
// "after" : "afJson.serializable",
// "value" : ObjInspector()
// ]
// ]
// ]
// }
//}