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

Unified Diff: editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/CollectionSemanticProcessorTest.java

Issue 322603002: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/CollectionSemanticProcessorTest.java
diff --git a/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/CollectionSemanticProcessorTest.java b/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/CollectionSemanticProcessorTest.java
index f0c1bba99c4ec8c4d97a602a906fa7a1e874ecb1..59f421bff7dd6385d271433b8e56824bb63a8444 100644
--- a/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/CollectionSemanticProcessorTest.java
+++ b/editor/util/plugins/com.google.dart.java2dart_test/src/com/google/dart/java2dart/processor/CollectionSemanticProcessorTest.java
@@ -287,9 +287,9 @@ public class CollectionSemanticProcessorTest extends SemanticProcessorTest {
assertFormattedSource(
"class Test {",
" void mainA() {",
- " Map<String, int> map = new Map<String, int>();",
+ " HashMap<String, int> map = new HashMap<String, int>();",
" }",
- " Object mainB(Map<String, int> p) => new Map<String, int>.from(p);",
+ " Object mainB(Map<String, int> p) => new HashMap<String, int>.from(p);",
"}");
}

Powered by Google App Engine
This is Rietveld 408576698