Index: dart/sdk/lib/_internal/lib/js_rti.dart |
diff --git a/dart/sdk/lib/_internal/lib/js_rti.dart b/dart/sdk/lib/_internal/lib/js_rti.dart |
index be747ea516fc659fcb9550bb4478e0384d2bcbdf..3c4da5abdb9e1668532bb435aa61b888429f7ea3 100644 |
--- a/dart/sdk/lib/_internal/lib/js_rti.dart |
+++ b/dart/sdk/lib/_internal/lib/js_rti.dart |
@@ -382,7 +382,7 @@ bool isSupertypeOfNull(var type) { |
* See the comment in the beginning of this file for a description of type |
* representations. |
*/ |
-bool checkSubtypeOfRuntimeType(Object o, var t) { |
+bool checkSubtypeOfRuntimeType(o, t) { |
if (isNull(o)) return isSupertypeOfNull(t); |
if (isNull(t)) return true; |
// Get the runtime type information from the object here, because we may |