MCPcopy Index your code
hub / github.com/nodejs/node / getLineAndColumn

Method getLineAndColumn

deps/v8/tools/tickprocessor.mjs:1018–1025  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

1016 }
1017
1018 getLineAndColumn(name) {
1019 const re = /:([0-9]+):([0-9]+)$/;
1020 const array = re.exec(name);
1021 if (!array) {
1022 return null;
1023 }
1024 return { line: array[1], column: array[2] };
1025 }
1026
1027 hasSourceMap() {
1028 return this.sourceMap != null;

Callers 1

formatFunctionNameMethod · 0.95

Calls 1

execMethod · 0.45

Tested by

no test coverage detected