Index: Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp b/Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp |
index 40149b017ebabad3248fc93ef9dca541a268d407..ff390372fac1a80805f282a538a0dd19131772bc 100644 |
--- a/Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp |
@@ -83,6 +83,7 @@ static void funcMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
TestInterfaceGarbageCollected* arg; |
{ |
v8::TryCatch block; |
+ V8RethrowTryCatchScope rethrow(block); |
TONATIVE_VOID_INTERNAL(arg, V8TestInterfaceGarbageCollected::toNativeWithTypeCheck(info.GetIsolate(), info[0])); |
} |
impl->func(arg); |
@@ -104,7 +105,7 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) |
} |
V8StringResource<> str; |
{ |
- TOSTRING_VOID_INTERNAL_NOTRYCATCH(str, info[0]); |
+ TOSTRING_VOID_INTERNAL(str, info[0]); |
} |
RawPtr<TestInterfaceGarbageCollected> impl = TestInterfaceGarbageCollected::create(str); |