Lines Matching defs:msg
537 // a. Let msg be ? ToString(message).
538 // b. Let msgDesc be the PropertyDescriptor{[[Value]]: msg, [[Writable]]:
639 // 5. Let msg be ? Get(O, "message").
640 // 6. If msg is undefined, let msg be the empty String; otherwise let msg be
641 // ? ToString(msg).
644 Handle<String> msg;
646 isolate, msg,
649 // 7. If name is the empty String, return msg.
650 // 8. If msg is the empty String, return name.
651 if (name->length() == 0) return msg;
652 if (msg->length() == 0) return name;
655 // the code unit 0x0020 (SPACE), and msg.
659 builder.AppendString(msg);
677 Handle<String> msg;
679 .ToHandle(&msg)) {
686 return msg;
702 Handle<String> msg = DoFormatMessage(isolate, index, arg0, arg1, arg2);
710 return ErrorUtils::Construct(isolate, constructor, constructor, msg, options,