Flowdock
match(token) public

No documentation

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

Hide source
# File lib/irb/slex.rb, line 70
    def match(token)
      case token
      when Array
      when String
        return match(token.split(//))
      else
        return @head.match_io(token)
      end
      ret = @head.match(token)
      D_DETAIL.exec_if{D_DEATIL.printf "match end: %s:%s\n", ret, token.inspect}
      ret
    end
Register or log in to add new notes.