class SuperDiff::Csi::Document::Request
Attributes
name[R]
Public Class Methods
new(name:, line:)
click to toggle source
# File lib/super_diff/csi/document.rb, line 144 def initialize(name:, line:) @name = name @line = line end
Protected Instance Methods
for_line?()
click to toggle source
# File lib/super_diff/csi/document.rb, line 153 def for_line? @line end
wrapper()
click to toggle source
# File lib/super_diff/csi/document.rb, line 157 def wrapper if for_line? :line else :text end end