Implemented dependency tracking
This commit is contained in:
@ -43,16 +43,7 @@ func (f *Function) CompileCall(root *expression.Expression) ([]types.Type, error
|
||||
|
||||
switch value := value.(type) {
|
||||
case *eval.Label:
|
||||
fn, exists := f.All.Functions[value.Label]
|
||||
|
||||
if !exists {
|
||||
if value.Label == "main.main" && f.UniqueName == "core.init" {
|
||||
f.Label(asm.CALL, "main.main")
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
return nil, errors.New(&errors.UnknownIdentifier{Name: value.Label}, f.File, root.Children[0].Token.Position)
|
||||
}
|
||||
fn := f.All.Functions[value.Label]
|
||||
|
||||
if len(parameters) != len(fn.Input) {
|
||||
return nil, errors.New(&errors.ParameterCountMismatch{Function: fn.Name, Count: len(parameters), ExpectedCount: len(fn.Input)}, f.File, root.Children[0].Token.End())
|
||||
|
Reference in New Issue
Block a user