mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
Removed panics
This commit is contained in:
parent
3f7d1cf33a
commit
ac85f86b9e
1 changed files with 3 additions and 9 deletions
|
@ -198,15 +198,9 @@ pub fn fmt_expr<'a>(
|
||||||
buf.push('.');
|
buf.push('.');
|
||||||
buf.push_str(key);
|
buf.push_str(key);
|
||||||
}
|
}
|
||||||
MalformedIdent(_) => {
|
MalformedIdent(_) => {}
|
||||||
panic!("TODO implement malformed indent formatting");
|
MalformedClosure => {}
|
||||||
}
|
PrecedenceConflict(_, _, _, _) => {}
|
||||||
MalformedClosure => {
|
|
||||||
panic!("TODO implement malformed closure formatting");
|
|
||||||
}
|
|
||||||
PrecedenceConflict(_left_binop, _right_binop, _expr) => {
|
|
||||||
panic!("TODO implement precedence conflict formatting");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue