Class: BaseFormater

Inherits:
Object
  • Object
show all
Defined in:
lib/saikuro.rb

Direct Known Subclasses

ParseStateFormater, TokenCounterFormater

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(out, filter = nil) ⇒ BaseFormater

Returns a new instance of BaseFormater.



610
611
612
613
614
# File 'lib/saikuro.rb', line 610

def initialize(out, filter = nil)
  @out = out
  @filter = filter
  reset_data
end

Instance Attribute Details

#currentObject

Returns the value of attribute current.



608
609
610
# File 'lib/saikuro.rb', line 608

def current
  @current
end

#errorsObject

Returns the value of attribute errors.



608
609
610
# File 'lib/saikuro.rb', line 608

def errors
  @errors
end

#warningsObject

Returns the value of attribute warnings.



608
609
610
# File 'lib/saikuro.rb', line 608

def warnings
  @warnings
end

Instance Method Details

#reset_dataObject



630
631
632
633
634
# File 'lib/saikuro.rb', line 630

def reset_data
  @warnings = Array.new
  @errors = Array.new
  @current = ""
end

#warn_error?(num, marker) ⇒ Boolean

Returns:

  • (Boolean)


616
617
618
619
620
621
622
623
624
625
626
627
628
# File 'lib/saikuro.rb', line 616

def warn_error?(num, marker)
  klass = ""

  if @filter.error?(num)
    klass = ' class="error"'
    @errors<< [@current, marker, num]
  elsif @filter.warn?(num)
    klass = ' class="warning"'
    @warnings<< [@current, marker, num]
  end

  klass
end