test.ml
merlin-lib.analysis
merlin-lib.commands
merlin-lib.config
merlin-lib.dot_protocol
merlin-lib.extend
merlin-lib.index_format
merlin-lib.kernel
merlin-lib.ocaml_compression
merlin-lib.ocaml_merlin_specific
merlin-lib.ocaml_parsing
merlin-lib.ocaml_preprocess
merlin-lib.ocaml_typing
merlin-lib.ocaml_utils
merlin-lib.os_ipc
merlin-lib.query_commands
merlin-lib.query_protocol
merlin-lib.sherlodoc
merlin-lib.utils
1 2 3 4 5 6 7 8 9 10 module Foo = struct type t = { foo : int; bar : int } let foo = "hello" end let _ = let foo = 10 in let bar = 10 in ({ Foo.foo; bar } : Foo.t)
1 2 3 4 5 6 7 8 9 10
module Foo = struct type t = { foo : int; bar : int } let foo = "hello" end let _ = let foo = 10 in let bar = 10 in ({ Foo.foo; bar } : Foo.t)