From 0d7b7fec8d9852df16ec71156ae1141049be8369 Mon Sep 17 00:00:00 2001 From: Sam Vervaeck Date: Sun, 13 Aug 2023 15:43:10 +0200 Subject: [PATCH] Remove some unused imports --- compiler/src/checker.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/src/checker.ts b/compiler/src/checker.ts index cc3ba34c7..401934961 100644 --- a/compiler/src/checker.ts +++ b/compiler/src/checker.ts @@ -32,8 +32,6 @@ import { Analyser } from "./analysis"; import { InspectOptions } from "util"; import { TypeKind, TApp, TArrow, TCon, TField, TNil, TPresent, TRegularVar, TVSet, TVSub, Type, TypeBase, TAbsent, TRigidVar, TVar, buildTupleTypeWithLoc, buildTupleType } from "./types"; import { CEmpty, CEqual, CMany, Constraint, ConstraintKind, ConstraintSet } from "./constraints"; -import { warn } from "console"; -import { wrap } from "module"; // export class Qual {