Chromium Code Reviews| Index: runtime/vm/raw_object.h |
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h |
| index e876e666fef636cc5bc86dfd7d82d0d0552e6d9f..458341d322211cab7b8eacba59bf17c7188662a8 100644 |
| --- a/runtime/vm/raw_object.h |
| +++ b/runtime/vm/raw_object.h |
| @@ -816,7 +816,7 @@ class RawCode : public RawObject { |
| return reinterpret_cast<RawObject**>(&ptr()->instructions_); |
| } |
| RawInstructions* instructions_; |
| - RawFunction* function_; |
| + RawObject* owner_; // Function, Null, or a smi (class id). |
|
turnidge
2014/02/28 19:23:37
I think we need a comment which explains the three
Cutch
2014/02/28 19:37:08
Done.
|
| RawExceptionHandlers* exception_handlers_; |
| RawPcDescriptors* pc_descriptors_; |
| RawArray* deopt_info_array_; |