Added more tests
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user