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

Unified Diff: test/tokenizer_test.dart

Issue 11265012: Changed UnsupportedOperationException to UnsupportedError (Closed) Base URL: https://github.com/dart-lang/html5lib.git@master
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/src/token.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/tokenizer_test.dart
diff --git a/test/tokenizer_test.dart b/test/tokenizer_test.dart
index 0fd16bd5fa814e65f33fe6ea7317cbb586643fd2..6ae28df1df0632e4276860e9878ef67871e20479 100644
--- a/test/tokenizer_test.dart
+++ b/test/tokenizer_test.dart
@@ -73,7 +73,7 @@ class TokenizerTestParser {
tokenizer.currentToken = new StartTagToken(_lastStartTag);
}
- while (tokenizer.hasNext()) {
+ while (tokenizer.hasNext) {
var token = tokenizer.next();
switch (token.kind) {
case TokenKind.characters:
« no previous file with comments | « lib/src/token.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698