| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 17e80f46ef9e98ac0a08d8117f5b3b6e4d452094..772cd87f95adb0ab842a8a03a5b4f3362bbfd32c 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -4145,8 +4145,7 @@ class Code : public Object {
|
| enum InlinedIntervalEntries {
|
| kInlIntStart = 0,
|
| kInlIntInliningId = 1,
|
| - kInlIntCallerId = 2,
|
| - kInlIntNumEntries = 3,
|
| + kInlIntNumEntries = 2,
|
| };
|
|
|
| RawArray* GetInlinedIntervals() const;
|
| @@ -4155,6 +4154,9 @@ class Code : public Object {
|
| RawArray* GetInlinedIdToFunction() const;
|
| void SetInlinedIdToFunction(const Array& value) const;
|
|
|
| + RawArray* GetInlinedCallerIdMap() const;
|
| + void SetInlinedCallerIdMap(const Array& value) const;
|
| +
|
| void GetInlinedFunctionsAt(
|
| intptr_t offset, GrowableArray<Function*>* fs) const;
|
|
|
|
|