method

flush_newline_if_pending

flush_newline_if_pending(src)
public

No documentation available.

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