class Parser::Base

def reset


Resets the state of the parser.
#
def reset
  @source_buffer = nil
  @lexer.reset
  @static_env.reset
  @context.reset
  @current_arg_stack.reset
  @pattern_variables.reset
  @pattern_hash_keys.reset
  self
end