summaryrefslogtreecommitdiff
path: root/deps/v8/src/objects/js-proxy-inl.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/objects/js-proxy-inl.h')
-rw-r--r--deps/v8/src/objects/js-proxy-inl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/objects/js-proxy-inl.h b/deps/v8/src/objects/js-proxy-inl.h
index e0d0835f06..f33628b5c2 100644
--- a/deps/v8/src/objects/js-proxy-inl.h
+++ b/deps/v8/src/objects/js-proxy-inl.h
@@ -7,7 +7,7 @@
#include "src/objects/js-proxy.h"
-#include "src/objects-inl.h" // Needed for write barriers
+#include "src/objects/objects-inl.h" // Needed for write barriers
// Has to be the last include (doesn't have include guards):
#include "src/objects/object-macros.h"
@@ -22,7 +22,7 @@ CAST_ACCESSOR(JSProxy)
ACCESSORS(JSProxy, target, Object, kTargetOffset)
ACCESSORS(JSProxy, handler, Object, kHandlerOffset)
-bool JSProxy::IsRevoked() const { return !handler()->IsJSReceiver(); }
+bool JSProxy::IsRevoked() const { return !handler().IsJSReceiver(); }
} // namespace internal
} // namespace v8