class Prism::EmbDocComment

and =end.
EmbDocComment objects correspond to comments that are surrounded by =begin

def inspect

Returns a string representation of this comment.
def inspect
  "#<Prism::EmbDocComment @location=#{location.inspect}>"
end

def trailing?

This can only be true for inline comments.
def trailing?
  false
end