Fixed: return null instead of throwing an exception
This commit is contained in:
parent
5292b55078
commit
4aebe57432
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ namespace arookas {
|
|||
if (symbol != null) {
|
||||
return symbol;
|
||||
}
|
||||
throw new sunUndefinedFunctionException(node);
|
||||
return null;
|
||||
}
|
||||
public sunCallableSymbol MustResolveCallable(sunFunctionCall node) {
|
||||
var symbol = ResolveCallable(node);
|
||||
|
|
Loading…
Reference in a new issue