Chromium Code Reviews| Index: src/objects.h |
| diff --git a/src/objects.h b/src/objects.h |
| index 1dcb0d143c0147c80e504cfcaa480bd4cb1e063b..e7b8591fe52717a101b62951ec21a46022592eb4 100644 |
| --- a/src/objects.h |
| +++ b/src/objects.h |
| @@ -2156,7 +2156,7 @@ class JSObject: public JSReceiver { |
| }; |
| // Retrieve interceptors. |
| - InterceptorInfo* GetNamedInterceptor(); |
| + inline InterceptorInfo* GetNamedInterceptor(); |
|
Jakob Kummerow
2016/03/10 09:18:21
Ohhh the consistency! :-)
|
| inline InterceptorInfo* GetIndexedInterceptor(); |
| // Used from JSReceiver. |
| @@ -5603,6 +5603,10 @@ class Map: public HeapObject { |
| static MaybeHandle<JSFunction> GetConstructorFunction( |
| Handle<Map> map, Handle<Context> native_context); |
| + // Retrieve interceptors. |
| + inline InterceptorInfo* GetNamedInterceptor(); |
| + inline InterceptorInfo* GetIndexedInterceptor(); |
| + |
| // Instance type. |
| inline InstanceType instance_type(); |
| inline void set_instance_type(InstanceType value); |