Fix help_can and help_parse

This commit is contained in:
Richard Feldman 2024-11-01 21:09:27 -04:00
parent 67bca80921
commit 78ceb8cdbf
No known key found for this signature in database
GPG key ID: DAC334802F365236
5 changed files with 54 additions and 19 deletions

View file

@ -57,4 +57,8 @@ impl ParseExpr {
pub fn into_arena(self) -> Bump {
self.arena
}
pub fn arena(&self) -> &Bump {
&self.arena
}
}