Index: src/messages.cc |
diff --git a/src/messages.cc b/src/messages.cc |
index 7950ad814db5502f90c015005eb0d80d01f0d324..a487431e6cf24cd0d74a9ed1f8357856c8bb986f 100644 |
--- a/src/messages.cc |
+++ b/src/messages.cc |
@@ -84,7 +84,7 @@ |
Handle<Object> argument(message->argument(), isolate); |
Handle<Object> args[] = {argument}; |
MaybeHandle<Object> maybe_stringified = Execution::TryCall( |
- isolate, isolate->no_side_effects_to_string_fun(), |
+ isolate, isolate->to_detail_string_fun(), |
isolate->factory()->undefined_value(), arraysize(args), args); |
Handle<Object> stringified; |
if (!maybe_stringified.ToHandle(&stringified)) { |
@@ -317,7 +317,7 @@ |
if (arg->IsString()) { |
result_string = Handle<String>::cast(arg); |
} else { |
- Handle<JSFunction> fun = isolate->no_side_effects_to_string_fun(); |
+ Handle<JSFunction> fun = isolate->no_side_effect_to_string_fun(); |
MaybeHandle<Object> maybe_result = |
Execution::TryCall(isolate, fun, factory->undefined_value(), 1, &arg); |
@@ -391,5 +391,94 @@ |
} |
+MaybeHandle<String> ErrorToStringHelper::Stringify(Isolate* isolate, |
+ Handle<JSObject> error) { |
+ VisitedScope scope(this, error); |
+ if (scope.has_visited()) return isolate->factory()->empty_string(); |
+ |
+ Handle<String> name; |
+ Handle<String> message; |
+ Handle<Name> internal_key = isolate->factory()->internal_error_symbol(); |
+ Handle<String> message_string = |
+ isolate->factory()->NewStringFromStaticChars("message"); |
+ Handle<String> name_string = isolate->factory()->name_string(); |
+ LookupIterator internal_error_lookup( |
+ error, internal_key, LookupIterator::PROTOTYPE_CHAIN_SKIP_INTERCEPTOR); |
+ |
+ // Find out whether an internally created error object is on the prototype |
+ // chain. If the name property is found on a holder prior to the internally |
+ // created error object, use that name property. Otherwise just use the |
+ // constructor name to avoid triggering possible side effects. |
+ // Similar for the message property. If the message property shadows the |
+ // internally created error object, use that message property. Otherwise |
+ // use empty string as message. |
+ LookupIterator name_lookup(error, name_string, |
+ LookupIterator::PROTOTYPE_CHAIN_SKIP_INTERCEPTOR); |
+ if (internal_error_lookup.IsFound() && |
+ !ShadowsInternalError(isolate, &name_lookup, &internal_error_lookup)) { |
+ Handle<JSObject> holder = internal_error_lookup.GetHolder<JSObject>(); |
+ name = JSReceiver::GetConstructorName(holder); |
+ } else { |
+ ASSIGN_RETURN_ON_EXCEPTION( |
+ isolate, name, |
+ GetStringifiedProperty(isolate, &name_lookup, |
+ isolate->factory()->Error_string()), |
+ String); |
+ } |
+ |
+ LookupIterator message_lookup( |
+ error, message_string, LookupIterator::PROTOTYPE_CHAIN_SKIP_INTERCEPTOR); |
+ if (internal_error_lookup.IsFound() && |
+ !ShadowsInternalError(isolate, &message_lookup, &internal_error_lookup)) { |
+ message = isolate->factory()->empty_string(); |
+ } else { |
+ ASSIGN_RETURN_ON_EXCEPTION( |
+ isolate, message, |
+ GetStringifiedProperty(isolate, &message_lookup, |
+ isolate->factory()->empty_string()), |
+ String); |
+ } |
+ |
+ if (name->length() == 0) return message; |
+ if (message->length() == 0) return name; |
+ IncrementalStringBuilder builder(isolate); |
+ builder.AppendString(name); |
+ builder.AppendCString(": "); |
+ builder.AppendString(message); |
+ return builder.Finish(); |
+} |
+ |
+ |
+bool ErrorToStringHelper::ShadowsInternalError( |
+ Isolate* isolate, LookupIterator* property_lookup, |
+ LookupIterator* internal_error_lookup) { |
+ if (!property_lookup->IsFound()) return false; |
+ Handle<JSObject> holder = property_lookup->GetHolder<JSObject>(); |
+ // It's fine if the property is defined on the error itself. |
+ if (holder.is_identical_to(property_lookup->GetReceiver())) return true; |
+ PrototypeIterator it(isolate, holder, PrototypeIterator::START_AT_RECEIVER); |
+ while (true) { |
+ if (it.IsAtEnd()) return false; |
+ if (it.IsAtEnd(internal_error_lookup->GetHolder<JSObject>())) return true; |
+ it.AdvanceIgnoringProxies(); |
+ } |
+} |
+ |
+ |
+MaybeHandle<String> ErrorToStringHelper::GetStringifiedProperty( |
+ Isolate* isolate, LookupIterator* property_lookup, |
+ Handle<String> default_value) { |
+ if (!property_lookup->IsFound()) return default_value; |
+ Handle<Object> obj; |
+ ASSIGN_RETURN_ON_EXCEPTION(isolate, obj, Object::GetProperty(property_lookup), |
+ String); |
+ if (obj->IsUndefined()) return default_value; |
+ if (!obj->IsString()) { |
+ ASSIGN_RETURN_ON_EXCEPTION(isolate, obj, Object::ToString(isolate, obj), |
+ String); |
+ } |
+ return Handle<String>::cast(obj); |
+} |
+ |
} // namespace internal |
} // namespace v8 |