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

Unified Diff: pkg/compiler/lib/src/scanner/scanner.dart

Issue 2647043002: Fix hints reported by analyzer. (Closed)
Patch Set: Address review comments. Created 3 years, 11 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 | « pkg/compiler/lib/src/resolution/variables.dart ('k') | pkg/compiler/lib/src/serialization/modelz.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/scanner/scanner.dart
diff --git a/pkg/compiler/lib/src/scanner/scanner.dart b/pkg/compiler/lib/src/scanner/scanner.dart
index f0698611482b302293d982b6bccd4f5b91af214a..f05a9ef08e99c67c5901abb1014aa3e652b1daea 100644
--- a/pkg/compiler/lib/src/scanner/scanner.dart
+++ b/pkg/compiler/lib/src/scanner/scanner.dart
@@ -635,7 +635,6 @@ abstract class AbstractScanner implements Scanner {
return next;
}
}
- return null;
}
int tokenizeHexOrNumber(int next) {
@@ -665,7 +664,6 @@ abstract class AbstractScanner implements Scanner {
return next;
}
}
- return null;
}
int tokenizeDotsOrNumber(int next) {
@@ -761,7 +759,6 @@ abstract class AbstractScanner implements Scanner {
return next;
}
}
- return null;
}
int tokenizeMultiLineComment(int next, int start) {
« no previous file with comments | « pkg/compiler/lib/src/resolution/variables.dart ('k') | pkg/compiler/lib/src/serialization/modelz.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698