Simplified identifier lookup

This commit is contained in:
2025-02-03 15:22:57 +01:00
parent 6af02d8fa3
commit 6959379182
5 changed files with 34 additions and 31 deletions

25
src/core/Identifier.go Normal file
View File

@ -0,0 +1,25 @@
package core
import (
"fmt"
"git.akyoto.dev/cli/q/src/scope"
)
// Identifier looks up an identifier which can be a variable or a function.
func (f *Function) Identifier(name string) (*scope.Variable, *Function) {
variable := f.VariableByName(name)
if variable != nil {
return variable, nil
}
uniqueName := fmt.Sprintf("%s.%s", f.Package, name)
function, exists := f.Functions[uniqueName]
if exists {
return nil, function
}
return nil, nil
}