Sha256: 6d27b9aef67f5f7211d7e2823192bea48ac4352e3fd191bb617f5966dd189feb
Contents?: true
Size: 924 Bytes
Versions: 5
Compression:
Stored size: 924 Bytes
Contents
# encoding: utf-8 module Textpow class DebugProcessor def initialize @line_number = 0 @printable_line = "" end def pprint line, string, position = 0 line.replace line.ljust( position + string.size, " ") line[position,string.size] = string line end def open_tag name, position STDERR.puts pprint( "", "{#{name}", position + @line_marks.size) end def close_tag name, position STDERR.puts pprint( "", "}#{name}", position + @line_marks.size) end def new_line line @line_number += 1 @line_marks = "[#{@line_number.to_s.rjust( 4, '0' )}] " STDERR.puts "#{@line_marks}#{line}" end def start_parsing name STDERR.puts "{#{name}" end def end_parsing name STDERR.puts "}#{name}" end end end
Version data entries
5 entries across 5 versions & 2 rubygems