module JSON

def parser=(parser) # :nodoc:

:nodoc:
Set the JSON parser class _parser_ to be used by JSON.
def parser=(parser) # :nodoc:
  @parser = parser
  remove_const :Parser if const_defined?(:Parser, false)
  const_set :Parser, parser
end