Skip to content

Commit f9a4f47

Browse files
committed
Format.
1 parent f093a89 commit f9a4f47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/src/source_visitor.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3772,16 +3772,16 @@ class SourceVisitor extends ThrowingAstVisitor {
37723772

37733773
var type = CommentType.block;
37743774
if (text.startsWith('///') && !text.startsWith('////') ||
3775-
text.startsWith('/**')) {
3775+
text.startsWith('/**')) {
37763776
type = CommentType.doc;
37773777
} else if (comment.type == TokenType.SINGLE_LINE_COMMENT) {
37783778
type = CommentType.line;
37793779
} else if (commentLine == previousLine || commentLine == tokenLine) {
37803780
type = CommentType.inlineBlock;
37813781
}
37823782

3783-
var sourceComment = SourceComment(text, type, linesBefore,
3784-
flushLeft: flushLeft);
3783+
var sourceComment =
3784+
SourceComment(text, type, linesBefore, flushLeft: flushLeft);
37853785

37863786
// If this comment contains either of the selection endpoints, mark them
37873787
// in the comment.

0 commit comments

Comments
 (0)