Chromium Code Reviews| Index: src/lookup.h |
| diff --git a/src/lookup.h b/src/lookup.h |
| index 7727ca57dc083289f361a27fcbc4acf81480bd45..53f1a686828fd0c2d035a4164c8e2668ec4b2063 100644 |
| --- a/src/lookup.h |
| +++ b/src/lookup.h |
| @@ -143,6 +143,7 @@ class LookupIterator V8_FINAL BASE_EMBEDDED { |
| return property_details_; |
| } |
| bool IsConfigurable() const { return !property_details().IsDontDelete(); } |
| + bool IsReadOnly() const { return property_details().IsReadOnly(); } |
|
Jakob Kummerow
2014/08/18 15:00:18
Yeah, I'm adding that accessor in my work-in-progr
|
| Representation representation() const { |
| return property_details().representation(); |
| } |