Is it possible to determine the source information (file, line number, column number) of a callback in v8?
function foo(callback) {
var x = callback();
if (typeof x !== "string") {
//hmmm, x is not as expected, I want to know more about the callback.
}
}