Added more tests
This commit is contained in:
@ -25,12 +25,11 @@ func (f *Function) CompileDefinition(node *ast.Define) error {
|
||||
return err
|
||||
}
|
||||
|
||||
variable.Type = typ
|
||||
|
||||
if variable.Type == nil {
|
||||
return errors.New(errors.CouldNotInferType, f.File, node.Expression.Token.End())
|
||||
if typ == nil {
|
||||
return errors.New(errors.UntypedExpression, f.File, node.Expression.Token.End())
|
||||
}
|
||||
|
||||
variable.Type = typ
|
||||
f.AddVariable(variable)
|
||||
return nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user