| Index: Source/bindings/tests/results/V8TestInterfaceConstructor.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp b/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp
|
| index 821d801dcad30ed8a0fd8c6c7ef39e74992ec205..e2a6240f9f73c58ca985085daf48adf0baf17484 100644
|
| --- a/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp
|
| +++ b/Source/bindings/tests/results/V8TestInterfaceConstructor.cpp
|
| @@ -74,7 +74,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| Dictionary optionalDictionaryArg;
|
| TestInterfaceEmpty* optionalTestInterfaceEmptyArg;
|
| {
|
| - v8::TryCatch block;
|
| + V8TryPropagate block;
|
| TONATIVE_VOID_INTERNAL(doubleArg, static_cast<double>(info[0]->NumberValue()));
|
| TOSTRING_VOID_INTERNAL(stringArg, info[1]);
|
| TONATIVE_VOID_INTERNAL(testInterfaceEmptyArg, V8TestInterfaceEmpty::toNativeWithTypeCheck(info.GetIsolate(), info[2]));
|
| @@ -82,7 +82,6 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| if (!dictionaryArg.isUndefinedOrNull() && !dictionaryArg.isObject()) {
|
| exceptionState.throwTypeError("parameter 4 ('dictionaryArg') is not an object.");
|
| exceptionState.throwIfNeeded();
|
| - block.ReThrow();
|
| return;
|
| }
|
| TONATIVE_VOID_INTERNAL(sequenceStringArg, toNativeArray<String>(info[4], 5, info.GetIsolate()));
|
| @@ -91,7 +90,6 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| if (!optionalDictionaryArg.isUndefinedOrNull() && !optionalDictionaryArg.isObject()) {
|
| exceptionState.throwTypeError("parameter 7 ('optionalDictionaryArg') is not an object.");
|
| exceptionState.throwIfNeeded();
|
| - block.ReThrow();
|
| return;
|
| }
|
| TONATIVE_VOID_INTERNAL(optionalTestInterfaceEmptyArg, V8TestInterfaceEmpty::toNativeWithTypeCheck(info.GetIsolate(), info[7]));
|
|
|