| Index: runtime/vm/cha.h
|
| diff --git a/runtime/vm/cha.h b/runtime/vm/cha.h
|
| index 8860a8bbc8e666204f2e011e81b7b72e46c56840..b4007b2aa71b2ba44319d082eda5881f97b75f05 100644
|
| --- a/runtime/vm/cha.h
|
| +++ b/runtime/vm/cha.h
|
| @@ -32,11 +32,11 @@ class CHA : public StackResource {
|
| }
|
|
|
| // Returns true if the class has subclasses.
|
| - bool HasSubclasses(const Class& cls);
|
| - bool HasSubclasses(intptr_t cid);
|
| + static bool HasSubclasses(const Class& cls);
|
| + bool HasSubclasses(intptr_t cid) const;
|
|
|
| // Return true if the class is implemented by some other class.
|
| - bool IsImplemented(const Class& cls);
|
| + static bool IsImplemented(const Class& cls);
|
|
|
| // Returns true if any subclass of 'cls' contains the function.
|
| bool HasOverride(const Class& cls, const String& function_name);
|
|
|