| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index aba337664b184bdcc54fc0316384e6c0e6bb38b4..2c94f2dcbe7a6df8dfca59c49184a74f6a5a97aa 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -1160,6 +1160,7 @@ class Class : public Object {
|
| RawGrowableObjectArray* closures() const {
|
| return raw_ptr()->closure_functions_;
|
| }
|
| + void set_closures(const GrowableObjectArray& value) const;
|
| void AddClosureFunction(const Function& function) const;
|
| RawFunction* LookupClosureFunction(intptr_t token_pos) const;
|
| intptr_t FindClosureIndex(const Function& function) const;
|
|
|