mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +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_str(key);
|
||||
}
|
||||
MalformedIdent(_) => {
|
||||
panic!("TODO implement malformed indent formatting");
|
||||
}
|
||||
MalformedClosure => {
|
||||
panic!("TODO implement malformed closure formatting");
|
||||
}
|
||||
PrecedenceConflict(_left_binop, _right_binop, _expr) => {
|
||||
panic!("TODO implement precedence conflict formatting");
|
||||
}
|
||||
MalformedIdent(_) => {}
|
||||
MalformedClosure => {}
|
||||
PrecedenceConflict(_, _, _, _) => {}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue