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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinderTest.java

Issue 11260031: Issue 6202. Remove support for 'Dynamic'. Add Clean Up to rename to 'dynamic'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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.core_test/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinderTest.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinderTest.java b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinderTest.java
index 5d48b2ce770d0b5ca6c468181d87e6db3ebf2541..3c3c0306fca11d44505579d5cdbaabfc245f1176 100644
--- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinderTest.java
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/utilities/ast/NameOccurrencesFinderTest.java
@@ -154,7 +154,7 @@ public class NameOccurrencesFinderTest extends TestCase {
" R.a() : this.!1b();",
" R.b() : super.s!2(1);",
" var q = new Map<St!5ring, Object!3>();",
- " var w = new Map<String, !4Dynamic>();",
+ " var w = new Map<String, !4dynamic>();",
" var zz = t!8f(y);",
" var z2 = tf((xx!9) => 11);",
"}"),
@@ -166,11 +166,11 @@ public class NameOccurrencesFinderTest extends TestCase {
"2+s(1);",
// 3 terminal generic type ref
"3+Object>",
- // 4 explicit Dynamic ref
- "4+Dynamic>",
+ // 4 explicit dynamic ref
+ "4+dynamic>",
// 5 multiple generic type ref
"5+String, O",
- "5+String, D",
+ "5+String, d",
// 6 top-level function def
"6+tf(var",
"6+tf(xx",

Powered by Google App Engine
This is Rietveld 408576698