We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
parseInt
1 parent 0ed03c1 commit a5b9594Copy full SHA for a5b9594
extensions/ql-vscode/scripts/source-map.ts
@@ -87,8 +87,8 @@ async function extractSourceMap() {
87
null,
88
async function (consumer) {
89
return consumer.originalPositionFor({
90
- line: parseInt(line),
91
- column: parseInt(column),
+ line: parseInt(line, 10),
+ column: parseInt(column, 10),
92
});
93
},
94
);
@@ -126,8 +126,8 @@ async function extractSourceMap() {
126
127
128
129
130
131
132
133
0 commit comments