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

Side by Side Diff: dart/pkg/dartdoc/lib/src/markdown/inline_parser.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 part of markdown;
2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
6 4
7 /// Maintains the internal state needed to parse inline span elements in 5 /// Maintains the internal state needed to parse inline span elements in
8 /// markdown. 6 /// markdown.
9 class InlineParser { 7 class InlineParser {
10 static List<InlineSyntax> get syntaxes { 8 static List<InlineSyntax> get syntaxes {
11 // Lazy initialize. 9 // Lazy initialize.
12 if (_syntaxes == null) { 10 if (_syntaxes == null) {
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 parser.consume(endMatch[0].length); 399 parser.consume(endMatch[0].length);
402 } else { 400 } else {
403 // Didn't close correctly so revert to text. 401 // Didn't close correctly so revert to text.
404 parser.start = startPos; 402 parser.start = startPos;
405 parser.advanceBy(endMatch[0].length); 403 parser.advanceBy(endMatch[0].length);
406 } 404 }
407 405
408 return null; 406 return null;
409 } 407 }
410 } 408 }
OLDNEW
« no previous file with comments | « dart/pkg/dartdoc/lib/src/markdown/html_renderer.dart ('k') | dart/pkg/dartdoc/lib/src/mirrors/util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698