Flowdock
racc_reduce(toks, sim, tstack, vstack) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/racc/parser.rb, line 384
    def racc_reduce(toks, sim, tstack, vstack)
      out = @racc_debug_out
      out.print 'reduce '
      if toks.empty?
        out.print ' <none>'
      else
        toks.each {|t| out.print ' ', racc_token2str(t) }
      end
      out.puts " --> #{racc_token2str(sim)}"

      racc_print_stacks tstack, vstack
      @racc_debug_out.puts
    end
Register or log in to add new notes.