Module: Holistic::Document::Unsaved
- Defined in:
- lib/holistic/document/unsaved/change.rb
Defined Under Namespace
Classes: Collection, Record
Constant Summary collapse
- Change =
::Data.define( :range_length, :text, :start_line, :start_column, :end_line, :end_column ) do def insertion? text.size.positive? && start_line == end_line && start_column == end_column end def deletion? text.empty? && (start_line != end_line || start_column != end_column) end def starts_on?(line, column) start_line == line && start_column == column end end