| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |