Home | History | Annotate | Download | only in debug

Lines Matching refs:Receiver

1445 GeneratorMirror.prototype.receiver = function() {
1646 * 1: Receiver
1673 FrameDetails.prototype.receiver = function() {
1855 FrameMirror.prototype.receiver = function() {
1856 return MakeMirror(this.details_.receiver());
2023 // Format frame invoaction (receiver, function and arguments).
2026 var receiver = this.receiver();
2034 // If the receiver has a className which is 'global' don't display it.
2036 !receiver.className || (receiver.className() != 'global');
2038 result += receiver.toText();
2040 // Try to find the function as a property in the receiver. Include the
2043 if (receiver.isObject()) {
2044 for (var r = receiver;
2051 // The function invoked was found on the receiver. Use the property name
2069 // The function invoked was not found on the receiver. Use the function
2788 content.receiver = this.serializeReference(mirror.receiver())
2919 content.receiver = this.serializeReference(mirror.receiver());