class Sass::Source::Map
def shift_output_lines(delta)
-
delta
(Integer
) -- The number of lines to shift the ranges forward.
def shift_output_lines(delta) return if delta == 0 @data.each do |m| m.output.start_pos.line += delta m.output.end_pos.line += delta end end