Index: runtime/vm/raw_object.h |
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h |
index a692eece307feeb7d9be899d57c1457c73a2148c..3f5a507d3a67dc74476be205e77057f4a596ccf5 100644 |
--- a/runtime/vm/raw_object.h |
+++ b/runtime/vm/raw_object.h |
@@ -995,9 +995,10 @@ class RawScript : public RawObject { |
RawObject** from() { return reinterpret_cast<RawObject**>(&ptr()->url_); } |
RawString* url_; |
+ RawArray* compile_time_constants_; |
RawTokenStream* tokens_; |
RawString* source_; |
- RawObject** to() { return reinterpret_cast<RawObject**>(&ptr()->source_); } |
+ RawObject** to() {return reinterpret_cast<RawObject**>(&ptr()->source_); } |
RawObject** to_snapshot(Snapshot::Kind kind) { |
switch (kind) { |
case Snapshot::kAppNoJIT: |