File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
extensions/ql-vscode/src/log-insights Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -59,18 +59,22 @@ export class SummaryLanguageSupport extends DisposableObject {
59
59
super ( ) ;
60
60
61
61
this . push (
62
- window . onDidChangeActiveTextEditor ( this . handleDidChangeActiveTextEditor ) ,
62
+ window . onDidChangeActiveTextEditor (
63
+ this . handleDidChangeActiveTextEditor . bind ( this ) ,
64
+ ) ,
63
65
) ;
64
66
this . push (
65
67
window . onDidChangeTextEditorSelection (
66
- this . handleDidChangeTextEditorSelection ,
68
+ this . handleDidChangeTextEditorSelection . bind ( this ) ,
67
69
) ,
68
70
) ;
69
71
this . push (
70
- workspace . onDidCloseTextDocument ( this . handleDidCloseTextDocument ) ,
72
+ workspace . onDidCloseTextDocument (
73
+ this . handleDidCloseTextDocument . bind ( this ) ,
74
+ ) ,
71
75
) ;
72
76
73
- this . push ( commandRunner ( "codeQL.gotoQL" , this . handleGotoQL ) ) ;
77
+ this . push ( commandRunner ( "codeQL.gotoQL" , this . handleGotoQL . bind ( this ) ) ) ;
74
78
}
75
79
76
80
/**
You can’t perform that action at this time.
0 commit comments