Index: lib/dartdoc/block_parser.dart |
=================================================================== |
--- lib/dartdoc/block_parser.dart (revision 6666) |
+++ lib/dartdoc/block_parser.dart (working copy) |
@@ -293,7 +293,7 @@ |
} else if (tryMatch(_RE_INDENT)) { |
// Strip off indent and add to current item. |
childLines.add(match[1]); |
- } else if (isAtBlockEnd(parser)) { |
+ } else if (BlockSyntax.isAtBlockEnd(parser)) { |
// Done with the list. |
break; |
} else { |
@@ -424,7 +424,7 @@ |
final childLines = []; |
// Eat until we hit something that ends a paragraph. |
- while (!isAtBlockEnd(parser)) { |
+ while (!BlockSyntax.isAtBlockEnd(parser)) { |
childLines.add(parser.current); |
parser.advance(); |
} |