forked from AbleScript/ablescript
Silently fail when calling a non-function
The most cursed possible way to deal with this error.
This commit is contained in:
parent
56623de96a
commit
9beb45adf0
|
@ -258,14 +258,7 @@ impl ExecEnv {
|
|||
if let Value::Functio(func) = func {
|
||||
self.fn_call(func, &args, &stmt.span)?;
|
||||
} else {
|
||||
return Err(Error {
|
||||
kind: ErrorKind::TypeError(format!(
|
||||
"attempt to call non-function `{}` (= {})",
|
||||
iden.iden.to_owned(),
|
||||
func
|
||||
)),
|
||||
span: stmt.span.clone(),
|
||||
});
|
||||
// Fail silently for now.
|
||||
}
|
||||
}
|
||||
StmtKind::Loop { body } => loop {
|
||||
|
|
Loading…
Reference in a new issue