| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index bea0b1434d7c5666eb10b7c8f88ad9ff73d8e35a..ceecf06cf872c430d42e6b0508dd92e3b9d3a821 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -2341,6 +2341,11 @@ RawFunction* Class::InvocationDispatcherFunctionFromIndex(intptr_t idx) const {
|
| }
|
|
|
|
|
| +void Class::set_closures(const GrowableObjectArray& value) const {
|
| + StorePointer(&raw_ptr()->closure_functions_, value.raw());
|
| +}
|
| +
|
| +
|
| void Class::AddClosureFunction(const Function& function) const {
|
| GrowableObjectArray& closures =
|
| GrowableObjectArray::Handle(raw_ptr()->closure_functions_);
|
|
|