# File lib/puppet/parser/ast/collexpr.rb, line 81 81: def initialize(hash = {}) 82: super 83: 84: unless %w{== != and or}.include?(@oper) 85: raise ArgumentError, "Invalid operator %s" % @oper 86: end 87: end