| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index ffceea054e9b761a23fe27c1135fb8f54f8fbaef..174d8628109f513d64f1c2e1180e2c214d3bfd6f 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -858,6 +858,9 @@ class Class : public Object {
|
| void SetFunctions(const Array& value) const;
|
| void AddFunction(const Function& function) const;
|
|
|
| + RawGrowableObjectArray* closures() const {
|
| + return raw_ptr()->closure_functions_;
|
| + }
|
| void AddClosureFunction(const Function& function) const;
|
| RawFunction* LookupClosureFunction(intptr_t token_pos) const;
|
|
|
|
|