mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
some fixes
This commit is contained in:
parent
7c56547958
commit
14129bb34c
2 changed files with 6 additions and 9 deletions
|
@ -1996,14 +1996,11 @@ macro_rules! one_or_more_e {
|
|||
}
|
||||
}
|
||||
}
|
||||
Err((progress, _, new_state)) => {
|
||||
debug_assert_eq!(progress, NoProgress, "{:?}", &new_state);
|
||||
Err((
|
||||
progress,
|
||||
$to_error(new_state.line, new_state.column),
|
||||
new_state,
|
||||
))
|
||||
}
|
||||
Err((progress, _, new_state)) => Err((
|
||||
progress,
|
||||
$to_error(new_state.line, new_state.column),
|
||||
new_state,
|
||||
)),
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue