Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
index b50d7f68d1e7affffce39cccfe8de7330c8c622d..ac756c5adcba60b2b5be8bd74e6bc54d8c9d694a 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp |
@@ -50,8 +50,9 @@ static void namedItemMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
V8StringResource<> name; |
{ |
name = info[0]; |
- if (!name.prepare()) |
+ if (!name.prepare()) { |
return; |
+ } |
} |
NodeOrNodeList result; |
impl->getItem(name, result); |
@@ -92,7 +93,6 @@ static void namedPropertySetter(v8::Local<v8::Name> name, v8::Local<v8::Value> v |
Node* propertyValue = V8Node::toImplWithTypeCheck(info.GetIsolate(), v8Value); |
if (!propertyValue && !isUndefinedOrNull(v8Value)) { |
exceptionState.throwTypeError("The provided value is not of type 'Node'."); |
- exceptionState.throwIfNeeded(); |
return; |
} |
bool result = impl->anonymousNamedSetter(propertyName, propertyValue); |
@@ -115,7 +115,7 @@ static void namedPropertyQuery(v8::Local<v8::Name> name, const v8::PropertyCallb |
v8::String::Utf8Value namedProperty(name); |
ExceptionState exceptionState(ExceptionState::GetterContext, *namedProperty, "TestSpecialOperations", info.Holder(), info.GetIsolate()); |
bool result = impl->namedPropertyQuery(propertyName, exceptionState); |
- if (exceptionState.throwIfNeeded()) |
+ if (exceptionState.hadException()) |
return; |
if (!result) |
return; |
@@ -135,7 +135,7 @@ static void namedPropertyEnumerator(const v8::PropertyCallbackInfo<v8::Array>& i |
Vector<String> names; |
ExceptionState exceptionState(ExceptionState::EnumerationContext, "TestSpecialOperations", info.Holder(), info.GetIsolate()); |
impl->namedPropertyEnumerator(names, exceptionState); |
- if (exceptionState.throwIfNeeded()) |
+ if (exceptionState.hadException()) |
return; |
v8::Local<v8::Array> v8names = v8::Array::New(info.GetIsolate(), names.size()); |
for (size_t i = 0; i < names.size(); ++i) { |