-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathtypes.ts
153 lines (136 loc) · 3.57 KB
/
types.ts
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
export namespace AutocompleteParsingResult {
export type ContextValue =
| Argument
| Arguments
| ArrayItem
| ArrayValue
| Assignment
| AssignmentValue
| Base
| ClassDefinition
| ClosureValue
| MethodCall
| MethodDefinition
| ObjectValue
| Parameter
| ParameterValue
| Parameters
| StringValue
| Variable;
export interface Argument {
type: "argument";
parent: ContextValue | null;
children: ContextValue[];
name: string | null;
}
export interface Arguments {
type: "arguments";
parent: ContextValue | null;
children: ContextValue[];
autocompletingIndex: number;
}
export interface ArrayItem {
type: "array_item";
parent: ContextValue | null;
children: ContextValue[];
hasKey: boolean;
autocompletingValue: boolean;
key: StringValue;
value: ContextValue;
}
export interface ArrayValue {
type: "array";
parent: ContextValue | null;
children: ArrayItem[];
}
export interface Assignment {
type: "assignment";
parent: ContextValue | null;
name: string | null;
value: AssignmentValue[];
}
export interface AssignmentValue {
type: "assignment_value";
parent: ContextValue | null;
children: ContextValue[];
}
export interface Base {
type: "base";
parent: ContextValue | null;
children: ContextValue[];
}
export interface ClassDefinition {
type: "classDefinition";
parent: ContextValue | null;
children: ContextValue[];
className: string | null;
extends: string | null;
implements: string[];
properties: {
name: string;
types: string[];
}[];
}
export interface ClosureValue {
type: "closure";
parent: ContextValue | null;
children: ContextValue[];
parameters: Parameters;
}
export interface MethodCall {
type: "methodCall";
parent: ContextValue | null;
children: ContextValue[];
methodName: string | null;
className: string | null;
arguments: Arguments;
}
export interface MethodDefinition {
type: "methodDefinition";
parent: ContextValue | null;
children: ContextValue[];
parameters: Parameters;
methodName: string | null;
}
export interface ObjectValue {
type: "object";
parent: ContextValue | null;
children: ContextValue[];
className: string | null;
arguments: Arguments;
}
export interface Parameter {
type: "parameter";
parent: ContextValue | null;
name: string | null;
types: string[];
}
export interface ParameterValue {
type: "parameter_value";
parent: ContextValue | null;
children: ContextValue[];
}
export interface Parameters {
type: "parameters";
parent: ContextValue | null;
children: ContextValue[];
}
export interface StringValue {
type: "string";
parent: ContextValue | null;
value: string;
start?: {
line: number;
column: number;
};
end?: {
line: number;
column: number;
};
}
export interface Variable {
type: "variable";
parent: ContextValue | null;
name: string | null;
}
}