Revision: 21842
Author: [email protected]
Date: Fri Jun 13 13:39:01 2014 UTC
Log: Fix clang build after r21839
[email protected]
Review URL: https://codereview.chromium.org/330793003
http://code.google.com/p/v8/source/detail?r=21842
Modified:
/branches/bleeding_edge/src/runtime.cc
=======================================
--- /branches/bleeding_edge/src/runtime.cc Fri Jun 13 12:19:04 2014 UTC
+++ /branches/bleeding_edge/src/runtime.cc Fri Jun 13 13:39:01 2014 UTC
@@ -8249,8 +8249,10 @@
Handle<String> length_string = isolate->factory()->length_string();
PropertyAttributes attr =
static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY);
- JSObject::SetOwnPropertyIgnoreAttributes(bound_function, length_string,
- new_length, attr);
+ RETURN_FAILURE_ON_EXCEPTION(
+ isolate,
+ JSObject::SetOwnPropertyIgnoreAttributes(bound_function,
length_string,
+ new_length, attr));
return *bound_function;
}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.