class TypeProf::LSP::Message::TextDocument::DidClose
textDocument/willSave notification textDocument/willSaveWaitUntil request textDocument/didSave notification
Constants
- METHOD
Public Instance Methods
run()
click to toggle source
# File typeprof-0.30.1/lib/typeprof/lsp/messages.rb, line 164 def run @params => { textDocument: { uri: } } text = @server.open_texts.delete(uri) return unless text @server.core.update_file(text.path, nil) end