Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(888)

Unified Diff: runtime/vm/raw_object.h

Issue 11824067: Support for embedded Dart scripts (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 :)
};

Powered by Google App Engine
This is Rietveld 408576698