forked from dglo/java2go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastyaml.go
94 lines (93 loc) · 2.76 KB
/
astyaml.go
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
package parser
type AstClass struct {
Root struct {
Type string `json:"-type"`
PackageDeclaration struct {
Type string `json:"-type"`
Name struct {
Type string `json:"-type"`
Identifier string `json:"-identifier"`
} `json:"name"`
} `json:"packageDeclaration"`
Types struct {
Type []struct {
Name struct {
Type string `json:"-type"`
Identifier string `json:"-identifier"`
} `json:"name"`
Comment struct {
Type string `json:"-type"`
Content string `json:"-content"`
} `json:"comment,omitempty"`
Members struct {
Member []struct {
Type string `json:"-type"`
Modifiers struct {
Modifier struct {
Type string `json:"-type"`
Keyword string `json:"-keyword"`
} `json:"modifier"`
} `json:"modifiers"`
Variables struct {
Variable struct {
Name struct {
Type string `json:"-type"`
Identifier string `json:"-identifier"`
} `json:"name"`
Type struct {
Type interface{} `json:"-type"`
Name struct {
Type string `json:"-type"`
Identifier string `json:"-identifier"`
} `json:"name,omitempty"`
} `json:"type"`
Type1 string `json:"-type"`
} `json:"variable"`
} `json:"variables,omitempty"`
Body struct {
Statements struct {
Statement interface{} `json:"statement"`
} `json:"statements"`
Type string `json:"-type"`
} `json:"body,omitempty"`
Name struct {
Type string `json:"-type"`
Identifier string `json:"-identifier"`
} `json:"name,omitempty"`
Parameters struct {
Parameter interface{} `json:"parameter"`
} `json:"parameters,omitempty"`
Type1 struct {
Type interface{} `json:"-type"`
Name struct {
Type string `json:"-type"`
Identifier string `json:"-identifier"`
} `json:"name,omitempty"`
} `json:"type,omitempty"`
Comment struct {
Type string `json:"-type"`
Content string `json:"-content"`
} `json:"comment,omitempty"`
} `json:"member"`
} `json:"members"`
Modifiers struct {
Modifier struct {
Type string `json:"-type"`
Keyword string `json:"-keyword"`
} `json:"modifier"`
} `json:"modifiers"`
Type string `json:"-type"`
IsInterface string `json:"-isInterface"`
ExtendedTypes struct {
ExtendedType struct {
Type string `json:"-type"`
Name struct {
Type string `json:"-type"`
Identifier string `json:"-identifier"`
} `json:"name"`
} `json:"extendedType"`
} `json:"extendedTypes,omitempty"`
} `json:"type"`
} `json:"types"`
} `json:"root"`
}