Index: pkg/compiler/lib/src/native/enqueue.dart |
diff --git a/pkg/compiler/lib/src/native/enqueue.dart b/pkg/compiler/lib/src/native/enqueue.dart |
index d936d58cc647e09b51cf9c4014ae5e3bf8f4aa2c..1f9b47b5d070e8b23178b0a348399a3fd4ea1bf6 100644 |
--- a/pkg/compiler/lib/src/native/enqueue.dart |
+++ b/pkg/compiler/lib/src/native/enqueue.dart |
@@ -263,7 +263,7 @@ abstract class NativeEnqueuerBase implements NativeEnqueuer { |
if (token.stringValue != 'extends') return null; |
token = token.next; |
Token id = token; |
- while (token.kind != EOF_TOKEN) { |
+ while (token.kind != Tokens.EOF_TOKEN) { |
token = token.next; |
if (token.stringValue != '.') break; |
token = token.next; |