| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 3a0721e7d8f0c0847c45c25bdabad448a80fbda0..8eb2146c58adbeffbe6961dce0d9990c5343ced6 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -2283,6 +2283,10 @@ class Function : public Object {
|
| return NumTypeParameters(Thread::Current());
|
| }
|
|
|
| + // Returns true if this function has the same number of type parameters with
|
| + // equal bounds as the other function. Type parameter names are ignored.
|
| + bool HasSameTypeParametersAndBounds(const Function& other) const;
|
| +
|
| // Return the number of type parameters declared in parent generic functions.
|
| intptr_t NumParentTypeParameters() const;
|
|
|
|
|