Index: src/runtime/runtime-function.cc |
diff --git a/src/runtime/runtime-function.cc b/src/runtime/runtime-function.cc |
index b0c75bc56a03154ab16c7490cb985ee34271d332..6283f1ee800c8cd2cbda1e6907ca92e2facb96b2 100644 |
--- a/src/runtime/runtime-function.cc |
+++ b/src/runtime/runtime-function.cc |
@@ -446,7 +446,7 @@ RUNTIME_FUNCTION(Runtime_FunctionBindArguments) { |
JSObject::MigrateToMap(bound_function, bound_function_map); |
Handle<String> length_string = isolate->factory()->length_string(); |
PropertyAttributes attr = |
- static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY); |
+ static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY); |
RETURN_FAILURE_ON_EXCEPTION( |
isolate, JSObject::SetOwnPropertyIgnoreAttributes( |
bound_function, length_string, new_length, attr)); |