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