Fixed group parsing

This commit is contained in:
2023-03-23 15:10:18 -07:00
parent a734bdc4fe
commit a23cea274f

View File

@ -376,6 +376,9 @@ pub fn treeify(
Token::PreOperator(l, _) => {
return Err((*l, ParserError::Syntax));
},
Token::PreGroup(_,_) => {
treeify(g)?;
}
_ => {}
};