Class: Spoom::LSP::Position

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



50
51
52
53
54
55
# File 'lib/spoom/sorbet/lsp/structures.rb', line 50

def self.from_json(json)
  Position.new(
    line: json['line'].to_i,
    char: json['character'].to_i
  )
end

Instance Method Details

#accept_printer(printer) ⇒ Object



58
59
60
# File 'lib/spoom/sorbet/lsp/structures.rb', line 58

def accept_printer(printer)
  printer.print_colored("#{line}:#{char}", :light_black)
end

#to_sObject



62
63
64
# File 'lib/spoom/sorbet/lsp/structures.rb', line 62

def to_s
  "#{line}:#{char}"
end