mirror of
https://github.com/RustPython/Parser.git
synced 2025-09-14 06:14:59 +00:00
Implement except* syntax
This commit is contained in:
parent
fab9adcd48
commit
2a86dbd644
6 changed files with 1450 additions and 0 deletions
|
@ -809,6 +809,12 @@ impl SymbolTableBuilder {
|
|||
handlers,
|
||||
orelse,
|
||||
finalbody,
|
||||
}
|
||||
| TryStar {
|
||||
body,
|
||||
handlers,
|
||||
orelse,
|
||||
finalbody,
|
||||
} => {
|
||||
self.scan_statements(body)?;
|
||||
for handler in handlers {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue