Implement except* syntax

This commit is contained in:
Charlie Marsh 2023-02-20 13:40:19 -05:00 committed by Jeong YunWon
parent fab9adcd48
commit 2a86dbd644
6 changed files with 1450 additions and 0 deletions

View file

@ -809,6 +809,12 @@ impl SymbolTableBuilder {
handlers,
orelse,
finalbody,
}
| TryStar {
body,
handlers,
orelse,
finalbody,
} => {
self.scan_statements(body)?;
for handler in handlers {