@cparra/apex-reflection 1.0.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +7 -1
- package/index.ts +7 -0
- package/out.js +13256 -9360
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export interface MethodMirror {
|
|
|
47
47
|
type: string;
|
|
48
48
|
parameters: ParameterMirror[];
|
|
49
49
|
docComment?: DocComment;
|
|
50
|
+
group?: string;
|
|
50
51
|
}
|
|
51
52
|
export interface PropertyMirror {
|
|
52
53
|
access_modifier: string;
|
|
@@ -55,6 +56,7 @@ export interface PropertyMirror {
|
|
|
55
56
|
memberModifiers: string[];
|
|
56
57
|
type: string;
|
|
57
58
|
docComment?: DocComment;
|
|
59
|
+
group?: string;
|
|
58
60
|
}
|
|
59
61
|
export interface FieldMirror {
|
|
60
62
|
access_modifier: string;
|
|
@@ -63,12 +65,14 @@ export interface FieldMirror {
|
|
|
63
65
|
memberModifiers: string[];
|
|
64
66
|
type: string;
|
|
65
67
|
docComment?: DocComment;
|
|
68
|
+
group?: string;
|
|
66
69
|
}
|
|
67
70
|
export interface ConstructorMirror {
|
|
68
71
|
access_modifier: string;
|
|
69
72
|
annotations: Annotation[];
|
|
70
73
|
parameters: ParameterMirror[];
|
|
71
74
|
docComment?: DocComment;
|
|
75
|
+
group?: string;
|
|
72
76
|
}
|
|
73
77
|
export interface ReflectionResult {
|
|
74
78
|
typeMirror?: Type;
|
|
@@ -85,6 +89,7 @@ export interface EnumMirror {
|
|
|
85
89
|
type_name: TypeName;
|
|
86
90
|
access_modifier: string;
|
|
87
91
|
docComment?: DocComment;
|
|
92
|
+
group?: string;
|
|
88
93
|
}
|
|
89
94
|
export interface InterfaceMirror {
|
|
90
95
|
annotations: Annotation[];
|
|
@@ -95,9 +100,9 @@ export interface InterfaceMirror {
|
|
|
95
100
|
access_modifier: string;
|
|
96
101
|
docComment?: DocComment;
|
|
97
102
|
sharingModifier?: string;
|
|
103
|
+
group?: string;
|
|
98
104
|
}
|
|
99
105
|
export interface ClassMirror {
|
|
100
|
-
string: any;
|
|
101
106
|
annotations: Annotation[];
|
|
102
107
|
name: string;
|
|
103
108
|
type_name: TypeName;
|
|
@@ -114,5 +119,6 @@ export interface ClassMirror {
|
|
|
114
119
|
classes: ClassMirror[];
|
|
115
120
|
access_modifier: string;
|
|
116
121
|
docComment?: DocComment;
|
|
122
|
+
group?: string;
|
|
117
123
|
}
|
|
118
124
|
export {};
|
package/index.ts
CHANGED
|
@@ -60,6 +60,7 @@ export interface MethodMirror {
|
|
|
60
60
|
type: string;
|
|
61
61
|
parameters: ParameterMirror[];
|
|
62
62
|
docComment?: DocComment;
|
|
63
|
+
group?: string;
|
|
63
64
|
}
|
|
64
65
|
|
|
65
66
|
export interface PropertyMirror {
|
|
@@ -69,6 +70,7 @@ export interface PropertyMirror {
|
|
|
69
70
|
memberModifiers: string[];
|
|
70
71
|
type: string;
|
|
71
72
|
docComment?: DocComment;
|
|
73
|
+
group?: string;
|
|
72
74
|
}
|
|
73
75
|
|
|
74
76
|
export interface FieldMirror {
|
|
@@ -78,6 +80,7 @@ export interface FieldMirror {
|
|
|
78
80
|
memberModifiers: string[];
|
|
79
81
|
type: string;
|
|
80
82
|
docComment?: DocComment;
|
|
83
|
+
group?: string;
|
|
81
84
|
}
|
|
82
85
|
|
|
83
86
|
export interface ConstructorMirror {
|
|
@@ -85,6 +88,7 @@ export interface ConstructorMirror {
|
|
|
85
88
|
annotations: Annotation[];
|
|
86
89
|
parameters: ParameterMirror[];
|
|
87
90
|
docComment?: DocComment;
|
|
91
|
+
group?: string;
|
|
88
92
|
}
|
|
89
93
|
|
|
90
94
|
export interface ReflectionResult {
|
|
@@ -107,6 +111,7 @@ export interface EnumMirror {
|
|
|
107
111
|
type_name: TypeName;
|
|
108
112
|
access_modifier: string;
|
|
109
113
|
docComment?: DocComment;
|
|
114
|
+
group?: string;
|
|
110
115
|
}
|
|
111
116
|
|
|
112
117
|
export interface InterfaceMirror {
|
|
@@ -118,6 +123,7 @@ export interface InterfaceMirror {
|
|
|
118
123
|
access_modifier: string;
|
|
119
124
|
docComment?: DocComment;
|
|
120
125
|
sharingModifier?: string;
|
|
126
|
+
group?: string;
|
|
121
127
|
}
|
|
122
128
|
|
|
123
129
|
export interface ClassMirror {
|
|
@@ -137,4 +143,5 @@ export interface ClassMirror {
|
|
|
137
143
|
classes: ClassMirror[];
|
|
138
144
|
access_modifier: string;
|
|
139
145
|
docComment?: DocComment;
|
|
146
|
+
group?: string;
|
|
140
147
|
}
|