Commit ffd668f9 authored by verwaest@chromium.org's avatar verwaest@chromium.org

Use result of SetOwnPropertyIgnoreAttributes in accessors

BUG=
R=ishell@chromium.org

Review URL: https://codereview.chromium.org/415133003

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22607 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 77a37e44
......@@ -149,7 +149,7 @@ bool SetPropertyOnInstanceIfInherited(
// properties.
if (!object->map()->is_extensible()) return true;
JSObject::SetOwnPropertyIgnoreAttributes(object, Utils::OpenHandle(*name),
value, NONE);
value, NONE).Check();
}
return true;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment