# File raramorph.rb, line 61
  def self.analyze(file_reader_in,output_buckwalter)
   # begin
     lines= IO.readlines(file_reader_in)
      lines.each do |line|
        @lines_counter+=1
        if(@verbose)
           puts "Processing line : "+ @lines_counter.to_s
        end
        tokens = tokenize(line)
        tokens.each do |token|
          analyze_token(token,output_buckwalter)
        end 
      end
    #rescue
    #  @stream.puts "Can not read line " + @lines_counter.to_s
    #end    
  end