Implemented package imports

This commit is contained in:
2024-07-18 18:08:30 +02:00
parent fa373e7dc2
commit b34470a97d
21 changed files with 510 additions and 353 deletions

View File

@ -11,7 +11,15 @@ import (
// Registers that are in use must be saved if they are modified by the function.
// After the function call, they must be restored in reverse order.
func (f *Function) CompileCall(root *expression.Expression) error {
funcName := root.Children[0].Token.Text()
funcNameRoot := root.Children[0]
funcName := ""
if funcNameRoot.IsLeaf() {
funcName = funcNameRoot.Token.Text()
} else {
funcName = funcNameRoot.Children[0].Token.Text() + funcNameRoot.Token.Text() + funcNameRoot.Children[1].Token.Text()
}
isSyscall := funcName == "syscall"
if !isSyscall {