Index: Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
diff --git a/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp b/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
index 0a8d6051f63d5c01706cc66132cb84d663dc2275..21ce7f141380a99c3819b7f033ed1d0af815656a 100644 |
--- a/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
+++ b/Source/bindings/tests/results/core/V8TestInterfaceConstructor.cpp |
@@ -72,7 +72,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info) |
exceptionState.throwIfNeeded(); |
return; |
} |
- TONATIVE_VOID_INTERNAL(dictionaryArg, Dictionary(info[3], info.GetIsolate())); |
+ dictionaryArg = Dictionary(info[3], info.GetIsolate()); |
TONATIVE_VOID_INTERNAL(sequenceStringArg, toImplArray<String>(info[4], 5, info.GetIsolate())); |
TONATIVE_VOID_INTERNAL(sequenceDictionaryArg, toImplArray<Dictionary>(info[5], 6, info.GetIsolate())); |
if (!isUndefinedOrNull(info[6]) && !info[6]->IsObject()) { |
@@ -80,7 +80,7 @@ static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info) |
exceptionState.throwIfNeeded(); |
return; |
} |
- TONATIVE_VOID_INTERNAL(optionalDictionaryArg, Dictionary(info[6], info.GetIsolate())); |
+ optionalDictionaryArg = Dictionary(info[6], info.GetIsolate()); |
optionalTestInterfaceEmptyArg = V8TestInterfaceEmpty::toImplWithTypeCheck(info.GetIsolate(), info[7]); |
} |
ExecutionContext* executionContext = currentExecutionContext(info.GetIsolate()); |