Fix minor indentation issue in checker.ts
This commit is contained in:
parent
9c24ddb07e
commit
f2ea45873c
1 changed files with 1 additions and 2 deletions
|
@ -1106,7 +1106,7 @@ export class Checker {
|
||||||
|
|
||||||
private createSubstitution(scheme: Scheme): TVSub {
|
private createSubstitution(scheme: Scheme): TVSub {
|
||||||
const sub = new TVSub();
|
const sub = new TVSub();
|
||||||
const tvs = [...scheme.typeVars]
|
const tvs = [...scheme.typeVars]
|
||||||
for (const tv of tvs) {
|
for (const tv of tvs) {
|
||||||
sub.set(tv, this.createTypeVar());
|
sub.set(tv, this.createTypeVar());
|
||||||
}
|
}
|
||||||
|
@ -2340,7 +2340,6 @@ export class Checker {
|
||||||
|
|
||||||
this.solve(new CMany(constraints), this.solution);
|
this.solve(new CMany(constraints), this.solution);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private lookupClass(name: string): ClassDeclaration | null {
|
private lookupClass(name: string): ClassDeclaration | null {
|
||||||
|
|
Loading…
Reference in a new issue