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

@ -7,7 +7,7 @@ import (
"git.akyoto.dev/cli/q/src/ast"
"git.akyoto.dev/cli/q/src/cpu"
"git.akyoto.dev/cli/q/src/errors"
"git.akyoto.dev/cli/q/src/token"
"git.akyoto.dev/cli/q/src/types"
)
// CompileAssignArray compiles an assign statement for array elements.
@ -33,7 +33,7 @@ func (f *Function) CompileAssignArray(node *ast.Assign) error {
index := left.Children[1]
if index.Token.Kind == token.Number {
if index.Token.IsNumeric() {
offset, err := f.Number(index.Token)
if err != nil {
@ -42,12 +42,16 @@ func (f *Function) CompileAssignArray(node *ast.Assign) error {
memory.Offset = int8(offset)
} else {
_, indexRegister, isTemporary, err := f.Evaluate(index)
typ, indexRegister, isTemporary, err := f.Evaluate(index)
if err != nil {
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)
}
memory.OffsetRegister = indexRegister
if isTemporary {