Remove dangling debug statement in checker.ts
This commit is contained in:
parent
31e99fd8ba
commit
4939ee5e08
1 changed files with 0 additions and 1 deletions
|
@ -1542,7 +1542,6 @@ export class Checker {
|
||||||
env.add(varExpr.text, new Forall([], [], typeVar), Symkind.Type);
|
env.add(varExpr.text, new Forall([], [], typeVar), Symkind.Type);
|
||||||
}
|
}
|
||||||
const type = this.inferTypeExpression(node.typeExpression);
|
const type = this.inferTypeExpression(node.typeExpression);
|
||||||
console.log(describeType(type));
|
|
||||||
this.popContext(context);
|
this.popContext(context);
|
||||||
const scheme = new Forall(typeVars, constraints, TApp.build(type, kindArgs));
|
const scheme = new Forall(typeVars, constraints, TApp.build(type, kindArgs));
|
||||||
parentEnv.add(node.name.text, scheme, Symkind.Type);
|
parentEnv.add(node.name.text, scheme, Symkind.Type);
|
||||||
|
|
Loading…
Reference in a new issue