Double the amount of indentation allowed in parser trace debugging

Increase from 36 levels of indentation to 80. This is excessive, but
it's confusing to have a parser test crash just because
parse_debug_trace is enabled.
This commit is contained in:
Elias Mulhall 2024-08-29 07:25:42 -04:00
parent fefb4a3115
commit 14fabdff07

View file

@ -856,8 +856,7 @@ where
}
// This should be enough for anyone. Right? RIGHT?
let indent_text =
"| ; : ! | ; : ! | ; : ! | ; : ! | ; : ! | ; : ! | ; : ! | ; : ! | ; : ! ";
let indent_text = "| ; : ! ".repeat(20);
let cur_indent = INDENT.with(|i| *i.borrow());