google / starlark-go

Starlark in Go: the Starlark configuration language, implemented in Go
BSD 3-Clause "New" or "Revised" License
2.26k stars 204 forks source link

Make resolve follow FileOptions.TopLevelControl #510

Closed marco6 closed 9 months ago

marco6 commented 9 months ago

The new struct FileOptions allows for fine grained control over language feature.

However, it didn't respect FileOptions.TopLevelControl flag, as the only way to actually allow if/for/while in the top level context was to enable FileOptions.GlobalReassign flag.