Class: RubyLsp::Document::Edit Abstract
- Inherits:
-
Object
- Object
- RubyLsp::Document::Edit
- Defined in:
- lib/ruby_lsp/document.rb
Overview
This class is abstract.
Instance Attribute Summary collapse
-
#range ⇒ Object
readonly
: Hash[Symbol, untyped].
Instance Method Summary collapse
-
#initialize(range) ⇒ Edit
constructor
: (Hash[Symbol, untyped] range) -> void.
Constructor Details
#initialize(range) ⇒ Edit
: (Hash[Symbol, untyped] range) -> void
168 169 170 |
# File 'lib/ruby_lsp/document.rb', line 168 def initialize(range) @range = range end |
Instance Attribute Details
#range ⇒ Object (readonly)
: Hash[Symbol, untyped]
165 166 167 |
# File 'lib/ruby_lsp/document.rb', line 165 def range @range end |