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

Unified Diff: runtime/vm/raw_object.h

Issue 1739963002: Remember token position where a function was inlined (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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
« runtime/vm/flow_graph_compiler.cc ('K') | « runtime/vm/precompiler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/raw_object.h
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
index 76d49edd8a1dd11c3083b92b672c4c4bada72c92..6c634c8974ad3a0077052ae7e86032bafcc1e885 100644
--- a/runtime/vm/raw_object.h
+++ b/runtime/vm/raw_object.h
@@ -1052,7 +1052,8 @@ class RawCode : public RawObject {
kInlinedIntervalsIndex = 0,
kInlinedIdToFunctionIndex = 1,
kInlinedCallerIdMapIndex = 2,
- kInlinedMetadataSize = 3,
+ kInlinedIdToTokenPosIndex = 3,
+ kInlinedMetadataSize = 4,
};
RAW_HEAP_OBJECT_IMPLEMENTATION(Code);
« runtime/vm/flow_graph_compiler.cc ('K') | « runtime/vm/precompiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698