# File lib/puppet/parser/ast/comparison_operator.rb, line 33
33:         def initialize(hash)
34:             super
35: 
36:             unless %w{== != < > <= >=}.include?(@operator)
37:                 raise ArgumentError, "Invalid comparison operator %s" % @operator
38:             end
39:         end