This commit is contained in:
Olivier Gagnon
2021-08-23 02:09:49 -04:00
parent b148b2f0b5
commit 6d2b8b4f6f
16 changed files with 106 additions and 80 deletions
+2 -2
View File
@@ -18,8 +18,8 @@ export class PositionTracker {
const position = this.positions.get(filename);
if (!position) {
return {
row: 0,
column: 0,
row: -1,
column: -1,
};
}
return position;