ocaml-gist icon indicating copy to clipboard operation
ocaml-gist copied to clipboard

Get correct autocomplete result before overriding module

Open SanderSpies opened this issue 8 years ago • 0 comments

If I have a file with

let foo a = List.it<cursor is here>

module List = struct
  let iter b = b + 2
end

I expect autocomplete for the cursor to show all the values of the stdlib List.

Currently it will always show the newly implemented List.

SanderSpies avatar Jul 13 '17 11:07 SanderSpies