Sha256: 642bf6e5af4aceb57013418e587e7961ba1d50f619827b87914aea618a8eddc5

Contents?: true

Size: 692 Bytes

Versions: 170

Compression:

Stored size: 692 Bytes

Contents

require 'puppet'
require 'puppet/parser/ast/branch'

class Puppet::Parser::AST
  class MatchOperator < AST::Branch

    attr_accessor :lval, :rval, :operator

    # Iterate across all of our children.
    def each
      [@lval,@rval].each { |child| yield child }
    end

    # Returns a boolean which is the result of the boolean operation
    # of lval and rval operands
    def evaluate(scope)
      lval = @lval.safeevaluate(scope)

      return(rval.evaluate_match(lval, scope) ? @operator == "=~" : @operator == "!~")
    end

    def initialize(hash)
      super

      raise ArgumentError, "Invalid regexp operator #{@operator}" unless %w{!~ =~}.include?(@operator)
    end
  end
end

Version data entries

170 entries across 170 versions & 5 rubygems

Version Path
puppet-retrospec-0.12.2 vendor/gems/puppet-3.7.3/lib/puppet/parser/ast/match_operator.rb
puppet-3.8.7 lib/puppet/parser/ast/match_operator.rb
puppet-3.8.7-x86-mingw32 lib/puppet/parser/ast/match_operator.rb
puppet-3.8.7-x64-mingw32 lib/puppet/parser/ast/match_operator.rb
puppet-3.8.6 lib/puppet/parser/ast/match_operator.rb
puppet-3.8.6-x86-mingw32 lib/puppet/parser/ast/match_operator.rb
puppet-retrospec-0.12.1 vendor/gems/puppet-3.7.3/lib/puppet/parser/ast/match_operator.rb
puppet-3.8.6-x64-mingw32 lib/puppet/parser/ast/match_operator.rb
puppet-retrospec-0.12.0 vendor/gems/puppet-3.7.3/lib/puppet/parser/ast/match_operator.rb
puppet-3.8.5 lib/puppet/parser/ast/match_operator.rb
puppet-3.8.5-x86-mingw32 lib/puppet/parser/ast/match_operator.rb
puppet-3.8.5-x64-mingw32 lib/puppet/parser/ast/match_operator.rb
puppet-3.8.4 lib/puppet/parser/ast/match_operator.rb
puppet-3.8.4-x86-mingw32 lib/puppet/parser/ast/match_operator.rb
puppet-3.8.4-x64-mingw32 lib/puppet/parser/ast/match_operator.rb
puppet-retrospec-0.11.0 vendor/gems/puppet-3.7.3/lib/puppet/parser/ast/match_operator.rb
puppet-retrospec-0.10.0 vendor/gems/puppet-3.7.3/lib/puppet/parser/ast/match_operator.rb
puppet-retrospec-0.9.1 vendor/gems/puppet-3.7.3/lib/puppet/parser/ast/match_operator.rb
puppet-retrospec-0.9.0 vendor/gems/puppet-3.7.3/lib/puppet/parser/ast/match_operator.rb
puppet-retrospec-0.8.1 vendor/gems/puppet-3.7.3/lib/puppet/parser/ast/match_operator.rb