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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.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.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.java
index 980f278a661690aa31712fb61ecedcae9be7ebd0..6528586d3fbb5f3be742b209e0375ef4f82d1933 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/type/InterfaceTypeImpl.java
@@ -29,14 +29,14 @@ public class InterfaceTypeImpl extends TypeImpl implements InterfaceType {
private Type[] typeArguments;
/**
- * The instance representing the type "Dynamic".
+ * The instance representing the type "dynamic".
*/
- private static final InterfaceTypeImpl DYNAMIC_TYPE = new InterfaceTypeImpl("Dynamic");
+ private static final InterfaceTypeImpl DYNAMIC_TYPE = new InterfaceTypeImpl("dynamic");
/**
- * Return a shared instance of this class representing the type {@code Dynamic}.
+ * Return a shared instance of this class representing the type {@code dynamic}.
*
- * @return an instance of this class representing the type {@code Dynamic}
+ * @return an instance of this class representing the type {@code dynamic}
*/
public static InterfaceTypeImpl getDynamic() {
return DYNAMIC_TYPE;

Powered by Google App Engine
This is Rietveld 408576698