Index: Source/bindings/tests/results/V8TestInterfaceNamedConstructor2.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfaceNamedConstructor2.cpp b/Source/bindings/tests/results/V8TestInterfaceNamedConstructor2.cpp |
index c18e5d1c229a78acc878023ef25c16ff5882cef7..ecb70374a8b5dcec235b814db73ca9743706e17e 100644 |
--- a/Source/bindings/tests/results/V8TestInterfaceNamedConstructor2.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfaceNamedConstructor2.cpp |
@@ -71,7 +71,10 @@ static void V8TestInterfaceNamedConstructor2ConstructorCallback(const v8::Functi |
throwMinimumArityTypeErrorForConstructor("TestInterfaceNamedConstructor2", 1, info.Length(), info.GetIsolate()); |
return; |
} |
- TOSTRING_VOID(V8StringResource<>, stringArg, info[0]); |
+ V8StringResource<> stringArg; |
+ { |
+ TOSTRING_VOID_INTERNAL(stringArg, info[0]); |
+ } |
RefPtr<TestInterfaceNamedConstructor2> impl = TestInterfaceNamedConstructor2::createForJSConstructor(*document, stringArg); |
v8::Handle<v8::Object> wrapper = info.Holder(); |