mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
Remove unneeded comments
This commit is contained in:
parent
f0fbf16be6
commit
8414c8e2de
1 changed files with 0 additions and 6 deletions
|
@ -98,8 +98,6 @@ fn find_chain(subs: &Subs, left: Variable, right: Variable) -> impl Iterator<Ite
|
|||
return Ok(vec![needle]);
|
||||
}
|
||||
|
||||
// dbg!((left, right));
|
||||
|
||||
use Content::*;
|
||||
use FlatType::*;
|
||||
match (
|
||||
|
@ -117,15 +115,11 @@ fn find_chain(subs: &Subs, left: Variable, right: Variable) -> impl Iterator<Ite
|
|||
// By construction, the recursion variables will be adjusted to be equal after
|
||||
// the transformation, so we can immediately look at the inner variable. We only
|
||||
// need to adjust head constructors.
|
||||
// help(subs, needle, *structure, right)
|
||||
let chain = help(subs, needle, *structure, right)?;
|
||||
//chain.push((left, right));
|
||||
Ok(chain)
|
||||
}
|
||||
(_, RecursionVar { structure, .. }) => {
|
||||
// dbg!("HERE");
|
||||
let chain = help(subs, needle, left, *structure)?;
|
||||
//chain.push((left, right));
|
||||
Ok(chain)
|
||||
}
|
||||
(LambdaSet(..), _) | (_, LambdaSet(..)) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue