| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 4fada6aebcfcc4c59947a95c9bab7a70b4bb252a..7ff71f0d11128f984b8e8285342ea3cccdb1ce86 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -738,13 +738,12 @@ bool HeapObject::IsDependentCode() const {
|
| bool HeapObject::IsContext() const {
|
| Map* map = this->map();
|
| Heap* heap = GetHeap();
|
| - return (map == heap->function_context_map() ||
|
| - map == heap->catch_context_map() ||
|
| - map == heap->with_context_map() ||
|
| - map == heap->native_context_map() ||
|
| - map == heap->block_context_map() ||
|
| - map == heap->module_context_map() ||
|
| - map == heap->script_context_map());
|
| + return (
|
| + map == heap->function_context_map() || map == heap->catch_context_map() ||
|
| + map == heap->with_context_map() || map == heap->native_context_map() ||
|
| + map == heap->block_context_map() || map == heap->module_context_map() ||
|
| + map == heap->script_context_map() ||
|
| + map == heap->debug_evaluate_context_map());
|
| }
|
|
|
| bool HeapObject::IsNativeContext() const {
|
|
|