# File lib/haml/helpers/action_view_extensions.rb, line 47
      def with_raw_haml_concat
        old = instance_variable_defined?('@_haml_concat_raw') ? @_haml_concat_raw : false
        @_haml_concat_raw = true
        yield
      ensure
        @_haml_concat_raw = old
      end