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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/type/InterfaceType.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/type/InterfaceType.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/type/InterfaceType.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/type/InterfaceType.java
index 8aecc0b96d16204443dd1b2687e206efefe7f8f9..11e7fc3ea071cc3cdc23569ed6498e0adcae24db 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/type/InterfaceType.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/type/InterfaceType.java
@@ -27,7 +27,7 @@ public interface InterfaceType extends Type {
* Return an array containing the actual types of the type arguments. If this type's element does
* not have type parameters, then the array should be empty (although it is possible for type
* arguments to be erroneously declared). If the element has type parameters and the actual type
- * does not explicitly include argument values, then the type "Dynamic" will be automatically
+ * does not explicitly include argument values, then the type "dynamic" will be automatically
* provided.
*
* @return the actual types of the type arguments
@@ -56,7 +56,7 @@ public interface InterfaceType extends Type {
* <ul>
* <li>Reflexivity: <i>T</i> is <i>S</i>.
* <li><i>T</i> is bottom.
- * <li><i>S</i> is Dynamic.
+ * <li><i>S</i> is dynamic.
* <li>Direct supertype: <i>S</i> is a direct supertype of <i>T</i>.
* <li><i>T</i> is a type variable and <i>S</i> is the upper bound of <i>T</i>.
* <li>Covariance: <i>T</i> is of the form <i>I&lt;T<sub>1</sub>, &hellip;, T<sub>n</sub>&gt;</i>
@@ -73,7 +73,7 @@ public interface InterfaceType extends Type {
/**
* Return {@code true} if this type is a subtype of the given type. An interface type <i>T</i> is
* a subtype of an interface type <i>S</i>, written <i>T</i> <: <i>S</i>, iff
- * <i>[bottom/Dynamic]T</i> &laquo; <i>S</i> (<i>T</i> is more specific than <i>S</i>). If an
+ * <i>[bottom/dynamic]T</i> &laquo; <i>S</i> (<i>T</i> is more specific than <i>S</i>). If an
* interface type <i>I</i> includes a method named <i>call()</i>, and the type of <i>call()</i> is
* the function type <i>F</i>, then <i>I</i> is considered to be a subtype of <i>F</i>.
*

Powered by Google App Engine
This is Rietveld 408576698