Methods

Dhaka::ParserMethods

This module is included both in Parser and CompiledParser.

Public Instance Methods

parse(token_stream) click to toggle source

token_stream is an Enumerable of Token-s. Returns either a ParseSuccessResult or a ParseErrorResult.

# File lib/dhaka/parser/parser_methods.rb, line 6
def parse token_stream
  parser_run = ParserRun.new(grammar, start_state, token_stream)
  parser_run.run
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.