# File lib/puppet/transportable.rb, line 144
144:     def push(*args)
145:       args.each { |arg|
146:         case arg
147:         when Puppet::TransBucket, Puppet::TransObject
148:           # nada
149:         else
150:           raise Puppet::DevError,
151:             "TransBuckets cannot handle objects of type #{arg.class}"
152:         end
153:       }
154:       @children += args
155:     end