| Index: Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp | 
| diff --git a/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp b/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp | 
| index bfe2230fadab2d8f43956cb2f594d354b3111b63..98c5a739efbd2947be3f227516c38aba0ea91367 100644 | 
| --- a/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp | 
| +++ b/Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp | 
| @@ -50,7 +50,11 @@ static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) | 
| throwArityTypeErrorForConstructor("TestInterfaceConstructor3", 1, info.Length(), info.GetIsolate()); | 
| return; | 
| } | 
| -    TOSTRING_VOID(V8StringResource<>, stringArg, info[0]); | 
| +    V8StringResource<> stringArg; | 
| +    { | 
| +        v8::TryCatch block; | 
| +        TOSTRING_VOID_NO_DECL(stringArg, info[0]); | 
| +    } | 
| RefPtr<TestInterfaceConstructor3> impl = TestInterfaceConstructor3::create(stringArg); | 
|  | 
| v8::Handle<v8::Object> wrapper = info.Holder(); | 
|  |