Index: Source/bindings/tests/results/V8TestObject.cpp |
diff --git a/Source/bindings/tests/results/V8TestObject.cpp b/Source/bindings/tests/results/V8TestObject.cpp |
index 048cb40b215a47b3a2d4666c8091a8e6d15cf845..142cf2cf4fb3108628b1dd3fbec658811efa28ca 100644 |
--- a/Source/bindings/tests/results/V8TestObject.cpp |
+++ b/Source/bindings/tests/results/V8TestObject.cpp |
@@ -8164,13 +8164,14 @@ static void overloadedMethodJ1Method(const v8::FunctionCallbackInfo<v8::Value>& |
static void overloadedMethodJ2Method(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
+ ExceptionState exceptionState(ExceptionState::ExecutionContext, "overloadedMethodJ", "TestObject", info.Holder(), info.GetIsolate()); |
TestObject* impl = V8TestObject::toImpl(info.Holder()); |
TestDictionary* testDictionaryArg; |
{ |
v8::TryCatch block; |
V8RethrowTryCatchScope rethrow(block); |
if (!info[0]->IsUndefined()) { |
- TONATIVE_VOID_INTERNAL(testDictionaryArg, V8TestDictionary::toImpl(info.GetIsolate(), info[0])); |
+ TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(testDictionaryArg, V8TestDictionary::toImpl(info.GetIsolate(), info[0], exceptionState), exceptionState); |
} else { |
testDictionaryArg = TestDictionary::create(); |
} |