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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java

Issue 229653004: New analyzer snapshot with MapIterator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java
index 9ade3993ab07f33d9919feb1059496d78af5c9f6..f66991efe33054480ffb8b17734d616e2855019f 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/utilities/collection/SingleMapIterator.java
@@ -13,6 +13,8 @@
*/
package com.google.dart.engine.utilities.collection;
+import com.google.dart.engine.utilities.translation.DartOmit;
+
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
@@ -22,6 +24,7 @@ import java.util.NoSuchElementException;
* Instances of the class {@code SingleMapIterator} implement an iterator that can be used to access
* the entries in a single map.
*/
+@DartOmit
public class SingleMapIterator<K, V> implements MapIterator<K, V> {
/**
* Returns a new {@link SingleMapIterator} instance for the given {@link Map}.

Powered by Google App Engine
This is Rietveld 408576698