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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/Resolver.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/java/com/google/dart/compiler/resolver/Resolver.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/Resolver.java b/compiler/java/com/google/dart/compiler/resolver/Resolver.java
index 34d96b5cf52c46e1f7611d67a5bc411598e6171f..b95c72624f1fd0c379217c77478a361b7943534f 100644
--- a/compiler/java/com/google/dart/compiler/resolver/Resolver.java
+++ b/compiler/java/com/google/dart/compiler/resolver/Resolver.java
@@ -2144,7 +2144,7 @@ public class Resolver {
// fall through
case 0:
typeArgs.add(implicitKey);
- DartTypeNode implicitValue = new DartTypeNode(new DartIdentifier("Dynamic"));
+ DartTypeNode implicitValue = new DartTypeNode(new DartIdentifier("dynamic"));
typeArgs.add(implicitValue);
break;
}

Powered by Google App Engine
This is Rietveld 408576698