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

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

Issue 13956006: Remove insertRange. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Replace type with var.wq Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // 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
2 // 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
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of markdown; 5 part of markdown;
6 6
7 /// Maintains the internal state needed to parse inline span elements in 7 /// Maintains the internal state needed to parse inline span elements in
8 /// markdown. 8 /// markdown.
9 class InlineParser { 9 class InlineParser {
10 static List<InlineSyntax> defaultSyntaxes = <InlineSyntax>[ 10 static List<InlineSyntax> defaultSyntaxes = <InlineSyntax>[
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 : _stack = <TagState>[] { 73 : _stack = <TagState>[] {
74 /// User specified syntaxes will be the first syntaxes to be evaluated. 74 /// User specified syntaxes will be the first syntaxes to be evaluated.
75 if (document.inlineSyntaxes != null) { 75 if (document.inlineSyntaxes != null) {
76 syntaxes = []; 76 syntaxes = [];
77 syntaxes.addAll(document.inlineSyntaxes); 77 syntaxes.addAll(document.inlineSyntaxes);
78 syntaxes.addAll(defaultSyntaxes); 78 syntaxes.addAll(defaultSyntaxes);
79 } else { 79 } else {
80 syntaxes = defaultSyntaxes; 80 syntaxes = defaultSyntaxes;
81 } 81 }
82 // Custom link resolver goes after the generic text syntax. 82 // Custom link resolver goes after the generic text syntax.
83 syntaxes.insertRange(1, 1, 83 syntaxes.insert(1, new LinkSyntax(linkResolver: document.linkResolver));
84 new LinkSyntax(linkResolver: document.linkResolver));
85 } 84 }
86 85
87 List<Node> parse() { 86 List<Node> parse() {
88 // Make a fake top tag to hold the results. 87 // Make a fake top tag to hold the results.
89 _stack.add(new TagState(0, 0, null)); 88 _stack.add(new TagState(0, 0, null));
90 89
91 while (!isDone) { 90 while (!isDone) {
92 bool matched = false; 91 bool matched = false;
93 92
94 // See if any of the current tags on the stack match. We don't allow tags 93 // See if any of the current tags on the stack match. We don't allow tags
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 parser.consume(endMatch[0].length); 410 parser.consume(endMatch[0].length);
412 } else { 411 } else {
413 // Didn't close correctly so revert to text. 412 // Didn't close correctly so revert to text.
414 parser.start = startPos; 413 parser.start = startPos;
415 parser.advanceBy(endMatch[0].length); 414 parser.advanceBy(endMatch[0].length);
416 } 415 }
417 416
418 return null; 417 return null;
419 } 418 }
420 } 419 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698