Added more tests

This commit is contained in:
2024-06-15 20:25:37 +02:00
parent 4776b4c14c
commit 864c9c7b43
7 changed files with 32 additions and 6 deletions

View File

@ -113,17 +113,17 @@ func (f *Function) CompileInstruction(line token.List) error {
return nil
}
if line[0].Kind == token.Identifier {
if len(line) < 2 {
return fmt.Errorf("error to be implemented")
}
if len(line) < 2 {
return errors.New(&errors.InvalidInstruction{Instruction: line[0].Text()}, f.File, line[0].Position)
}
if line[0].Kind == token.Identifier {
if line[1].Kind == token.Define {
name := line[0].Text()
value := line[2:]
if len(value) == 0 {
return errors.New(errors.MissingAssignmentValue, f.File, line[1].After())
return errors.New(errors.MissingAssignValue, f.File, line[1].After())
}
if config.Verbose {