-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathCompletion.res
377 lines (287 loc) · 6 KB
/
Completion.res
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
module MyList = Belt.List
// MyList.m
// ^com
// Array.
// ^com
// Array.m
// ^com
module Dep: {
@ocaml.doc("Some doc comment") @deprecated("Use customDouble instead")
let customDouble: int => int
} = {
let customDouble = foo => foo * 2
}
// let cc = Dep.c
// ^com
module Lib = {
let foo = (~age, ~name) => name ++ string_of_int(age)
let next = (~number=0, ~year) => number + year
}
// let x = Lib.foo(~
// ^com
// [1,2,3]->m
// ^com
// "abc"->toU
// ^com
let op = Some(3)
// op->e
// ^com
module ForAuto = {
type t = int
let abc = (x: t, _y: int) => x
let abd = (x: t, _y: int) => x
}
let fa: ForAuto.t = 34
// fa->
// ^com
// "hello"->Js.Dict.u
// ^com
module O = {
module Comp = {
@react.component
let make = (~first="", ~zoo=3, ~second) => React.string(first ++ second ++ string_of_int(zoo))
}
}
let zzz = 11
// let comp = <O.Comp second=z
// ^com
// let comp = <O.Comp z
// ^com
// @reac
// ^com
// @react.
// ^com
// let x = Lib.foo(~name, ~
// ^com
// let x = Lib.foo(~age, ~
// ^com
// let x = Lib.foo(~age={3+4}, ~
// ^com
let _ = Lib.foo(
//~age,
//~
// ^com
~age=3,
~name="",
)
let someObj = {"name": "a", "age": 32}
// someObj["a
// ^com
let nestedObj = {"x": {"y": {"name": "a", "age": 32}}}
// nestedObj["x"]["y"]["
// ^com
let o: Obj.objT = assert false
// o["a
// ^com
type nestedObjT = {"x": Obj.nestedObjT}
let no: nestedObjT = assert false
// no["x"]["y"]["
// ^com
type r = {x: int, y: string}
type rAlias = r
let r: rAlias = assert false
// r.
// ^com
// Obj.Rec.recordVal.
// ^com
let myAmazingFunction = (x, y) => x + y
@react.component
let make = () => {
// my
// ^com
<> </>
}
// Obj.object["
// ^com
let foo = {
let x = {
3
}
let y = 4
let add = (a, b) =>
switch a {
| 3 => a + b
| _ => 42
}
let z = assert false
let _ = z
module Inner = {
type z = int
let v = 44
}
exception MyException(int, string, float, array<Js.Json.t>)
let _ = raise(MyException(2, "", 1.0, []))
add((x: Inner.z), Inner.v + y)
}
exception MyOtherException
// <O.
// ^com
type aa = {x: int, name: string}
type bb = {aa: aa, w: int}
let q: bb = assert false
// q.aa.
// ^com
// q.aa.n
// ^com
// Lis
// ^com
module WithChildren = {
@react.component
let make = (~children, ~name as _: string) => <jsx> children </jsx>
}
// <WithChildren
// ^com
// type t = Js.n
// ^com
// type t = ForAuto.
// ^com
type z = Allo | Asterix | Baba
// let q = As
// ^com
// module M = For
// ^com
module Private = {
%%private(let awr = 3)
let b = awr
}
// Private.
// ^com
module Shadow = {
module A = {
let shadowed = 3
}
module B = {
let shadowed = ""
}
}
// sha
// ^com
open Shadow.A
// sha
// ^com
open Shadow.B
// sha
// ^com
let _ = shadowed
module FAR = {
type forAutoRecord = {forAuto: ForAuto.t, something: option<int>}
let forAutoRecord: forAutoRecord = assert false
}
module FAO = {
let forAutoObject = {"forAutoLabel": FAR.forAutoRecord, "age": 32}
}
// FAO.forAutoObject["
// ^com
// FAO.forAutoObject["forAutoLabel"].
// ^com
// FAO.forAutoObject["forAutoLabel"].forAuto->
// ^com
// FAO.forAutoObject["forAutoLabel"].forAuto->ForAuto.a
// ^com
let name = "abc"
// let template = `My name is ${na}`
// ^com
let notHere = " "
// ^com
let someR = Some(r)
let _ = switch someR {
| Some(_z) => 1
// + _z.
// ^com
| _ => 3
}
module SomeLocalModule = {
let aa = 10
let bb = 20
type zz = int
}
// let _ = SomeLo
// ^com
// type zz = SomeLocalModule.
// ^com
type record = {
someProp: string,
// otherProp: SomeLocalModule.
// ^com
thirdProp: string,
}
type someLocalVariant = SomeLocalVariantItem
// type t = SomeLocal
// ^com
// let _ : SomeLocal
// ^com
let _foo = _world => {
// let _ = _w
// ^com
3
}
type someType = {hello: string}
// type t = SomeType(s)
// ^com
type funRecord = {
someFun: (~name: string) => unit,
stuff: string,
}
let funRecord: funRecord = assert false
// let _ = funRecord.someFun(~ )
// ^com
let retAA = () => {x: 3, name: ""}
// retAA().
// ^com
let ff = (~opt1=0, ~a, ~b, (), ~opt2=0, (), ~c) => a + b + c + opt1 + opt2
// ff(~c=1)(~
// ^com
// ff(~c=1)()(~
// ^com
// ff(~c=1, ())(~
// ^com
// ff(~c=1, (), ())(~
// ^com
// ff(~c=1, (), ~b=1)(~
// ^com
// ff(~opt2=1)(~
// ^com
type callback = (~a: int) => int
let withCallback: (~b: int) => callback = (~b, ~a) => a + b
// withCallback(~
// ^com
// withCallback(~a)(~
// ^com
// withCallback(~b)(~
// ^com
let _ =
<div
onClick={_ => {
()
// let _: Res
// ^com
}}
name="abc">
{React.string(name)}
</div>
//let _ = switch Some(3) { | Some(thisIsNotSaved) -> this
// ^com
let _ = <div name="" />
// ^hov
// let _ = FAO.forAutoObject["age"]
// ^hov
// let _ = ff(~opt1=3)
// ^hov
// (let _ = ff(~opt1=3))
// ^com
type v = This | That
let _ = x =>
switch x {
// | T
// ^com
| _ => 4
}
module AndThatOther = {
type v = And | ThatOther
}
let _ = x =>
switch x {
// | AndThatOther.T
// ^com
| _ => 4
}