Class: Spoom::LSP::Location

Inherits:
T::Struct
  • Object
show all
Extended by:
T::Sig
Includes:
PrintableSymbol
Defined in:
lib/spoom/sorbet/lsp/structures.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.from_json(json) ⇒ Object



100
101
102
103
104
105
# File 'lib/spoom/sorbet/lsp/structures.rb', line 100

def self.from_json(json)
  Location.new(
    uri: json['uri'],
    range: Range.from_json(json['range'])
  )
end

Instance Method Details

#accept_printer(printer) ⇒ Object



108
109
110
111
# File 'lib/spoom/sorbet/lsp/structures.rb', line 108

def accept_printer(printer)
  printer.print_colored("#{printer.clean_uri(uri)}:", :light_black)
  printer.print_object(range)
end

#to_sObject



113
114
115
# File 'lib/spoom/sorbet/lsp/structures.rb', line 113

def to_s
  "#{uri}:#{range}"
end