Can I override the behavior of the Function object so that I can inject behavior prior t every function call, and then carry on as normal? Specifically, (though the general idea is intriguing in itself) can I log to the console every function call without having to insert console.log statements everywhere? And then the normal behavior goes on?

I do recognize that this will likely have significant performance problems; I have no intention of having this run typically, even in my development environment. But if it works it seems an elegant solution to get a 1000 meter view on the running code. And I suspect that the answer will show me something deeper about javascript.

link|improve this question

I really hope its not possible :-) – stefan Mar 7 '11 at 23:26
2  
Already answered here: stackoverflow.com/questions/5033836/… – lwburk Mar 7 '11 at 23:27
I did see that...it doesn't quite do what what I am looking for. I want something that attaches to all function calls, that one just hits the global namespace and doesn't drill down. I will likely use it as a base to do the job recursively if I don't find a better answer, but I am very interested to know if it can be done by tweaking the base Function object itself. – Matthew Nichols Mar 7 '11 at 23:36
1  
Technically, the way to go about this would probably be to override Function.prototype.call with a wrapper method. If you do this from Chrome's console, you'll immediately see logs show up as you type (as it runs functions to eval what you're typing.) However, it spectacularly explodes if you try to put it in a real page. – Nathan Ostgard Mar 8 '11 at 7:12
1  
@Nathan..if you put a code sample up as an answer I will likely mark it as accepted irrespective of it blowing up or not, since this is exactly the sort of deep mechanics I was looking for. – Matthew Nichols Mar 8 '11 at 14:32
show 1 more comment
feedback

2 Answers

up vote 1 down vote accepted

The obvious answer is something like the following:

var origCall = Function.prototype.call;
Function.prototype.call = function (thisArg) {
    console.log("calling a function");

    var args = Array.prototype.slice.call(arguments, 1);
    origCall.apply(thisArg, args);
};

But this actually immediately enters an infinite loop, because the very act of calling console.log executes a function call, which calls console.log, which executes a function call, which calls console.log, which...

Point being, I'm not sure this is possible.

link|improve this answer
feedback

I am getting SOME results and no page crashes with the following :

(function () {
  var 
    origCall = Function.prototype.call,
    log = document.getElementById ('call_log');  

  // Override call only if call_log element is present    
  log && (Function.prototype.call = function (self) {
    var r = (typeof self === 'string' ? '"' + self + '"' : self) + '.' + this + ' ('; 
    for (var i = 1; i < arguments.length; i++) r += (i > 1 ? ', ' : '') + arguments[i];  
    log.innerHTML += r + ')<br/>';



    this.apply (self, Array.prototype.slice.apply (arguments, [1]));
  });
}) ();

Only tested in Chrome version 9.xxx.

It is certainly not logging all function calls, but it is logging some! I suspect only actual calls to 'call' intself are being processed

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.