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 {
294
294
295
295
codeLensToFix . command . arguments = [
296
296
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 ) ,
298
298
oldArgs [ 2 ] . map ( ( position ) => {
299
299
return new vscode . Location (
300
- vscode . Uri . parse ( position . Uri ) ,
300
+ vscode . Uri . parse ( position . uri ) ,
301
301
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 ) ) ;
306
306
} ) ,
307
307
] ;
308
308
}
You can’t perform that action at this time.
0 commit comments