Index: Source/bindings/tests/results/V8TestSpecialOperations.cpp |
diff --git a/Source/bindings/tests/results/V8TestSpecialOperations.cpp b/Source/bindings/tests/results/V8TestSpecialOperations.cpp |
index b6418d4d3c0729c2901ba6d561959968ab6fc56c..5d26c6506ea4e7ab4fe3ba78c2c86a46fe92827e 100644 |
--- a/Source/bindings/tests/results/V8TestSpecialOperations.cpp |
+++ b/Source/bindings/tests/results/V8TestSpecialOperations.cpp |
@@ -51,7 +51,7 @@ static void namedItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
return; |
} |
TestSpecialOperations* impl = V8TestSpecialOperations::toNative(info.Holder()); |
- V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, name, info[0]); |
+ V8STRINGRESOURCE_PREPARE_VOID(V8StringResource<>, name, info[0]); |
bool result0Enabled = false; |
RefPtr<Node> result0; |
bool result1Enabled = false; |
@@ -107,7 +107,7 @@ static void namedPropertyGetterCallback(v8::Local<v8::String> name, const v8::Pr |
static void namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value> v8Value, const v8::PropertyCallbackInfo<v8::Value>& info) |
{ |
TestSpecialOperations* impl = V8TestSpecialOperations::toNative(info.Holder()); |
- V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, propertyName, name); |
+ V8STRINGRESOURCE_PREPARE_VOID(V8StringResource<>, propertyName, name); |
V8TRYCATCH_VOID(Node*, propertyValue, V8Node::toNativeWithTypeCheck(info.GetIsolate(), v8Value)); |
bool result = impl->anonymousNamedSetter(propertyName, propertyValue); |
if (!result) |