File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -294,15 +294,15 @@ export class SessionManager implements Middleware {
294294
295295 codeLensToFix . command . arguments = [
296296 vscode . Uri . parse ( oldArgs [ 0 ] ) ,
297- new vscode . Position ( oldArgs [ 1 ] . Line , oldArgs [ 1 ] . Character ) ,
297+ new vscode . Position ( oldArgs [ 1 ] . line , oldArgs [ 1 ] . character ) ,
298298 oldArgs [ 2 ] . map ( ( position ) => {
299299 return new vscode . Location (
300- vscode . Uri . parse ( position . Uri ) ,
300+ vscode . Uri . parse ( position . uri ) ,
301301 new vscode . Range (
302- position . Range . Start . Line ,
303- position . Range . Start . Character ,
304- position . Range . End . Line ,
305- position . Range . End . Character ) ) ;
302+ position . range . start . line ,
303+ position . range . start . character ,
304+ position . range . end . line ,
305+ position . range . end . character ) ) ;
306306 } ) ,
307307 ] ;
308308 }
You can’t perform that action at this time.
0 commit comments