fix(doc): handle comments at the top of the file (#5891)

This commit is contained in:
Matt Dumler 2020-05-27 16:38:36 -05:00 committed by GitHub
parent f8c6500eef
commit f6e58b076c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View file

@ -530,7 +530,7 @@ impl DocParser {
pub fn js_doc_for_span(&self, span: Span) -> Option<String> {
let comments = self.ast_parser.get_span_comments(span);
let js_doc_comment = comments.iter().find(|comment| {
let js_doc_comment = comments.iter().rev().find(|comment| {
comment.kind == CommentKind::Block && comment.text.starts_with('*')
})?;