Home | History | Annotate | Download | only in src

Lines Matching full:receiver

1264  *     1: Receiver
1291 FrameDetails.prototype.receiver = function() {
1456 FrameMirror.prototype.receiver = function() {
1457 return MakeMirror(this.details_.receiver());
1592 // Format frame invoaction (receiver, function and arguments).
1595 var receiver = this.receiver();
1603 // If the receiver has a className which is 'global' don't display it.
1605 !receiver.className || (receiver.className() != 'global');
1607 result += receiver.toText();
1609 // Try to find the function as a property in the receiver. Include the
1612 if (receiver.isObject()) {
1613 for (var r = receiver;
1620 // The function invoked was found on the receiver. Use the property name
1638 // The function invoked was not found on the receiver. Use the function
2358 content.receiver = this.serializeReference(mirror.receiver());