Free variable analysis.

This commit is contained in:
2024-05-13 20:47:11 -07:00
parent 4c2850427a
commit afff04259c
5 changed files with 186 additions and 15 deletions

View File

@@ -150,7 +150,7 @@ TypeName: Name = {
// to run through a few examples. Consider thinking about how you want to
// parse something like "1 + 2 * 3", for example, versus "1 + 2 + 3" or
// "1 * 2 + 3", and hopefully that'll help.
Expression: Expression = {
pub Expression: Expression = {
BindingExpression,
}
@@ -271,4 +271,4 @@ Comma<T>: Vec<T> = {
v
}
}
};
};