| Index: Source/bindings/tests/results/V8TestSpecialOperations.cpp
 | 
| diff --git a/Source/bindings/tests/results/V8TestSpecialOperations.cpp b/Source/bindings/tests/results/V8TestSpecialOperations.cpp
 | 
| index 131a5a51884e232ab75f8612fb331bfa9696c4a0..c9e70b93ad88368bac141d8c7f6a36598b25db57 100644
 | 
| --- a/Source/bindings/tests/results/V8TestSpecialOperations.cpp
 | 
| +++ b/Source/bindings/tests/results/V8TestSpecialOperations.cpp
 | 
| @@ -51,7 +51,11 @@ static void namedItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
 | 
|          return;
 | 
|      }
 | 
|      TestSpecialOperations* impl = V8TestSpecialOperations::toNative(info.Holder());
 | 
| -    TOSTRING_VOID(V8StringResource<>, name, info[0]);
 | 
| +    V8StringResource<> name;
 | 
| +    {
 | 
| +        v8::TryCatch block;
 | 
| +        TOSTRING_VOID_NO_DECL(name, info[0]);
 | 
| +    }
 | 
|      bool result0Enabled = false;
 | 
|      RefPtr<Node> result0;
 | 
|      bool result1Enabled = false;
 | 
| 
 |