| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index f668ccf15ac9fb3ff9e3a9082943c1a473880276..4d29cf806e380813af6b4e6476e918dcc6289eb0 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -5966,9 +5966,7 @@ RUNTIME_FUNCTION(Runtime_Typeof) {
|
| return isolate->heap()->boolean_string();
|
| }
|
| if (heap_obj->IsNull()) {
|
| - return FLAG_harmony_typeof
|
| - ? isolate->heap()->null_string()
|
| - : isolate->heap()->object_string();
|
| + return isolate->heap()->object_string();
|
| }
|
| ASSERT(heap_obj->IsUndefined());
|
| return isolate->heap()->undefined_string();
|
|
|