Chromium Code Reviews| Index: runtime/vm/raw_object.h |
| =================================================================== |
| --- runtime/vm/raw_object.h (revision 16928) |
| +++ runtime/vm/raw_object.h (working copy) |
| @@ -673,7 +673,9 @@ |
| RawTokenStream* tokens_; |
| RawObject** to() { return reinterpret_cast<RawObject**>(&ptr()->tokens_); } |
| - Kind kind_; |
| + int32_t line_offset_; |
| + int32_t col_offset_; |
| + int8_t kind_; // Of type Kind. |
|
Ivan Posva
2013/01/10 20:16:33
I understand the reason for the static_cast now!
hausner
2013/01/10 20:22:32
Ok :)
|
| }; |