# File lib/json/common.rb, line 141
  def parse!(source, opts = {})
    opts = {
      :max_nesting => false,
      :allow_nan => true
    }.update(opts)
    JSON.parser.new(source, opts).parse
  end