Chromium Code Reviews| Index: runtime/vm/raw_object.h |
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h |
| index 19a1de512c72ebba6ecb0fe39c6add1bd4ca33ff..b1997efc9eb2db685ba5cc6cccfec96bb44f67f2 100644 |
| --- a/runtime/vm/raw_object.h |
| +++ b/runtime/vm/raw_object.h |
| @@ -1311,6 +1311,7 @@ class RawContextScope : public RawObject { |
| }; |
| int32_t num_variables_; |
| + bool is_implicit_; |
|
regis
2015/08/31 20:25:06
Add a comment (so far in the review, I still do no
siva
2015/08/31 22:20:52
Done.
|
| RawObject** from() { |
| VariableDesc* begin = const_cast<VariableDesc*>(ptr()->VariableDescAddr(0)); |
| @@ -1328,6 +1329,9 @@ class RawContextScope : public RawObject { |
| // 'end' is the address just beyond the last descriptor, so step back. |
| return reinterpret_cast<RawObject**>(end - kWordSize); |
| } |
| + |
| + friend class Object; |
| + friend class RawClosureData; |
| }; |