Method: Lines#write_nonmatching

Defined in:
lib/glark/output/lines.rb

#write_nonmatching(from, to) ⇒ Object



62
63
64
65
66
67
68
# File 'lib/glark/output/lines.rb', line 62

def write_nonmatching from, to
  (from .. to).each do |ln|
    next if @stati.is_written?(ln) || @stati.char(ln) == ':'
    print_line ln 
    @stati.set_as_written ln
  end
end