@cparra/apex-reflection 1.0.0 → 1.1.0
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 +3 -0
- package/index.ts +4 -0
- package/out.js +8696 -8586
- 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;
|
|
@@ -63,12 +64,14 @@ export interface FieldMirror {
|
|
|
63
64
|
memberModifiers: string[];
|
|
64
65
|
type: string;
|
|
65
66
|
docComment?: DocComment;
|
|
67
|
+
group?: string;
|
|
66
68
|
}
|
|
67
69
|
export interface ConstructorMirror {
|
|
68
70
|
access_modifier: string;
|
|
69
71
|
annotations: Annotation[];
|
|
70
72
|
parameters: ParameterMirror[];
|
|
71
73
|
docComment?: DocComment;
|
|
74
|
+
group?: string;
|
|
72
75
|
}
|
|
73
76
|
export interface ReflectionResult {
|
|
74
77
|
typeMirror?: Type;
|
package/index.ts
CHANGED
|
@@ -69,6 +69,7 @@ export interface PropertyMirror {
|
|
|
69
69
|
memberModifiers: string[];
|
|
70
70
|
type: string;
|
|
71
71
|
docComment?: DocComment;
|
|
72
|
+
group?: string;
|
|
72
73
|
}
|
|
73
74
|
|
|
74
75
|
export interface FieldMirror {
|
|
@@ -107,6 +108,7 @@ export interface EnumMirror {
|
|
|
107
108
|
type_name: TypeName;
|
|
108
109
|
access_modifier: string;
|
|
109
110
|
docComment?: DocComment;
|
|
111
|
+
group?: string;
|
|
110
112
|
}
|
|
111
113
|
|
|
112
114
|
export interface InterfaceMirror {
|
|
@@ -118,6 +120,7 @@ export interface InterfaceMirror {
|
|
|
118
120
|
access_modifier: string;
|
|
119
121
|
docComment?: DocComment;
|
|
120
122
|
sharingModifier?: string;
|
|
123
|
+
group?: string;
|
|
121
124
|
}
|
|
122
125
|
|
|
123
126
|
export interface ClassMirror {
|
|
@@ -137,4 +140,5 @@ export interface ClassMirror {
|
|
|
137
140
|
classes: ClassMirror[];
|
|
138
141
|
access_modifier: string;
|
|
139
142
|
docComment?: DocComment;
|
|
143
|
+
group?: string;
|
|
140
144
|
}
|