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

Unified Diff: dart/lib/compiler/implementation/scanner/keyword.dart

Issue 11088003: Fix warnings in dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix long line 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
Index: dart/lib/compiler/implementation/scanner/keyword.dart
diff --git a/dart/lib/compiler/implementation/scanner/keyword.dart b/dart/lib/compiler/implementation/scanner/keyword.dart
index 66f0002c5a4e3d994053c1cc1a7dc794bbf4b6ea..b5b69194ec42e1f77f11cbb4c2460a794469c20b 100644
--- a/dart/lib/compiler/implementation/scanner/keyword.dart
+++ b/dart/lib/compiler/implementation/scanner/keyword.dart
@@ -119,7 +119,7 @@ class Keyword implements SourceString {
/**
* Abstract state in a state machine for scanning keywords.
*/
-class KeywordState {
+abstract class KeywordState {
abstract bool isLeaf();
abstract KeywordState next(int c);
abstract Keyword get keyword;

Powered by Google App Engine
This is Rietveld 408576698