# File lib/json/common.rb, line 134
134:   def parse!(source, opts = {})
135:     opts = {
136:       :max_nesting => false,
137:       :allow_nan => true
138:     }.update(opts)
139:     JSON.parser.new(source, opts).parse
140:   end