# File lib/brakeman/parsers/rails3_erubis.rb, line 49
  def add_expr_escaped(src, code)
    flush_newline_if_pending(src)
    if code =~ BLOCK_EXPR
      src << "@output_buffer.safe_expr_append= " << code
    else
      src << "@output_buffer.safe_expr_append=(" << code << ");"
    end
  end