# File lib/multi_xml/parsers/ox.rb, line 62 def start_element(name) if @stack.empty? @stack.push(Hash.new) end h = Hash.new append(name, h) @stack.push(h) end