Lines Matching defs:error
233 // Sub-tags only meaningful for error serialization.
235 // The error is a EvalError. No accompanying data.
237 // The error is a RangeError. No accompanying data.
239 // The error is a ReferenceError. No accompanying data.
241 // The error is a SyntaxError. No accompanying data.
243 // The error is a TypeError. No accompanying data.
245 // The error is a URIError. No accompanying data.
253 // The end of this error information.
973 Maybe<bool> ValueSerializer::WriteJSError(Handle<JSObject> error) {
977 isolate_, error, isolate_->factory()->message_string(), &message_desc);
981 isolate_, error, isolate_->factory()->cause_string(), &cause_desc);
986 if (!JSObject::GetProperty(isolate_, error, "name").ToHandle(&name_object)) {
1030 if (!Object::GetProperty(isolate_, error, isolate_->factory()->stack_string())
2147 Handle<JSObject> error;
2151 .ToHandle(&error)) {
2155 ErrorUtils::SetFormattedStack(isolate_, error, stack);
2156 AddObjectWithID(id, error);
2157 return error;