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

View File

@ -10,8 +10,9 @@ import (
// Define defines a new variable.
func (f *Function) Define(leaf *expression.Expression) (*scope.Variable, error) {
name := leaf.Token.Text(f.File.Bytes)
variable, _ := f.Identifier(name)
if f.IdentifierExists(name) {
if variable != nil {
return nil, errors.New(&errors.VariableAlreadyExists{Name: name}, f.File, leaf.Token.Position)
}
@ -21,7 +22,7 @@ func (f *Function) Define(leaf *expression.Expression) (*scope.Variable, error)
return nil, errors.New(&errors.UnusedVariable{Name: name}, f.File, leaf.Token.Position)
}
variable := &scope.Variable{
variable = &scope.Variable{
Name: name,
Register: f.NewRegister(),
Alive: uses,