some cleanup

This commit is contained in:
nora 2023-07-23 21:49:52 +02:00
parent 5c6ade6cbb
commit 000f17b97e
6 changed files with 22 additions and 30 deletions

View file

@ -1,4 +1,3 @@
import { check } from "prettier";
import {
Ast,
COMPARISON_KINDS,
@ -6,7 +5,6 @@ import {
EQUALITY_KINDS,
Expr,
ExprBinary,
ExprCall,
ExprUnary,
Folder,
Identifier,
@ -14,11 +12,9 @@ import {
Resolution,
Ty,
TyFn,
TyVar,
Type,
binaryExprPrecedenceClass,
fold_ast,
super_fold_expr,
} from "./ast";
import { CompilerError, Span } from "./error";
import { printTy } from "./printer";