# File lib/facter/util/plist/parser.rb, line 51
51:     def tag_end(name)
52:       last = @open.pop
53:       if @open.empty?
54:         @result = last.to_ruby
55:       else
56:         @open.last.children.push last
57:       end
58:     end