# File lib/aws-sdk-core/xml/parser/frame.rb, line 138 def initialize(*args) super @result = [] @member_xml_name = @ref.shape.member.location_name || 'member' end
# File lib/aws-sdk-core/xml/parser/frame.rb, line 144 def child_frame(xml_name) if xml_name == @member_xml_name Frame.new(xml_name, self, @ref.shape.member) else raise NotImplementedError end end
# File lib/aws-sdk-core/xml/parser/frame.rb, line 152 def consume_child_frame(child) @result << child.result unless NullFrame === child end