Skip to content

Commit

Permalink
feat: add doc string support
Browse files Browse the repository at this point in the history
WIP
  • Loading branch information
rtetley committed Jan 20, 2025
1 parent 8333f37 commit 1439af4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions language-server/dm/document.ml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ type document = {
sentences_by_end : sentence LM.t;
parsing_errors_by_end : parsing_error LM.t;
comments_by_end : comment LM.t;
hover_info : HoverInfo.t;
schedule : Scheduler.schedule;
outline : outline;
parsed_loc : int;
Expand Down Expand Up @@ -676,6 +677,7 @@ let create_document init_synterp_state text =
outline = [];
init_synterp_state;
cancel_handle = None;
hover_info = HoverInfo.empty ();
}

let apply_text_edit document edit =
Expand Down

0 comments on commit 1439af4

Please sign in to comment.