Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(866)

Unified Diff: lib/dartdoc/block_parser.dart

Issue 10115005: Static members are not visible in subclasses (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « frog/tokenizer.g.dart ('k') | runtime/bin/socket_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dartdoc/block_parser.dart
===================================================================
--- lib/dartdoc/block_parser.dart (revision 6697)
+++ 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();
}
« no previous file with comments | « frog/tokenizer.g.dart ('k') | runtime/bin/socket_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698