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

Side by Side Diff: packages/html/lib/src/tokenizer.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « packages/html/lib/src/token.dart ('k') | packages/html/lib/src/treebuilder.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library tokenizer; 1 library tokenizer;
2 2
3 import 'dart:collection'; 3 import 'dart:collection';
4 import 'package:html/parser.dart' show HtmlParser; 4 import 'package:html/parser.dart' show HtmlParser;
5 import 'constants.dart'; 5 import 'constants.dart';
6 import 'inputstream.dart'; 6 import 'inputstream.dart';
7 import 'token.dart'; 7 import 'token.dart';
8 import 'utils.dart'; 8 import 'utils.dart';
9 9
10 // Group entities by their first character, for faster lookups 10 // Group entities by their first character, for faster lookups
(...skipping 1888 matching lines...) Expand 10 before | Expand all | Expand 10 after
1899 } 1899 }
1900 } 1900 }
1901 1901
1902 if (data.length > 0) { 1902 if (data.length > 0) {
1903 _addToken(new CharactersToken(data.join())); 1903 _addToken(new CharactersToken(data.join()));
1904 } 1904 }
1905 state = dataState; 1905 state = dataState;
1906 return true; 1906 return true;
1907 } 1907 }
1908 } 1908 }
OLDNEW
« no previous file with comments | « packages/html/lib/src/token.dart ('k') | packages/html/lib/src/treebuilder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698