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