(ctx context.Context)
| 813 | } |
| 814 | |
| 815 | func (s *Session) handleInitialize(ctx context.Context) (*InitializeResponse, error) { |
| 816 | return &InitializeResponse{ |
| 817 | UseCaseSensitiveFileNames: s.projectSession.FS().UseCaseSensitiveFileNames(), |
| 818 | CurrentDirectory: s.projectSession.GetCurrentDirectory(), |
| 819 | }, nil |
| 820 | } |
| 821 | |
| 822 | // handleUpdateSnapshot creates a new snapshot, optionally opening or closing |
| 823 | // projects and files. With no args, it adopts the latest LSP state. Opens and |
no test coverage detected