This repository was archived by the owner on Nov 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 11{
22 "editor.insertSpaces" : false ,
33 "typescript.format.semicolons" : " insert" ,
4+ // "typescript.referencesCodeLens.enabled": true,
45 "typescript.tsserver.experimental.enableProjectDiagnostics" : true ,
56 "editor.codeActionsOnSave" : {
67 // "source.fixAll": true,
Original file line number Diff line number Diff line change @@ -72,8 +72,6 @@ export class CallItem {
7272
7373class CallsModel implements SymbolItemNavigation < CallItem > , SymbolItemEditorHighlights < CallItem > {
7474
75- readonly source = 'callHierarchy' ;
76-
7775 readonly roots : CallItem [ ] = [ ] ;
7876
7977 private readonly _onDidChange = new vscode . EventEmitter < CallsModel > ( ) ;
@@ -158,9 +156,7 @@ class CallItemDataProvider implements vscode.TreeDataProvider<CallItem> {
158156
159157 private readonly _modelListener : vscode . Disposable ;
160158
161- constructor (
162- private _model : CallsModel
163- ) {
159+ constructor ( private _model : CallsModel ) {
164160 this . _modelListener = _model . onDidChange ( e => this . _emitter . fire ( e instanceof CallItem ? e : undefined ) ) ;
165161 }
166162
You can’t perform that action at this time.
0 commit comments