| Index: Source/bindings/tests/results/core/V8TestSpecialOperations.cpp
|
| diff --git a/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp b/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp
|
| index 17487d9936609502ee3cf4354e27936fa4e6e98a..9beb001cbee6e9976d43b3d75cf955a582432aad 100644
|
| --- a/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp
|
| +++ b/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp
|
| @@ -100,7 +100,7 @@ static void namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value>
|
| {
|
| TestSpecialOperations* impl = V8TestSpecialOperations::toImpl(info.Holder());
|
| TOSTRING_VOID(V8StringResource<>, propertyName, name);
|
| - TONATIVE_VOID(Node*, propertyValue, V8Node::toImplWithTypeCheck(info.GetIsolate(), v8Value));
|
| + Node* propertyValue = V8Node::toImplWithTypeCheck(info.GetIsolate(), v8Value);
|
| bool result = impl->anonymousNamedSetter(propertyName, propertyValue);
|
| if (!result)
|
| return;
|
|
|