Move query-editor

This commit is contained in:
Nora
2023-04-20 09:29:52 +00:00
parent 01c1888ded
commit f866545a40
2 changed files with 7 additions and 7 deletions

View File

@@ -118,7 +118,7 @@ import {
} from "./common/commands";
import { LocalQueries } from "./local-queries";
import { getAstCfgCommands } from "./ast-cfg-commands";
import { getQueryEditorCommands } from "./query-editor";
import { getQueryEditorCommands } from "./language-support/query-editor";
import { App } from "./common/app";
import { registerCommandWithErrorHandling } from "./common/vscode/commands";
import { DebuggerUI } from "./debugger/debugger-ui";

View File

@@ -1,11 +1,11 @@
import { Uri, window } from "vscode";
import { CodeQLCliServer } from "./cli";
import { QueryRunner } from "./query-server";
import { CodeQLCliServer } from "../cli";
import { QueryRunner } from "../query-server";
import { basename, join } from "path";
import { getErrorMessage } from "./pure/helpers-pure";
import { redactableError } from "./pure/errors";
import { showAndLogExceptionWithTelemetry } from "./helpers";
import { AppCommandManager, QueryEditorCommands } from "./common/commands";
import { getErrorMessage } from "../pure/helpers-pure";
import { redactableError } from "../pure/errors";
import { showAndLogExceptionWithTelemetry } from "../helpers";
import { AppCommandManager, QueryEditorCommands } from "../common/commands";
type QueryEditorOptions = {
commandManager: AppCommandManager;