parsedComments.add(comment);
handlePossibleFileOverviewJsDoc(jsDocParser);
}
private Comment getJsDoc(SourceRange location) {
Comment closestPreviousComment = null;
while (currentComment != null &&
currentComment.location.end.offset <= location.start.offset) {
if (currentComment.type == Comment.Type.JSDOC) {
closestPreviousComment = currentComment;
}