Fixed group parsing

pull/2/head
Mark 2023-03-23 15:10:18 -07:00
parent a734bdc4fe
commit a23cea274f
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
1 changed files with 3 additions and 0 deletions

View File

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