Added more tests

This commit is contained in:
2025-02-14 00:26:48 +01:00
parent e4cbb91f61
commit c8b5c4dbfe
8 changed files with 73 additions and 13 deletions

View File

@ -25,12 +25,11 @@ func (f *Function) CompileDefinition(node *ast.Define) error {
return err
}
variable.Type = typ
if variable.Type == nil {
return errors.New(errors.CouldNotInferType, f.File, node.Expression.Token.End())
if typ == nil {
return errors.New(errors.UntypedExpression, f.File, node.Expression.Token.End())
}
variable.Type = typ
f.AddVariable(variable)
return nil
}