Implemented struct pointer types

This commit is contained in:
2025-02-05 15:16:00 +01:00
parent 85568949a2
commit 5d38a4980a
17 changed files with 190 additions and 102 deletions

View File

@ -28,7 +28,7 @@ func (f *Function) CompileDefinition(node *ast.Define) error {
variable.Type = typ
if variable.Type == nil {
return errors.New(errors.UnknownType, f.File, node.Expression.Token.End())
return errors.New(errors.CouldNotInferType, f.File, node.Expression.Token.End())
}
f.AddVariable(variable)
@ -54,7 +54,7 @@ func (f *Function) CompileDefinition(node *ast.Define) error {
}
if called != nil {
variable.Type = called.ReturnTypes[count]
variable.Type = called.Output[count].Type
}
f.RegisterRegister(asm.MOVE, variable.Register, f.CPU.Output[count])