method

flush_newline_if_pending

flush_newline_if_pending(src)
public

No documentation available.

# File actionpack/lib/action_view/template/handlers/erb.rb, line 69
        def flush_newline_if_pending(src)
          if @newline_pending > 0
            src << "@output_buffer.safe_append='#{"\n" * @newline_pending}';"
            @newline_pending = 0
          end
        end