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

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

Issue 14022007: Move Iterable implementation to collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Merge to head. Created 7 years, 8 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: sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
diff --git a/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart b/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
index aa852871fde35b9c7be7f9cc6e965f18ac209e62..262a64ba8452a85cf495f75d359fc58aaa1c3315 100644
--- a/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
+++ b/sdk/lib/_internal/compiler/implementation/scanner/keyword.dart
@@ -7,7 +7,7 @@ part of scanner;
/**
* A keyword in the Dart programming language.
*/
-class Keyword extends Iterable<int> implements SourceString {
+class Keyword extends IterableBase<int> implements SourceString {
static const List<Keyword> values = const <Keyword> [
const Keyword("assert"),
const Keyword("break"),

Powered by Google App Engine
This is Rietveld 408576698