Index: src/lookup.h |
diff --git a/src/lookup.h b/src/lookup.h |
index 7d689560b8f7efa5d106d1018fd42c26faa3e9cb..ed713c057c957165e498eccb525170f00792c934 100644 |
--- a/src/lookup.h |
+++ b/src/lookup.h |
@@ -237,6 +237,9 @@ class LookupIterator final BASE_EMBEDDED { |
DCHECK(has_property_); |
return property_details_; |
} |
+ PropertyAttributes property_attributes() const { |
+ return property_details().attributes(); |
+ } |
bool IsConfigurable() const { return property_details().IsConfigurable(); } |
bool IsReadOnly() const { return property_details().IsReadOnly(); } |
Representation representation() const { |