Implemented length storage of allocated memory
This commit is contained in:
@ -27,6 +27,14 @@ func (f *Function) CompileCall(root *expression.Expression) (*Function, error) {
|
||||
name = nameNode.Token.Text(f.File.Bytes)
|
||||
|
||||
switch name {
|
||||
case "len":
|
||||
return &Function{
|
||||
Output: []*Output{
|
||||
{
|
||||
Type: types.Int,
|
||||
},
|
||||
},
|
||||
}, f.CompileLen(root)
|
||||
case "syscall":
|
||||
return nil, f.CompileSyscall(root)
|
||||
case "new":
|
||||
|
Reference in New Issue
Block a user