class RefParsers::LineParser::ParsingInfoDetail

Attributes

action[RW]
current_line[RW]
first_line[RW]
is_empty[RW]
is_eof_found[RW]
is_terminator_found[RW]
is_type_found[RW]
parsed[RW]

Public Class Methods

new() click to toggle source
# File lib/ref_parsers/line_parser.rb, line 117
def initialize()
  @current_line = 0
  @first_line = 0
  @is_type_found = false
  @is_empty = false
  @is_terminator_found = false
  @is_eof_found = false
  @action = nil
end

Public Instance Methods

next_line() click to toggle source
# File lib/ref_parsers/line_parser.rb, line 113
def next_line
  return @current_line + 1 
end