perf(frontends/lean/elaborator): replace abstract with abstract_local
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
319b1fb8d1
commit
03bbec08e5
1 changed files with 2 additions and 2 deletions
|
@ -785,7 +785,7 @@ public:
|
||||||
} else {
|
} else {
|
||||||
b = ensure_type(visit_expecting_type(b));
|
b = ensure_type(visit_expecting_type(b));
|
||||||
}
|
}
|
||||||
b = abstract(b, l);
|
b = abstract_local(b, l);
|
||||||
return update_binding(e, d, b);
|
return update_binding(e, d, b);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -799,7 +799,7 @@ public:
|
||||||
} else {
|
} else {
|
||||||
b = visit(b);
|
b = visit(b);
|
||||||
}
|
}
|
||||||
b = abstract(b, l);
|
b = abstract_local(b, l);
|
||||||
return update_binding(e, d, b);
|
return update_binding(e, d, b);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue