Implemented package specific structs
This commit is contained in:
@ -30,15 +30,15 @@ func (f *Function) CompileCall(root *expression.Expression) (*Function, error) {
|
||||
case "syscall":
|
||||
return nil, f.CompileSyscall(root)
|
||||
case "new":
|
||||
typ, err := f.CompileNew(root)
|
||||
|
||||
return &Function{
|
||||
Output: []*Output{
|
||||
{
|
||||
Type: &types.Pointer{
|
||||
To: f.Types[root.Children[1].Token.Text(f.File.Bytes)],
|
||||
},
|
||||
Type: typ,
|
||||
},
|
||||
},
|
||||
}, f.CompileNew(root)
|
||||
}, err
|
||||
case "delete":
|
||||
return nil, f.CompileDelete(root)
|
||||
case "store":
|
||||
|
Reference in New Issue
Block a user