# File lib/aws-sdk-core/xml/parser/frame.rb, line 170 def initialize(*args) super @result = {} end
# File lib/aws-sdk-core/xml/parser/frame.rb, line 175 def child_frame(xml_name) if xml_name == 'entry' MapEntryFrame.new(self, @ref) else raise NotImplementedError end end
# File lib/aws-sdk-core/xml/parser/frame.rb, line 183 def consume_child_frame(child) @result[child.key.result] = child.value.result end