remove unused imports

This commit is contained in:
nora 2023-07-27 22:13:06 +02:00
parent 84cd8eec90
commit 40543b501c
2 changed files with 1 additions and 2 deletions

View file

@ -1,4 +1,4 @@
import { Span, lines } from "./error";
import { lines } from "./error";
it("should extract lines correctly", () => {
const input = "AAA\nmeow\n:3\n\n";

View file

@ -1,4 +1,3 @@
import { AST } from "prettier";
import { Ast, Expr, FunctionDef, Item, Ty, TyFn, varUnreachable } from "./ast";
import * as wasm from "./wasm/defs";