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

Unified Diff: compiler/java/com/google/dart/compiler/type/DynamicTypeImplementation.java

Issue 10913033: Issue 4849. Disabling using inferred types for warnings should also disable invocation argument typ… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Replace <dynamic> with Dynamic Created 8 years, 4 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/type/DynamicTypeImplementation.java
diff --git a/compiler/java/com/google/dart/compiler/type/DynamicTypeImplementation.java b/compiler/java/com/google/dart/compiler/type/DynamicTypeImplementation.java
index 9b1d6c9f3b49f0de872ae28e83f662514a51726f..da2186d2585ea61b18454cd15af639c802fe7568 100644
--- a/compiler/java/com/google/dart/compiler/type/DynamicTypeImplementation.java
+++ b/compiler/java/com/google/dart/compiler/type/DynamicTypeImplementation.java
@@ -35,7 +35,7 @@ class DynamicTypeImplementation extends AbstractType implements DynamicType {
@Override
public String toString() {
- return "<dynamic>";
+ return "Dynamic";
}
@Override

Powered by Google App Engine
This is Rietveld 408576698