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

Side by Side Diff: packages/html/lib/src/token.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/query_selector.dart ('k') | packages/html/lib/src/tokenizer.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 /// This library contains token types used by the html5 tokenizer. 1 /// This library contains token types used by the html5 tokenizer.
2 library token; 2 library token;
3 3
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'package:source_span/source_span.dart'; 5 import 'package:source_span/source_span.dart';
6 6
7 /// An html5 token. 7 /// An html5 token.
8 abstract class Token { 8 abstract class Token {
9 FileSpan span; 9 FileSpan span;
10 10
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 132
133 class TokenKind { 133 class TokenKind {
134 static const int spaceCharacters = 0; 134 static const int spaceCharacters = 0;
135 static const int characters = 1; 135 static const int characters = 1;
136 static const int startTag = 2; 136 static const int startTag = 2;
137 static const int endTag = 3; 137 static const int endTag = 3;
138 static const int comment = 4; 138 static const int comment = 4;
139 static const int doctype = 5; 139 static const int doctype = 5;
140 static const int parseError = 6; 140 static const int parseError = 6;
141 } 141 }
OLDNEW
« no previous file with comments | « packages/html/lib/src/query_selector.dart ('k') | packages/html/lib/src/tokenizer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698