Index: runtime/vm/raw_object.h |
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h |
index 2f2cf6046e504220bbddb1ff01ea043dd8b8f9cd..9eb7ffa62c7e784d3171919ddbdff675fa3a291b 100644 |
--- a/runtime/vm/raw_object.h |
+++ b/runtime/vm/raw_object.h |
@@ -2141,8 +2141,9 @@ class RawStackTrace : public RawInstance { |
RAW_HEAP_OBJECT_IMPLEMENTATION(StackTrace); |
RawObject** from() { |
- return reinterpret_cast<RawObject**>(&ptr()->code_array_); |
+ return reinterpret_cast<RawObject**>(&ptr()->async_link_); |
} |
+ RawStackTrace* async_link_; // Link to parent async stack trace. |
RawArray* code_array_; // Code object for each frame in the stack trace. |
RawArray* pc_offset_array_; // Offset of PC for each frame. |
RawObject** to() { |