Index: Source/bindings/tests/results/V8TestTypedefs.cpp |
diff --git a/Source/bindings/tests/results/V8TestTypedefs.cpp b/Source/bindings/tests/results/V8TestTypedefs.cpp |
index 44f04926d2d7e5d32c830e6bb27c03099c5def60..db8c9025bc3e4515aaa9ab4fd7c98aacc2b07a50 100644 |
--- a/Source/bindings/tests/results/V8TestTypedefs.cpp |
+++ b/Source/bindings/tests/results/V8TestTypedefs.cpp |
@@ -183,7 +183,8 @@ static void uLongLongMethodTestInterfaceEmptyTypeSequenceArgMethod(const v8::Fun |
V8RethrowTryCatchScope rethrow(block); |
TONATIVE_VOID_INTERNAL(testInterfaceEmptyTypeSequenceArg, (toRefPtrNativeArray<TestInterfaceEmpty, V8TestInterfaceEmpty>(info[0], 1, info.GetIsolate()))); |
} |
- v8SetReturnValue(info, static_cast<double>(impl->uLongLongMethodTestInterfaceEmptyTypeSequenceArg(testInterfaceEmptyTypeSequenceArg))); |
+ unsigned long long result = impl->uLongLongMethodTestInterfaceEmptyTypeSequenceArg(testInterfaceEmptyTypeSequenceArg); |
+ v8SetReturnValue(info, static_cast<double>(result)); |
} |
static void uLongLongMethodTestInterfaceEmptyTypeSequenceArgMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) |
@@ -232,7 +233,8 @@ static void arrayOfStringsMethodArrayOfStringsArgMethod(const v8::FunctionCallba |
V8RethrowTryCatchScope rethrow(block); |
TONATIVE_VOID_INTERNAL(arrayOfStringsArg, toNativeArray<String>(info[0], 1, info.GetIsolate())); |
} |
- v8SetReturnValue(info, v8Array(impl->arrayOfStringsMethodArrayOfStringsArg(arrayOfStringsArg), info.Holder(), info.GetIsolate())); |
+ Vector<String> result = impl->arrayOfStringsMethodArrayOfStringsArg(arrayOfStringsArg); |
+ v8SetReturnValue(info, v8Array(result, info.Holder(), info.GetIsolate())); |
} |
static void arrayOfStringsMethodArrayOfStringsArgMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) |
@@ -255,7 +257,8 @@ static void stringArrayMethodStringArrayArgMethod(const v8::FunctionCallbackInfo |
V8RethrowTryCatchScope rethrow(block); |
TONATIVE_VOID_INTERNAL(stringArrayArg, toNativeArray<String>(info[0], 1, info.GetIsolate())); |
} |
- v8SetReturnValue(info, v8Array(impl->stringArrayMethodStringArrayArg(stringArrayArg), info.Holder(), info.GetIsolate())); |
+ Vector<String> result = impl->stringArrayMethodStringArrayArg(stringArrayArg); |
+ v8SetReturnValue(info, v8Array(result, info.Holder(), info.GetIsolate())); |
} |
static void stringArrayMethodStringArrayArgMethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) |