Is it possible in code to access ["[[FunctionLocation]]"]
property that google chrome developer tools show when using console log on a function ?
Access function location programmatically
12.1k Views Asked by Sushruth At
3
There are 3 best solutions below
0

I know that it has been a while when this question was posted. Now, I had the same problem. I need to access the function location on the runtime.
Fortunately, NodeJS did a great job by exposing some v8 internal properties through the inspector
module.
I have written a small module called func-loc
that helps to retrieve a function location on the runtime.
Example:
const { locate } = require('func-loc');
const fn = () => {
console.log('Hello there');
};
(async () => {
const result = await locate(fn);
console.log(result);
// Will result: { source: 'file://__BASE_FOLDER__/func-loc/this-file.js', line: 3, column: 12 }
})();
Hope that helps.
1

console.log can show the function name in Chrome with limited language support.
I've found the function name useful in debugging callbacks and when using the observer pattern. Note this requires naming functions to work (anonymous function names are obviously blank).
function myFn() {}
if (typeof myFn === 'function') {
console.log('Name of function', myFn.name)
}
Outputs Name of function myFn
The answer, for now, is no.
The
[[FunctionLocation]]
property you see in Inspector is added inV8Debugger::internalProperties()
in the debugger's C++ code, which uses another C++ functionV8Debugger::functionLocation()
to gather information about the function.functionLocation()
then uses a number of V8-specific C++ APIs such asv8::Function::GetScriptLineNumber()
andGetScriptColumnNumber()
to find out the exact information.All APIs described above are exclusively available to C++ code, not JavaScript code. In other words, JavaScript code on the webpage does not have direct access to this information.
However, you may be able to get access to the properties using a Chrome extension. More recently, the V8 JavaScript engine used by Chrome has added support to access these properties through the Chrome DevTools Protocol. In particular, you can get the internal properties through the
Runtime.getProperties
call. Additionally, it seems like Chrome extensions may be able to interact with the DevTools protocol throughchrome.debugger
.A proof of concept for using the DevTools protocol in Node.js, which has direct access to the protocol using the Inspector built-in module (helpfully mentioned by Mohamed in their answer):
yields
with Node.js v12.3.1.