Lines Matching defs:message

57 // If no message listeners have been registered this one is called
77 Isolate* isolate, MessageTemplate message, const MessageLocation* location,
99 message, argument, start, end, shared_info, bytecode_offset,
106 Handle<JSMessageObject> message) {
107 v8::Local<v8::Message> api_message_obj = v8::Utils::MessageToLocal(message);
110 ReportMessageNoExceptions(isolate, loc, message, v8::Local<v8::Value>());
118 // We pass the exception object into the message handler callback though.
129 // Turn the exception on the message into a string if it is an object.
130 if (message->argument().IsJSObject()) {
132 Handle<Object> argument(message->argument(), isolate);
153 message->set_argument(*stringified);
157 ReportMessageNoExceptions(isolate, loc, message, api_exception_obj);
161 Isolate* isolate, const MessageLocation* loc, Handle<Object> message,
163 v8::Local<v8::Message> api_message_obj = v8::Utils::MessageToLocal(message);
170 DefaultMessageReport(isolate, loc, message);
205 Handle<JSMessageObject> message = Handle<JSMessageObject>::cast(data);
206 Handle<Object> arg = Handle<Object>(message->argument(), isolate);
207 return MessageFormatter::Format(isolate, message->type(), arg);
488 Handle<Object> message,
501 return ErrorUtils::Construct(isolate, target, new_target, message, options,
508 Handle<Object> message, Handle<Object> options, FrameSkipMode mode,
518 message = isolate->factory()->InternalizeUtf8String(
536 // 3. If message is not undefined, then
537 // a. Let msg be ? ToString(message).
540 // c. Perform ! DefinePropertyOrThrow(O, "message", msgDesc).
542 if (!message->IsUndefined(isolate)) {
545 Object::ToString(isolate, message), JSObject);
639 // 5. Let msg be ? Get(O, "message").
852 // Change the message location to point at the property name.
939 // Change the message location to point at the property name.
943 // Change the message location to point at the destructured value.