# File lib/brakeman/processors/lib/call_conversion_helper.rb, line 3
    def all_literals? exp, expected_type = :array
      node_type? exp, expected_type and
        exp.length > 1 and
        exp.all? { |e| e.is_a? Symbol or node_type? e, :lit, :str }
    end