Implemented loop iterators

This commit is contained in:
2025-02-19 17:52:15 +01:00
parent 1bc845e6f0
commit 7922cff7ba
17 changed files with 147 additions and 35 deletions

View File

@ -10,7 +10,7 @@ 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)
variable := f.VariableByName(name)
if variable != nil {
return nil, errors.New(&errors.VariableAlreadyExists{Name: name}, f.File, leaf.Token.Position)