| 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..7275f1c9a5e9495c7a4df25c37e79be42a0fb147 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceGarbageCollected.cpp
|
| @@ -82,7 +82,7 @@ static void funcMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| TestInterfaceGarbageCollected* impl = V8TestInterfaceGarbageCollected::toNative(info.Holder());
|
| TestInterfaceGarbageCollected* arg;
|
| {
|
| - v8::TryCatch block;
|
| + V8TryPropagate block;
|
| TONATIVE_VOID_INTERNAL(arg, V8TestInterfaceGarbageCollected::toNativeWithTypeCheck(info.GetIsolate(), info[0]));
|
| }
|
| impl->func(arg);
|
| @@ -104,7 +104,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);
|
|
|
|
|