Added placeholders for type casts
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user