Index: src/runtime/runtime-interpreter.cc |
diff --git a/src/runtime/runtime-interpreter.cc b/src/runtime/runtime-interpreter.cc |
index 9d65061ba62cf91b624d3434067c78ab53357b62..d79c2cacb92d0afc1a210765c3fe93d0b445953a 100644 |
--- a/src/runtime/runtime-interpreter.cc |
+++ b/src/runtime/runtime-interpreter.cc |
@@ -135,7 +135,7 @@ RUNTIME_FUNCTION(Runtime_InterpreterLogicalNot) { |
RUNTIME_FUNCTION(Runtime_InterpreterTypeOf) { |
- SealHandleScope shs(isolate); |
+ HandleScope shs(isolate); |
DCHECK_EQ(1, args.length()); |
CONVERT_ARG_HANDLE_CHECKED(Object, x, 0); |
return Object::cast(*Object::TypeOf(isolate, x)); |