chore: uncomment code

This commit is contained in:
Shunsuke Shibayama 2024-08-31 11:06:35 +09:00
parent d2460b9dde
commit 46f08c4451
3 changed files with 8 additions and 8 deletions

View file

@ -1008,9 +1008,9 @@ impl Context {
if let Some(self_t) = ty.self_t() {
self.sub_unify(callee.ref_t(), self_t, callee, Some(&Str::ever("self")))?;
}
/*if DEBUG_MODE && ty.has_qvar() {
if DEBUG_MODE && ty.has_qvar() {
panic!("{ty} has qvar")
}*/
}
Ok(ty)
}
// HACK: {op: |T|(T -> T) | op == F} => ?T -> ?T
@ -1073,9 +1073,9 @@ impl Context {
Quantified(quant) => {
let mut tmp_tv_cache = TyVarCache::new(self.level, self);
let ty = self.instantiate_t_inner(*quant, &mut tmp_tv_cache, &())?;
/*if DEBUG_MODE && ty.has_qvar() {
if DEBUG_MODE && ty.has_qvar() {
panic!("{ty} has qvar")
}*/
}
Ok(ty)
}
Refinement(refine) if refine.t.is_quantified_subr() => {

View file

@ -4762,9 +4762,9 @@ impl Type {
return;
}
if self.level() == Some(GENERIC_LEVEL) {
/*if DEBUG_MODE {
if DEBUG_MODE {
panic!("{self} is fixed");
}*/
}
return;
}
match self {

View file

@ -1533,9 +1533,9 @@ impl TyParam {
return;
}
if self.level() == Some(GENERIC_LEVEL) {
/*if DEBUG_MODE {
if DEBUG_MODE {
panic!("{self} is fixed");
}*/
}
return;
}
match self {