method
process?
v8.0.0 -
Show latest stable
- Class:
CommentVisitor
process?(comments)private
No documentation available.
# File tools/rdoc-to-md, line 120
def process?(comments)
return false if comments.empty?
if comments.any?(&:trailing?)
return false if comments.all?(&:trailing?)
raise "only some comments are trailing?"
end
true
end