Chromium Code Reviews| Index: runtime/vm/object.h |
| =================================================================== |
| --- runtime/vm/object.h (revision 15742) |
| +++ runtime/vm/object.h (working copy) |
| @@ -1145,6 +1145,10 @@ |
| RawCode* closure_allocation_stub() const; |
| void set_closure_allocation_stub(const Code& value) const; |
| + // Return the closure function implicitly created for this function, |
| + // or null if none exists. |
| + RawFunction* implicit_closure_function() const; |
|
regis
2012/12/05 22:54:34
See my comment in the cc file.
hausner
2012/12/05 23:04:13
Done.
|
| + |
| // Return the closure function implicitly created for this function. |
| // If none exists yet, create one and remember it. |
| RawFunction* ImplicitClosureFunction() const; |
| @@ -1470,7 +1474,6 @@ |
| void set_parent_function(const Function& value) const; |
| void set_owner(const Object& value) const; |
| void set_token_pos(intptr_t value) const; |
| - RawFunction* implicit_closure_function() const; |
| void set_implicit_closure_function(const Function& value) const; |
| void set_num_optional_parameters(intptr_t value) const; // Encoded value. |
| void set_kind_tag(intptr_t value) const; |