This method is deprecated or moved on the latest stable version.
The last existing version (v1_9_1_378) is shown here.
continuous_line?(line)
private
Continuous line checker
# File lib/rdoc/parser/f95.rb, line 1455
def continuous_line?(line)
continuous = false
if /&\s*?(!.*)?$/ =~ line
continuous = true
if comment_out?($~.pre_match)
continuous = false
end
end
return continuous
end