Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Lysxia committed Oct 31, 2024
1 parent 187b214 commit 069f2c7
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions vscode/src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
import { workspace, ExtensionContext, Range, Uri, window } from "vscode";
import * as vscode from "vscode";
import * as os from "os";
import child_process from "child_process";
import process from "process";

import {
DocumentUri,
LanguageClient,
LanguageClientOptions,
NotificationType,
RequestType,
ServerOptions,
Executable,
} from "vscode-languageclient/node";
import { access, existsSync } from "fs";
import { runInContext } from "vm";

function getServerExecutable(context): Executable {
const lspPath: string | undefined = workspace.getConfiguration("creusot").get("lspPath");
Expand Down Expand Up @@ -79,7 +72,6 @@ async function createTests(client: LanguageClient) {
for (const item of items) {
const test = controller.createTestItem(item.id, item.label, uri);
test.range = mkRange(item.range);
console.log(test.range);
fileItem.children.add(test);
}
}
Expand Down

0 comments on commit 069f2c7

Please sign in to comment.