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