class DTBLex

Public Instance Methods

show() click to toggle source
# File lib/rbdtb.rb, line 74
def show()
  while tok = self.next do
      puts "#{tok.type} -> #{tok.value}"
  end
end