# File lib/puppet/parser/ast/astarray.rb, line 40
40:     def push(*ary)
41:       ary.each { |child|
42:         #Puppet.debug "adding %s(%s) of type %s to %s" %
43:         #    [child, child.object_id, child.class.to_s.sub(/.+::/,''),
44:         #    self.object_id]
45:         @children.push(child)
46:       }
47: 
48:       self
49:     end