Chromium Code Reviews| Index: runtime/vm/raw_object.h |
| =================================================================== |
| --- runtime/vm/raw_object.h (revision 2094) |
| +++ runtime/vm/raw_object.h (working copy) |
| @@ -338,6 +338,7 @@ |
| return reinterpret_cast<RawObject**>(&ptr()->length_); |
|
regis
2011/12/05 23:16:35
length_ needs to be changed if you keep a dart boo
srdjan
2011/12/06 17:24:15
Removed Dart Bool, using C++ bool. I think length
|
| } |
| RawSmi* length_; |
| + RawBool* is_canonical_; |
|
regis
2011/12/05 23:16:35
Why a dart bool?
srdjan
2011/12/06 17:24:15
Changed to C++ bool.
|
| // Variable length data follows here. |
| RawAbstractType* types_[0]; |