| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 73e0a5aa2c63e45abcfa9087e24551a63971f8bc..9f456473c3d42804f4c2fc0cf5ee3dec5be45632 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -1811,8 +1811,6 @@ class Function : public Object {
|
| }
|
| bool HasCode() const;
|
|
|
| - RawGrowableObjectArray* CollectICsWithSourcePositions() const;
|
| -
|
| static intptr_t instructions_offset() {
|
| return OFFSET_OF(RawFunction, instructions_);
|
| }
|
| @@ -3896,7 +3894,9 @@ class ICData : public Object {
|
| bool HasRangeFeedback() const;
|
| RangeFeedback DecodeRangeFeedbackAt(intptr_t idx) const;
|
|
|
| - void PrintToJSONArray(JSONArray* jsarray, intptr_t token_pos) const;
|
| + void PrintToJSONArray(const JSONArray& jsarray,
|
| + intptr_t token_pos,
|
| + bool is_static_call) const;
|
|
|
| private:
|
| RawArray* ic_data() const {
|
|
|