Added a program init function
This commit is contained in:
@ -98,6 +98,13 @@ func Compile(constants <-chan *core.Constant, files <-chan *fs.File, functions <
|
||||
}
|
||||
}
|
||||
|
||||
// Check for existence of `init`
|
||||
init, exists := allFunctions["core.init"]
|
||||
|
||||
if !exists {
|
||||
return result, errors.MissingInitFunction
|
||||
}
|
||||
|
||||
// Check for existence of `main`
|
||||
main, exists := allFunctions["main.main"]
|
||||
|
||||
@ -105,6 +112,7 @@ func Compile(constants <-chan *core.Constant, files <-chan *fs.File, functions <
|
||||
return result, errors.MissingMainFunction
|
||||
}
|
||||
|
||||
result.Init = init
|
||||
result.Main = main
|
||||
result.Functions = allFunctions
|
||||
result.finalize()
|
||||
|
Reference in New Issue
Block a user