On Fri, Aug 12, 2011 at 8:35 AM, ~flow <[email protected]> wrote: > i had a look at the nodejs source (0.4.10; includes v8 sources) but was > unable to locate the definition of console.log(). does anyone have a pointer > for me? searching for (case-insensitive) log\(.*\{$ didn't turn out anything > of interest.
I am not familiar with node.js but the actual function may not be named log. I would search for "log" (the word log in double quotes) to find where it is mapping a function name to a function pointer in the console object. -- Bryan White -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
