mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 21:39:07 +00:00
Move indent call to correct spot
This commit is contained in:
parent
11d8dd1335
commit
1b4f5bbb52
7 changed files with 68 additions and 12 deletions
|
@ -95,7 +95,8 @@ fn round_trip_once(input: Input<'_>) -> Option<String> {
|
|||
|
||||
let actual = match input.parse_in(&arena) {
|
||||
Ok(a) => a,
|
||||
Err(e) => return Some(format!("Initial parse failed: {:?}", e.normalize(&arena))),
|
||||
Err(_e) => return None,
|
||||
// Err(e) => return Some(format!("Initial parse failed: {:?}", e.normalize(&arena))),
|
||||
};
|
||||
|
||||
if actual.is_malformed() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue