| Index: test/cctest/compiler/function-tester.h
|
| diff --git a/test/cctest/compiler/function-tester.h b/test/cctest/compiler/function-tester.h
|
| index 2ed2fe99883da65ae29d0c40ef287d40b1b41ed0..0b1ba5ce2c3150472cd040828d72863223317063 100644
|
| --- a/test/cctest/compiler/function-tester.h
|
| +++ b/test/cctest/compiler/function-tester.h
|
| @@ -98,8 +98,6 @@ class FunctionTester : public InitializedHandleScope {
|
| CHECK(isolate->has_pending_exception());
|
| CHECK(try_catch.HasCaught());
|
| CHECK(no_result.is_null());
|
| - // TODO(mstarzinger): Temporary workaround for issue chromium:362388.
|
| - isolate->OptionalRescheduleException(true);
|
| }
|
|
|
| v8::Handle<v8::Message> CheckThrowsReturnMessage(Handle<Object> a,
|
| @@ -109,10 +107,6 @@ class FunctionTester : public InitializedHandleScope {
|
| CHECK(isolate->has_pending_exception());
|
| CHECK(try_catch.HasCaught());
|
| CHECK(no_result.is_null());
|
| - // TODO(mstarzinger): Calling OptionalRescheduleException is a dirty hack,
|
| - // it's the only way to make Message() not to assert because an external
|
| - // exception has been caught by the try_catch.
|
| - isolate->OptionalRescheduleException(true);
|
| return try_catch.Message();
|
| }
|
|
|
|
|