Implemented struct pointer types
This commit is contained in:
@ -31,9 +31,11 @@ func (f *Function) CompileCall(root *expression.Expression) (*Function, error) {
|
||||
return nil, f.CompileSyscall(root)
|
||||
case "new":
|
||||
return &Function{
|
||||
ReturnTypes: []types.Type{
|
||||
&types.Pointer{
|
||||
To: f.Types[root.Children[1].Token.Text(f.File.Bytes)],
|
||||
Output: []*Output{
|
||||
{
|
||||
Type: &types.Pointer{
|
||||
To: f.Types[root.Children[1].Token.Text(f.File.Bytes)],
|
||||
},
|
||||
},
|
||||
},
|
||||
}, f.CompileNew(root)
|
||||
@ -92,16 +94,16 @@ func (f *Function) CompileCall(root *expression.Expression) (*Function, error) {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
if !types.Is(typ, fn.Parameters[i].Type) {
|
||||
if !types.Is(typ, fn.Input[i].Type) {
|
||||
return nil, errors.New(&errors.TypeMismatch{
|
||||
Encountered: typ.Name(),
|
||||
Expected: fn.Parameters[i].Type.Name(),
|
||||
ParameterName: fn.Parameters[i].Name,
|
||||
Expected: fn.Input[i].Type.Name(),
|
||||
ParameterName: fn.Input[i].Name,
|
||||
}, f.File, parameters[i].Token.Position)
|
||||
}
|
||||
}
|
||||
|
||||
for _, register := range f.CPU.Output[:len(fn.ReturnTypes)] {
|
||||
for _, register := range f.CPU.Output[:len(fn.Output)] {
|
||||
f.SaveRegister(register)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user