class RBS::AST::Ruby::CommentBlock

CommentBlock is a collection of comments

# Comment1      < block1
# Comment2      <

# Comment3      < block2

A comment block is a leading block or trailing block.

# This is leading block.
# This is the second line of the leading block.

foo      # This is trailing block.
         # This is second line of the trailing block.

A leading block is a comment block where all of the comments are at the start of the line content. A trailing block is a comment block where the first comment of the block has something at the line before the comment.