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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java

Issue 10939027: Issue 5116. Support both 'dynamic' and 'Dynamic' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use DartParser.DYNAMIC_KEYWORD Created 8 years, 3 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.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java
index 378590a29d6b7afcc539d6e7c22d7e87939c3637..aa1581eb9cf56f7b7e98724b9def7501739a403d 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/refactoring/ExtractUtilsTest.java
@@ -348,7 +348,7 @@ public final class ExtractUtilsTest extends AbstractDartTest {
}
public void test_getType_typedLiteral_Map_noTypeArgument() throws Exception {
- assertTypeSimple("Map<String, Dynamic>", "const {'a' : 1, 'b' : 2, 'c' : 3}");
+ assertTypeSimple("Map<String, dynamic>", "const {'a' : 1, 'b' : 2, 'c' : 3}");
}
public void test_getType_typedLiteral_Map_withTypeArgument() throws Exception {
@@ -399,7 +399,7 @@ public final class ExtractUtilsTest extends AbstractDartTest {
}
public void test_getType_unqualifiedInvocation_Map_withTypeArgument2() throws Exception {
- assert_getType_unqualifiedInvocation("Map<int, Dynamic>");
+ assert_getType_unqualifiedInvocation("Map<int, dynamic>");
}
public void test_getType_unqualifiedInvocation_String() throws Exception {
« no previous file with comments | « editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/code/ExtractUtils.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698