Index: runtime/vm/cha.cc |
diff --git a/runtime/vm/cha.cc b/runtime/vm/cha.cc |
index 667d598fb0263b12aa944f658f194c7a0aabd895..ed5255e664bd9f5d425346fb7753093fe124e65d 100644 |
--- a/runtime/vm/cha.cc |
+++ b/runtime/vm/cha.cc |
@@ -49,8 +49,8 @@ bool CHA::HasSubclasses(intptr_t cid) const { |
bool CHA::IsImplemented(const Class& cls) { |
- // Signature classes have different type checking rules. |
- ASSERT(!cls.IsSignatureClass()); |
+ // Function type aliases have different type checking rules. |
+ ASSERT(!cls.IsTypedefClass()); |
// Can't track dependencies for classes on the VM heap since those are |
// read-only. |
// TODO(fschneider): Enable tracking of CHA dependent code for VM heap |