| Index: src/lookup.h
|
| diff --git a/src/lookup.h b/src/lookup.h
|
| index 29b7d77b270d26447f8190d651ba1c1704462834..be8394afec4e7242fd294695f6b31f347dac8628 100644
|
| --- a/src/lookup.h
|
| +++ b/src/lookup.h
|
| @@ -212,9 +212,9 @@ class LookupIterator final BASE_EMBEDDED {
|
| Handle<Object> GetAccessors() const;
|
| Handle<InterceptorInfo> GetInterceptor() const;
|
| Handle<Object> GetDataValue() const;
|
| - // Usually returns the value that was passed in, but may perform
|
| - // non-observable modifications on it, such as internalize strings.
|
| - void WriteDataValue(Handle<Object> value);
|
| + // Usually returns the value that was passed in. In case of typed array
|
| + // accesses it returns the converted value.
|
| + Handle<Object> WriteDataValue(Handle<Object> value);
|
| void InternalizeName();
|
|
|
| private:
|
|
|