This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
prev_words_on_error(ev)
public
Returns words before the error
# File lib/rdoc/rd/inline_parser.rb, line 204
def prev_words_on_error(ev)
pre = @pre
if ev and /#{Regexp.quote(ev)}$/ =~ pre
pre = $`
end
last_line(pre)
end