Sha256: f52ec349043bad40e5281bf76ee7e44f6726815ce661449b90fd95572b226f66

Contents?: true

Size: 1.37 KB

Versions: 61

Compression:

Stored size: 1.37 KB

Contents

require 'puppet/parser/ast/branch'

class Puppet::Parser::AST
  # The basic container class.  This object behaves almost identically
  # to a normal array except at initialization time.  Note that its name
  # is 'AST::ASTArray', rather than plain 'AST::Array'; I had too many
  # bugs when it was just 'AST::Array', because things like
  # 'object.is_a?(Array)' never behaved as I expected.
  class ASTArray < Branch
    include Enumerable

    # Return a child by index.  Probably never used.
    def [](index)
      @children[index]
    end

    # Evaluate our children.
    def evaluate(scope)
      result = []
      @children.each do |child|
        # Skip things that respond to :instantiate (classes, nodes,
        # and definitions), because they have already been
        # instantiated.
        if !child.respond_to?(:instantiate)
          item = child.safeevaluate(scope)
          if !item.nil?
            # nil values are implicitly removed.
            result.push(item)
          end
        end
      end
      result
    end

    def push(*ary)
      ary.each { |child|
        #Puppet.debug "adding %s(%s) of type %s to %s" %
        #    [child, child.object_id, child.class.to_s.sub(/.+::/,''),
        #    self.object_id]
        @children.push(child)
      }

      self
    end

    def to_s
      "[" + @children.collect { |c| c.to_s }.join(', ') + "]"
    end
  end
end

Version data entries

61 entries across 61 versions & 4 rubygems

Version Path
puppet-parse-0.1.4 lib/vendor/puppet/parser/ast/astarray.rb
puppet-parse-0.1.3 lib/vendor/puppet/parser/ast/astarray.rb
puppet-parse-0.1.2 lib/vendor/puppet/parser/ast/astarray.rb
puppet-parse-0.1.1 lib/vendor/puppet/parser/ast/astarray.rb
puppet-2.7.26 lib/puppet/parser/ast/astarray.rb
puppet-2.7.25 lib/puppet/parser/ast/astarray.rb
puppet-2.7.24 lib/puppet/parser/ast/astarray.rb
puppet-2.7.23 lib/puppet/parser/ast/astarray.rb
puppet-2.7.22 lib/puppet/parser/ast/astarray.rb
librarian-puppet-0.9.9 vendor/gems/ruby/1.9.1/gems/puppet-3.1.0/lib/puppet/parser/ast/astarray.rb
puppet-parse-0.1.0 lib/vendor/puppet/parser/ast/astarray.rb
puppet-parse-0.0.6 lib/vendor/puppet/parser/ast/astarray.rb
puppet-2.7.21 lib/puppet/parser/ast/astarray.rb
puppet-3.1.1 lib/puppet/parser/ast/astarray.rb
puppet-parse-0.0.5 lib/vendor/puppet/parser/ast/astarray.rb
puppet-parse-0.0.4 lib/vendor/puppet/parser/ast/astarray.rb
librarian-puppet-0.9.8 vendor/gems/ruby/1.9.1/gems/puppet-3.1.0/lib/puppet/parser/ast/astarray.rb
puppet-3.1.0 lib/puppet/parser/ast/astarray.rb
puppet-3.1.0.rc2 lib/puppet/parser/ast/astarray.rb
puppet-3.1.0.rc1 lib/puppet/parser/ast/astarray.rb