Added placeholders for type casts

This commit is contained in:
2025-02-27 00:18:34 +01:00
parent bbf2970c4e
commit ae6530aadb
19 changed files with 61 additions and 42 deletions

View File

@ -47,8 +47,8 @@ func (f *Function) CompileAssignArray(node *ast.Assign) error {
return err
}
if !types.Is(typ, types.Int) {
return errors.New(&errors.TypeMismatch{Encountered: typ.Name(), Expected: types.Int.Name()}, f.File, index.Token.Position)
if !types.Is(typ, types.AnyInt) {
return errors.New(&errors.TypeMismatch{Encountered: typ.Name(), Expected: types.AnyInt.Name()}, f.File, index.Token.Position)
}
memory.OffsetRegister = indexRegister