Class: Spoom::LSP::Range
- Inherits:
-
T::Struct
- Object
- T::Struct
- Spoom::LSP::Range
- 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
Instance Method Details
#accept_printer(printer) ⇒ Object
100 101 102 103 104 |
# File 'lib/spoom/sorbet/lsp/structures.rb', line 100 def accept_printer(printer) printer.print_object(start) printer.print_colored("-", Color::LIGHT_BLACK) printer.print_object(self.end) end |
#to_s ⇒ Object
107 108 109 |
# File 'lib/spoom/sorbet/lsp/structures.rb', line 107 def to_s "#{start}-#{self.end}" end |