Index: runtime/vm/object.cc |
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc |
index 6591ecbbca4a0847001316b906b8bd2ddb1b112b..d50432eb253f1b52150af9906821f7c198b8eca7 100644 |
--- a/runtime/vm/object.cc |
+++ b/runtime/vm/object.cc |
@@ -5174,6 +5174,11 @@ void PatchClass::set_script(const Script& value) const { |
} |
+intptr_t Function::Hash() const { |
+ return String::HashRawSymbol(name()); |
+} |
+ |
+ |
bool Function::HasBreakpoint() const { |
if (!FLAG_support_debugger) { |
return false; |