mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-19 03:20:14 +00:00
Fix compile error with --features=parse_debug_trace
This commit is contained in:
parent
2d9250b1c1
commit
2682193b76
1 changed files with 4 additions and 6 deletions
|
@ -710,9 +710,8 @@ where
|
|||
let cur_indent = INDENT.with(|i| *i.borrow());
|
||||
|
||||
println!(
|
||||
"@{:>5}:{:<5}: {}{:<50}",
|
||||
state.line,
|
||||
state.column,
|
||||
"{:>5?}: {}{:<50}",
|
||||
state.pos(),
|
||||
&indent_text[..cur_indent * 2],
|
||||
self.message
|
||||
);
|
||||
|
@ -727,9 +726,8 @@ where
|
|||
};
|
||||
|
||||
println!(
|
||||
"@{:>5}:{:<5}: {}{:<50} {:<15} {:?}",
|
||||
state.line,
|
||||
state.column,
|
||||
"{:<5?}: {}{:<50} {:<15} {:?}",
|
||||
state.pos(),
|
||||
&indent_text[..cur_indent * 2],
|
||||
self.message,
|
||||
format!("{:?}", progress),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue