@@ -10,20 +10,20 @@ import {
1010 env ,
1111 WebviewPanel ,
1212} from "vscode" ;
13- import * as cli from "./codeql-cli/cli" ;
14- import { CodeQLCliServer } from "./codeql-cli/cli" ;
13+ import * as cli from ".. /codeql-cli/cli" ;
14+ import { CodeQLCliServer } from ".. /codeql-cli/cli" ;
1515import {
1616 DatabaseEventKind ,
1717 DatabaseItem ,
1818 DatabaseManager ,
19- } from "./databases/local-databases" ;
20- import { showAndLogExceptionWithTelemetry } from "./helpers" ;
19+ } from ".. /databases/local-databases" ;
20+ import { showAndLogExceptionWithTelemetry } from ".. /helpers" ;
2121import {
2222 asError ,
2323 assertNever ,
2424 getErrorMessage ,
2525 getErrorStack ,
26- } from "./pure/helpers-pure" ;
26+ } from ".. /pure/helpers-pure" ;
2727import {
2828 FromResultsViewMsg ,
2929 Interpretation ,
@@ -40,43 +40,43 @@ import {
4040 NavigationDirection ,
4141 getDefaultResultSetName ,
4242 ParsedResultSets ,
43- } from "./pure/interface-types" ;
44- import { Logger } from "./common" ;
43+ } from ".. /pure/interface-types" ;
44+ import { Logger } from ".. /common" ;
4545import {
4646 CompletedQueryInfo ,
4747 interpretResultsSarif ,
4848 interpretGraphResults ,
4949 CompletedLocalQueryInfo ,
50- } from "./query-results" ;
51- import { QueryEvaluationInfo } from "./run-queries-shared" ;
50+ } from ".. /query-results" ;
51+ import { QueryEvaluationInfo } from ".. /run-queries-shared" ;
5252import {
5353 parseSarifLocation ,
5454 parseSarifPlainTextMessage ,
55- } from "./pure/sarif-utils" ;
56- import { WebviewReveal , fileUriToWebviewUri } from "./local-queries/ webview" ;
55+ } from ".. /pure/sarif-utils" ;
56+ import { WebviewReveal , fileUriToWebviewUri } from "./webview" ;
5757import {
5858 tryResolveLocation ,
5959 shownLocationDecoration ,
6060 shownLocationLineDecoration ,
6161 jumpToLocation ,
62- } from "./databases/local-databases/locations" ;
62+ } from ".. /databases/local-databases/locations" ;
6363import {
6464 RawResultSet ,
6565 transformBqrsResultSet ,
6666 ResultSetSchema ,
67- } from "./pure/bqrs-cli-types" ;
67+ } from ".. /pure/bqrs-cli-types" ;
6868import {
6969 AbstractWebview ,
7070 WebviewPanelConfig ,
71- } from "./common/vscode/abstract-webview" ;
72- import { isCanary , PAGE_SIZE } from "./config" ;
73- import { HistoryItemLabelProvider } from "./query-history/history-item-label-provider" ;
74- import { telemetryListener } from "./telemetry" ;
75- import { redactableError } from "./pure/errors" ;
76- import { ResultsViewCommands } from "./common/commands" ;
71+ } from ".. /common/vscode/abstract-webview" ;
72+ import { isCanary , PAGE_SIZE } from ".. /config" ;
73+ import { HistoryItemLabelProvider } from ".. /query-history/history-item-label-provider" ;
74+ import { telemetryListener } from ".. /telemetry" ;
75+ import { redactableError } from ".. /pure/errors" ;
76+ import { ResultsViewCommands } from ".. /common/commands" ;
7777
7878/**
79- * interface .ts
79+ * results-view .ts
8080 * ------------
8181 *
8282 * Displaying query results and linking back to source files when the
0 commit comments