| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 8d3ef5ed66909c3decd135ee913e2f07ba3a321c..bf0a3ffeb969afabf5869ad0c94a8410463207ec 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -2006,6 +2006,8 @@ class ICData : public Object {
|
| bool is_static_call) const;
|
|
|
| private:
|
| + static RawICData* New();
|
| +
|
| RawArray* ic_data() const {
|
| return raw_ptr()->ic_data_;
|
| }
|
| @@ -4376,6 +4378,7 @@ class Code : public Object {
|
|
|
| FINAL_HEAP_OBJECT_IMPLEMENTATION(Code, Object);
|
| friend class Class;
|
| + friend class SnapshotWriter;
|
|
|
| // So that the RawFunction pointer visitor can determine whether code the
|
| // function points to is optimized.
|
|
|