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

Unified Diff: compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.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: compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java
index 3dbef868e3db880d052dd7df57f48b5d296c4be9..9192064eec52fa0c392a22f1067789320811aebe 100644
--- a/compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java
+++ b/compiler/javatests/com/google/dart/compiler/resolver/ResolverTest.java
@@ -1224,7 +1224,7 @@ public class ResolverTest extends ResolverTestCase {
resolveAndTest(Joiner.on("\n").join(
"class Object {}",
"class int {}",
- "typedef Dynamic F1<T>(Dynamic x, T y);",
+ "typedef dynamic F1<T>(dynamic x, T y);",
"class MyClass {",
" main() {",
" F1<int> f1 = (Object o, int i) => null;",

Powered by Google App Engine
This is Rietveld 408576698