class Treetop::Runtime::CompiledParser

Public Instance Methods

parse(*args) click to toggle source
# File lib/harby/ext/compiled_parser.rb, line 7
def parse(*args)
  result = parse_without_reference(*args)
  if delegate && result.respond_to?(:delegate=)
    result.delegate = delegate
  end
  result
end
Also aliased as: parse_without_reference
parse_without_reference(*args)
Alias for: parse