Mark nonlocal variables as used in parent scopes (#822)

This commit is contained in:
Charlie Marsh 2022-11-19 19:21:02 -05:00 committed by GitHub
parent a580d1a858
commit 99f7854d8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 95 additions and 6 deletions

View file

@ -83,6 +83,7 @@ pub enum BindingKind {
Binding,
LoopVar,
Global,
Nonlocal,
Builtin,
ClassDefinition,
Definition,