Source file completion.ml
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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
open Std
open Browse_raw
open Extend_protocol.Reader
let { Logger.log } = Logger.for_section "Completion"
type raw_info =
[ `Constructor of Types.constructor_description
| `Modtype of Types.module_type
| `Modtype_declaration of Ident.t * Types.modtype_declaration
| `None
| `String of string
| `Type_declaration of Ident.t * Types.type_declaration
| `Type_scheme of Types.type_expr
| `Variant of string * Types.type_expr option ]
let raw_info_printer : raw_info -> _ = function
| `Constructor c -> `Print (Out_type (Browse_misc.print_constructor c))
| `Modtype mt -> `Print (Out_module_type (Printtyp.tree_of_modtype mt))
| `Modtype_declaration (id, mtd) ->
`Print (Out_sig_item (Printtyp.tree_of_modtype_declaration id mtd))
| `None -> `String ""
| `String s -> `String s
| `Type_declaration (id, tdecl) ->
`Print
(Out_sig_item
(Printtyp.tree_of_type_declaration id tdecl Types.Trec_first))
| `Type_scheme te -> `Print (Out_type (Printtyp.tree_of_type_scheme te))
| `Variant (label, arg) -> begin
match arg with
| None -> `String label
| Some te ->
`Concat (label ^ " of ", Out_type (Printtyp.tree_of_type_scheme te))
end
let lookup_env f x env =
try Some (f x env) with Not_found | Env.Error _ -> None
let rec methods_of_type env ?(acc = []) type_expr =
let open Types in
match get_desc type_expr with
| Tlink type_expr | Tobject (type_expr, _) | Tpoly (type_expr, _) ->
methods_of_type env ~acc type_expr
| Tfield (name, _, ty, rest) ->
methods_of_type env ~acc:((name, ty) :: acc) rest
| Tconstr (path, _, _) -> begin
match lookup_env Env.find_type path env with
| None | Some { type_manifest = None; _ } -> acc
| Some { type_manifest = Some type_expr; _ } ->
methods_of_type env ~acc type_expr
end
| _ -> acc
let classify_node = function
| Dummy -> `Expression
| Pattern _ -> `Pattern
| Expression _ -> `Expression
| Case _ -> `Pattern
| Class_expr _ -> `Expression
| Class_structure _ -> `Expression
| Class_field _ -> `Expression
| Class_field_kind _ -> `Expression
| Binding_op _ -> `Expression
| Module_expr _ -> `Module
| Module_type_constraint _ -> `Module_type
| Structure _ -> `Structure
| Structure_item _ -> `Structure
| Module_binding _ -> `Module
| Value_binding _ -> `Type
| Module_type _ -> `Module_type
| Signature _ -> `Signature
| Signature_item _ -> `Signature
| Module_declaration _ -> `Module
| Module_type_declaration _ -> `Module_type
| With_constraint _ -> `Type
| Core_type _ -> `Type
| Package_type _ -> `Module_type
| Row_field _ -> `Expression
| Value_description _ -> `Type
| Type_declaration _ -> `Type
| Type_kind _ -> `Type
| Type_extension _ -> `Type
| Extension_constructor _ -> `Type
| Label_declaration _ -> `Type
| Constructor_declaration _ -> `Type
| Class_type _ -> `Type
| Class_signature _ -> `Type
| Class_type_field _ -> `Type
| Class_declaration _ -> `Expression
| Class_description _ -> `Type
| Class_type_declaration _ -> `Type
| Method_call _ -> `Expression
| Record_field (`Expression _, _, _) -> `Expression
| Record_field (`Pattern _, _, _) -> `Pattern
| Module_binding_name _ -> `Module
| Module_declaration_name _ -> `Module
| Module_type_declaration_name _ -> `Module_type
| Open_description _ -> `Module
| Open_declaration _ -> `Module
| Include_declaration _ -> `Module
| Include_description _ -> `Module
open Query_protocol.Compl
let map_entry f entry = { entry with desc = f entry.desc; info = f entry.info }
let make_candidate ~get_doc ~attrs ~exact ~prefix_path name ?loc ?path ty =
let ident =
match path with
| Some path ->
Ident.create_persistent (Path.last path)
| None -> Extension.ident
in
let kind, text =
match ty with
| `Value v -> (`Value, `Type_scheme v.Types.val_type)
| `Cons c -> (`Constructor, `Constructor c)
| `Label label_descr ->
let desc =
Types.(
Tarrow
( Ast_helper.no_label,
label_descr.lbl_res,
label_descr.lbl_arg,
commu_ok ))
in
(`Label, `Type_scheme (Btype.newgenty desc))
| `Label_decl (ty, label_decl) ->
let desc =
Types.(Tarrow (Ast_helper.no_label, ty, label_decl.ld_type, commu_ok))
in
(`Label, `Type_scheme (Btype.newgenty desc))
| `Mod m -> begin
try
if not exact then raise Exit;
let verbosity =
Mconfig.Verbosity.to_int !Type_utils.verbosity ~for_smart:1
in
if Type_utils.mod_smallerthan (1000 * verbosity) m = None then
raise Exit;
(`Module, `Modtype m)
with Exit -> (`Module, `None)
end
| `ModType m ->
if exact then
(`Modtype, `Modtype_declaration (ident, m))
else (`Modtype, `None)
| `Typ t -> (`Type, `Type_declaration (ident, t))
| `Variant (label, arg) -> (`Variant, `Variant (label, arg))
in
let name =
match prefix_path with
| None -> name
| Some _ -> Misc_utils.parenthesize_name name
in
let desc =
match kind with
| `Module | `Modtype -> `None
| _ -> text
in
let info =
match (Type_utils.read_doc_attributes attrs, get_doc, kind) with
| Some (str, _), _, _ -> `String str
| None, _, (`Module | `Modtype) -> text
| None, None, _ -> `None
| None, Some get_doc, kind -> (
match (path, loc) with
| Some p, Some loc ->
let namespace =
match kind with
| `Value -> `Vals
| `Type -> `Type
| _ -> assert false
in
begin
match get_doc (`Completion_entry (namespace, p, loc)) with
| `Found str -> `String str
| _ -> `None
| exception _ -> `None
end
| _, _ -> `None)
in
let deprecated = Type_utils.is_deprecated attrs in
{ name; kind; desc; info; deprecated }
let item_for_global_module name =
{ name; kind = `Module; desc = `None; info = `None; deprecated = false }
let fold_variant_constructors ~env ~init ~f =
let rec aux acc t =
match Types.get_desc t with
| Types.Tvariant row ->
let row_fields = Types.row_fields row in
let row_more = Types.row_more row in
let acc =
let keep_if_present acc (lbl, row_field) =
let row_field = Types.row_field_repr row_field in
match row_field with
| Types.Rpresent arg when lbl <> "" -> f ("`" ^ lbl) arg acc
| Types.Reither (_, lst, _) when lbl <> "" ->
let arg =
match lst with
| [ well_typed ] -> Some well_typed
| _ -> None
in
f ("`" ^ lbl) arg acc
| _ -> acc
in
List.fold_left ~init:acc row_fields ~f:keep_if_present
in
aux acc row_more
| Types.Tconstr _ ->
let t' =
try Ctype.full_expand env ~may_forget_scope:true t with _ -> t
in
if
Types.TransientTypeOps.equal
(Types.Transient_expr.repr t)
(Types.Transient_expr.repr t')
then acc
else aux acc t'
| _ -> acc
in
aux init
let fold_sumtype_constructors ~env ~init ~f t =
let t = Types.Transient_expr.repr t in
match t.desc with
| Tconstr (path, _, _) ->
log ~title:"fold_sumtype_constructors" "node type: %s" (Path.name path);
begin
match Env.find_type_descrs path env with
| exception Not_found -> init
| Type_record _ | Type_abstract | Type_open -> init
| Type_variant (constrs, _) -> List.fold_right constrs ~init ~f
end
| _ -> init
let get_candidates ?get_doc ?target_type ?prefix_path ~prefix kind ~validate env
branch =
let cstr_attributes c = c.Types.cstr_attributes in
let val_attributes v = v.Types.val_attributes in
let type_attributes t = t.Types.type_attributes in
let lbl_attributes l = l.Types.lbl_attributes in
let mtd_attributes t = t.Types.mtd_attributes in
let md_attributes t = t.Types.md_attributes in
let make_candidate ~attrs ~exact name ?loc ?path ty =
make_candidate ~get_doc ~prefix_path ~attrs ~exact name ?loc ?path ty
in
let make_weighted_candidate ?(priority = 0) ~attrs ~exact name ?loc ?path ty =
let time = try Path.scope (Option.get path) with _ -> 0 in
let item = make_candidate ~attrs ~exact name ?loc ?path ty in
((-priority, -time, name), item)
in
let is_internal name = name = "" || name.[0] = '_' in
let items =
let snap = Btype.snapshot () in
let rec arrow_arity n t =
match Types.get_desc t with
| Types.Tarrow (_, _, rhs, _) -> arrow_arity (n + 1) rhs
| _ -> n
in
let rec nth_arrow n t =
if n <= 0 then t
else
match Types.get_desc t with
| Types.Tarrow (_, _, rhs, _) -> nth_arrow (n - 1) rhs
| _ -> t
in
let type_check =
match target_type with
| None -> fun _ -> 0
| Some ty ->
let arity = arrow_arity 0 ty in
fun scheme ->
let cost =
let c = Types.linked_variables in
try
let c' = c () in
Ctype.unify_var env ty (Ctype.instance scheme);
c () - c'
with _ ->
let arity = arrow_arity (-arity) scheme in
if arity > 0 then begin
let c' = c () in
Btype.backtrack snap;
let ty' = Ctype.instance scheme in
let ty' = nth_arrow arity ty' in
try
Ctype.unify_var env ty ty';
arity + c () - c'
with _ -> 1000
end
else 1000
in
Btype.backtrack snap;
1000 - cost
in
let of_kind = function
| `Keywords -> []
| `Variants ->
let add_variant name param candidates =
if not @@ validate `Variant `Variant name then candidates
else
make_weighted_candidate name ~exact:false ~priority:2 ~attrs:[]
(`Variant (name, param))
:: candidates
in
let result =
match target_type with
| None -> []
| Some t -> fold_variant_constructors t ~init:[] ~f:add_variant ~env
in
let result =
match branch with
| _ :: (_, Expression { Typedtree.exp_type = t; _ }) :: _
| (_, Expression { Typedtree.exp_type = t; _ }) :: _ ->
fold_variant_constructors t ~init:result ~f:add_variant ~env
| _ -> result
in
result
| `Values ->
let type_check { Types.val_type; _ } = type_check val_type in
Env.fold_values
(fun name path v candidates ->
if not (validate `Lident `Value name) then candidates
else
let priority = if is_internal name then 0 else type_check v in
make_weighted_candidate ~exact:(name = prefix) name ~priority
~path ~attrs:(val_attributes v) (`Value v) ~loc:v.Types.val_loc
:: candidates)
prefix_path env []
| `Constructor ->
let type_check { Types.cstr_res; _ } = type_check cstr_res in
let consider_constr constr candidates =
let name = constr.Types.cstr_name in
if not @@ validate `Lident `Cons name then candidates
else
let priority = if is_internal name then 0 else type_check constr in
make_weighted_candidate ~exact:(name = prefix) name (`Cons constr)
~priority ~attrs:(cstr_attributes constr)
:: candidates
in
let in_scope_candidates =
Env.fold_constructors consider_constr prefix_path env []
in
begin
match (prefix_path, target_type) with
| Some _, _ | _, None -> in_scope_candidates
| None, Some ty ->
fold_sumtype_constructors ~env ~init:in_scope_candidates
~f:consider_constr ty
end
| `Types ->
Env.fold_types
(fun name path decl candidates ->
if not @@ validate `Lident `Typ name then candidates
else
make_weighted_candidate ~exact:(name = prefix) name ~path
(`Typ decl) ~loc:decl.Types.type_loc
~attrs:(type_attributes decl)
:: candidates)
prefix_path env []
| `Modules ->
Env.fold_modules
(fun name path v candidates ->
let attrs = md_attributes v in
let v = v.Types.md_type in
if not @@ validate `Uident `Mod name then candidates
else
make_weighted_candidate ~exact:(name = prefix) name ~path (`Mod v)
~attrs
:: candidates)
prefix_path env []
| `Modules_type ->
Env.fold_modtypes
(fun name path v candidates ->
if not @@ validate `Uident `Mod name then candidates
else
make_weighted_candidate ~exact:(name = prefix) name ~path
(`ModType v) ~attrs:(mtd_attributes v)
:: candidates)
prefix_path env []
| `Labels ->
Env.fold_labels
(fun ({ Types.lbl_name = name; _ } as l) candidates ->
if not (validate `Lident `Label name) then candidates
else
make_weighted_candidate ~exact:(name = prefix) name (`Label l)
~attrs:(lbl_attributes l)
:: candidates)
prefix_path env []
in
let of_kind_group = function
| #Query_protocol.Compl.kind as k -> of_kind k
| `Group kinds -> List.concat_map ~f:of_kind kinds
in
try of_kind_group kind
with exn ->
log ~title:"get_candidates/of_kind" "Failed with exception: %a" Logger.exn
exn;
[]
in
let items = List.sort items ~cmp:(fun (a, _) (b, _) -> compare a b) in
let items = List.rev_map ~f:snd items in
items
let gen_values = `Group [ `Values; `Constructor ]
let default_kinds = [ `Variants; gen_values; `Types; `Modules; `Modules_type ]
let completion_order = function
| `Expression -> [ `Variants; gen_values; `Types; `Modules; `Modules_type ]
| `Structure -> [ gen_values; `Types; `Modules; `Modules_type ]
| `Pattern ->
[ `Variants;
`Constructor;
`Modules;
`Labels;
`Values;
`Types;
`Modules_type
]
| `Module -> [ `Modules; `Modules_type; `Types; gen_values ]
| `Module_type -> [ `Modules_type; `Modules; `Types; gen_values ]
| `Signature -> [ `Types; `Modules; `Modules_type; gen_values ]
| `Type -> [ `Types; `Modules; `Modules_type; gen_values ]
type kinds = [ kind | `Group of kind list ] list
let complete_methods ~env ~prefix obj =
let t = obj.Typedtree.exp_type in
let has_prefix (name, _) =
String.is_prefixed ~by:prefix name
&&
try
ignore (String.index name ' ' : int);
false
with Not_found -> true
in
let methods = List.filter ~f:has_prefix (methods_of_type env t) in
List.map methods ~f:(fun (name, ty) ->
let info = `None in
{ name;
kind = `MethodCall;
desc = `Type_scheme ty;
info;
deprecated = false
})
type is_label =
[ `No
| `Maybe
| `Description of Types.label_description list
| `Declaration of Types.type_expr * Types.label_declaration list ]
let complete_prefix ?get_doc ?target_type ?(kinds = []) ~keywords ~prefix
~is_label config (env, node) branch =
Env.with_cmis @@ fun () ->
let seen = Hashtbl.create 7 in
let uniq n =
if Hashtbl.mem seen n then false
else (
Hashtbl.add seen n ();
true)
in
let make_candidate ~attrs ~exact name ?loc ?path ty =
make_candidate ~get_doc ~attrs ~exact name ?loc ?path ty
in
let find ?prefix_path ~is_label prefix =
let valid tag name =
let no_leak () =
List.for_all
~f:(fun by -> not (String.is_prefixed ~by name))
[ "self-"; "selfpat-"; "*type-" ]
in
String.is_prefixed ~by:prefix name && uniq (tag, name) && no_leak ()
in
let validate ident tag name =
(if ident = `Uident then
name <> ""
&& name.[0] <> '_'
&& (String.no_double_underscore name || tag <> `Mod)
else name <> "_")
&& valid tag name
in
let add_label_description ({ Types.lbl_name = name; _ } as l) candidates =
if not (valid `Label name) then candidates
else
make_candidate ~prefix_path ~exact:(name = prefix) name (`Label l)
~attrs:[]
:: candidates
in
let add_label_declaration ty ({ Types.ld_id = name; _ } as l) candidates =
let name = Ident.name name in
if not (valid `Label name) then candidates
else
make_candidate ~prefix_path ~exact:(name = prefix) name
(`Label_decl (ty, l))
~attrs:[]
:: candidates
in
let base_completion =
match (is_label : is_label) with
| `No -> []
| `Maybe -> Env.fold_labels add_label_description prefix_path env []
| `Description lbls ->
List.fold_right ~f:add_label_description lbls ~init:[]
| `Declaration (ty, decls) ->
List.fold_right ~f:(add_label_declaration ty) decls ~init:[]
in
if base_completion = [] then
let order =
if kinds = [] then
let kind = classify_node node in
completion_order kind
else (kinds : kind list :> kinds)
in
let add_completions acc kind =
get_candidates ?get_doc ?target_type ?prefix_path ~prefix kind ~validate
env branch
:: acc
in
List.fold_left ~f:add_completions order ~init:[] |> List.concat
else base_completion
in
try
match prefix with
| Longident.Ldot (prefix_path, prefix) -> find ~prefix_path ~is_label prefix
| Longident.Lident prefix ->
let compl = find ~is_label prefix in
let compl =
if not (List.mem `Keywords ~set:kinds) then compl
else
List.fold_left keywords ~init:compl ~f:(fun candidates name ->
if String.is_prefixed ~by:prefix name then
{ name;
kind = `Keyword;
desc = `None;
info = `None;
deprecated = false
}
:: candidates
else candidates)
in
List.fold_left (Mconfig.global_modules config) ~init:compl
~f:(fun candidates name ->
if not (String.no_double_underscore name) then candidates
else
let default =
{ name;
kind = `Module;
desc = `None;
info = `None;
deprecated = false
}
in
if name = prefix && uniq (`Mod, name) then
try
let path, md, attrs =
Type_utils.lookup_module (Longident.Lident name) env
in
make_candidate ~prefix_path:(Some prefix) ~exact:true ~path name
(`Mod md) ~attrs
:: candidates
with Not_found -> default :: candidates
else if String.is_prefixed ~by:prefix name && uniq (`Mod, name) then
default :: candidates
else candidates)
| _ -> find ~is_label (String.concat ~sep:"." @@ Longident.flatten prefix)
with Not_found -> []
let branch_complete buffer ?get_doc ?target_type ?kinds ~keywords prefix =
function
| [] -> []
| (env, node) :: branch -> (
match node with
| Method_call (obj, _, _) -> complete_methods ~env ~prefix obj
| Pattern { Typedtree.pat_desc = Typedtree.Tpat_record _; pat_type = t; _ }
| Expression
{ Typedtree.exp_desc = Typedtree.Texp_record _; exp_type = t; _ } ->
let is_label =
try
match Types.get_desc t with
| Types.Tconstr (p, _, _) -> (
match (Env.find_type p env).Types.type_kind with
| Types.Type_record (labels, _) -> `Declaration (t, labels)
| _ -> `Maybe)
| _ -> `Maybe
with _ -> `Maybe
in
let prefix, _is_label = Longident.(keep_suffix @@ parse prefix) in
complete_prefix ?get_doc ?target_type ?kinds ~keywords ~prefix ~is_label
buffer (env, node) branch
| Record_field (parent, lbl, _) ->
let prefix, _is_label = Longident.(keep_suffix @@ parse prefix) in
let snap = Btype.snapshot () in
let is_label =
match lbl.Types.lbl_all with
| [||] -> begin
match
let ty =
match parent with
| `Expression e -> e.Typedtree.exp_type
| `Pattern p -> p.Typedtree.pat_type
in
let decl = Ctype.extract_concrete_typedecl env ty in
(ty, decl)
with
| ty, Typedecl (p, _, decl) -> begin
try
let lbls = Datarepr.labels_of_type p decl in
let labels =
List.map lbls ~f:(fun (_, lbl) ->
try
let _, lbl_arg, lbl_res =
Ctype.instance_label false lbl
in
begin
try Ctype.unify_var env ty lbl_res with _ -> ()
end;
let lbl_res = Subst.type_expr Subst.identity lbl_res in
let lbl_arg = Subst.type_expr Subst.identity lbl_arg in
{ lbl with Types.lbl_res; lbl_arg }
with _ -> lbl)
in
`Description labels
with _ -> (
match decl.Types.type_kind with
| Types.Type_record (lbls, _) -> `Declaration (ty, lbls)
| _ -> `Maybe)
end
| _ | (exception _) -> `Maybe
end
| lbls -> `Description (Array.to_list lbls)
in
let result =
complete_prefix ?get_doc ?target_type ?kinds ~keywords ~prefix ~is_label
buffer (env, node) branch
in
Btype.backtrack snap;
result
| _ ->
let prefix, is_label = Longident.(keep_suffix @@ parse prefix) in
complete_prefix ?get_doc ?target_type ?kinds ~keywords ~prefix buffer
~is_label:(if is_label then `Maybe else `No)
(env, node) branch)
let expand_prefix ~global_modules ?(kinds = []) env prefix =
Env.with_cmis @@ fun () ->
let lidents, last =
let ts = Expansion.explore ~global_modules env in
Expansion.get_lidents ts prefix
in
let validate' =
let last = Expansion.spell_index last in
fun s -> Expansion.spell_match last s
in
let validate _ _ s = validate' s in
let kinds =
match kinds with
| [] -> default_kinds
| kinds -> (kinds : kind list :> kinds)
in
let process_prefix_path prefix_path =
let candidates =
let aux compl kind =
get_candidates ?prefix_path ~prefix:"" kind ~validate env [] :: compl
in
List.fold_left ~f:aux kinds ~init:[]
in
match prefix_path with
| None ->
let f name =
if not (validate' name) then None
else Some (item_for_global_module name)
in
candidates @ [ List.filter_map global_modules ~f ] |> List.flatten
| Some lident ->
let lident = Longident.flatten lident in
let lident = String.concat ~sep:"." lident ^ "." in
List.concat_map candidates
~f:
(List.map ~f:(fun c ->
{ c with name = lident ^ Misc_utils.parenthesize_name c.name }))
in
List.concat_map ~f:process_prefix_path lidents
open Typedtree
let labels_of_application ~prefix = function
| { exp_desc = Texp_apply (f, args); exp_env; _ } ->
let rec labels t =
match Types.get_desc t with
| Types.Tarrow (label, lhs, rhs, _) -> (label, lhs) :: labels rhs
| _ ->
let t' = Ctype.full_expand ~may_forget_scope:true exp_env t in
if
Types.TransientTypeOps.equal
(Types.Transient_expr.repr t)
(Types.Transient_expr.repr t')
then []
else labels t'
in
let labels = labels f.exp_type in
let is_application_of label (label', expr) =
match expr with
| Some { exp_loc = { Location.loc_ghost; loc_start; loc_end }; _ } ->
label = label'
&& Btype.prefixed_label_name label <> prefix
&& (not loc_ghost)
&& not (loc_start = loc_end)
| None -> false
in
List.filter_map
~f:(fun (label, ty) ->
match label with
| Asttypes.Nolabel -> None
| label when List.exists ~f:(is_application_of label) args -> None
| Asttypes.Labelled str -> Some ("~" ^ str, ty)
| Asttypes.Optional str ->
let ty =
match Types.get_desc ty with
| Types.Tconstr (path, [ ty ], _)
when Path.same path Predef.path_option -> ty
| _ -> ty
in
Some ("?" ^ str, ty))
labels
| _ -> []
let application_context ~prefix path =
let module Printtyp = Type_utils.Printtyp in
let target_type =
ref
(match snd (List.hd path) with
| Expression { exp_type = ty; _ } | Pattern { pat_type = ty; _ } ->
Some ty
| _ -> None)
in
let context =
match path with
| (_, Expression earg)
:: (_, Expression ({ exp_desc = Texp_apply (efun, _); _ } as app))
:: _
when earg != efun ->
Printtyp.reset ();
let pr t =
let ppf, to_string = Format.to_string () in
Printtyp.shared_type_scheme ppf t;
to_string ()
in
let earg =
match Mbrowse.optional_label_sugar earg.exp_desc with
| None -> earg
| Some earg ->
target_type := Some earg.exp_type;
earg
in
let labels = labels_of_application ~prefix app in
`Application
{ argument_type = pr earg.exp_type;
labels = List.map ~f:(fun (lbl, ty) -> (lbl, pr ty)) labels
}
| _ -> `Unknown
in
(!target_type, context)