| Index: src/compiler/access-info.h
|
| diff --git a/src/compiler/access-info.h b/src/compiler/access-info.h
|
| index b6d68c740e8efefef39d2d109217944a8ece57fc..daa872286fed7977cec0dfc3c392cc175d53a252 100644
|
| --- a/src/compiler/access-info.h
|
| +++ b/src/compiler/access-info.h
|
| @@ -35,10 +35,8 @@ typedef std::vector<std::pair<Handle<Map>, Handle<Map>>> MapTransitionList;
|
| class ElementAccessInfo final {
|
| public:
|
| ElementAccessInfo();
|
| - ElementAccessInfo(MapList const& receiver_maps, ElementsKind elements_kind,
|
| - MaybeHandle<JSObject> holder);
|
| + ElementAccessInfo(MapList const& receiver_maps, ElementsKind elements_kind);
|
|
|
| - MaybeHandle<JSObject> holder() const { return holder_; }
|
| ElementsKind elements_kind() const { return elements_kind_; }
|
| MapList const& receiver_maps() const { return receiver_maps_; }
|
| MapTransitionList& transitions() { return transitions_; }
|
| @@ -46,7 +44,6 @@ class ElementAccessInfo final {
|
|
|
| private:
|
| ElementsKind elements_kind_;
|
| - MaybeHandle<JSObject> holder_;
|
| MapList receiver_maps_;
|
| MapTransitionList transitions_;
|
| };
|
|
|