# File lib/puppet/parser/ast/boolean_operator.rb, line 40
40:         def initialize(hash)
41:             super
42: 
43:             unless %w{and or}.include?(@operator)
44:                 raise ArgumentError, "Invalid boolean operator %s" % @operator
45:             end
46:         end