File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ import {
26
26
activate as archiveFilesystemProvider_activate ,
27
27
zipArchiveScheme ,
28
28
} from "./archive-filesystem-provider" ;
29
- import QuickEvalCodeLensProvider from "./local-queries/quick-eval-code-lens-provider" ;
30
29
import { CodeQLCliServer } from "./cli" ;
31
30
import {
32
31
CliConfigListener ,
@@ -119,7 +118,7 @@ import {
119
118
PreActivationCommands ,
120
119
QueryServerCommands ,
121
120
} from "./common/commands" ;
122
- import { LocalQueries } from "./local-queries" ;
121
+ import { LocalQueries , QuickEvalCodeLensProvider } from "./local-queries" ;
123
122
import { getAstCfgCommands } from "./ast-cfg-commands" ;
124
123
import { App } from "./common/app" ;
125
124
import { registerCommandWithErrorHandling } from "./common/vscode/commands" ;
Original file line number Diff line number Diff line change 1
1
export * from "./local-queries" ;
2
2
export * from "./local-query-run" ;
3
+ export * from "./quick-eval-code-lens-provider" ;
4
+ export * from "./quick-query" ;
Original file line number Diff line number Diff line change 7
7
} from "vscode" ;
8
8
import { isQuickEvalCodelensEnabled } from "../config" ;
9
9
10
- class QuickEvalCodeLensProvider implements CodeLensProvider {
10
+ export class QuickEvalCodeLensProvider implements CodeLensProvider {
11
11
async provideCodeLenses ( document : TextDocument ) : Promise < CodeLens [ ] > {
12
12
const codeLenses : CodeLens [ ] = [ ] ;
13
13
@@ -43,5 +43,3 @@ class QuickEvalCodeLensProvider implements CodeLensProvider {
43
43
return codeLenses ;
44
44
}
45
45
}
46
-
47
- export default QuickEvalCodeLensProvider ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import {
21
21
readdir ,
22
22
} from "fs-extra" ;
23
23
import { ensureMetadataIsComplete , InitialQueryInfo } from "./query-results" ;
24
- import { isQuickQueryPath } from "./local-queries/quick-query " ;
24
+ import { isQuickQueryPath } from "./local-queries" ;
25
25
import { nanoid } from "nanoid" ;
26
26
import { CodeQLCliServer } from "./cli" ;
27
27
import { SELECT_QUERY_NAME } from "./contextual/locationFinder" ;
You can’t perform that action at this time.
0 commit comments