Implemented environment type

This commit is contained in:
2025-02-21 17:35:42 +01:00
parent 4caac57210
commit 91e01de3ad
15 changed files with 67 additions and 51 deletions

View File

@ -15,7 +15,7 @@ func (f *Function) Identifier(name string) (*scope.Variable, *Function) {
}
uniqueName := fmt.Sprintf("%s.%s", f.Package, name)
function, exists := f.Functions[uniqueName]
function, exists := f.All.Functions[uniqueName]
if exists {
return nil, function