Move CallableFunction to own file.

This commit is contained in:
Stephen Chung
2021-12-20 22:13:00 +08:00
parent 57d7985015
commit b4756b4575
7 changed files with 265 additions and 255 deletions

View File

@@ -1,6 +1,7 @@
//! Implement function-calling mechanism for [`Engine`].
use super::native::{CallableFunction, FnAny};
use super::callable_function::CallableFunction;
use super::native::FnAny;
use super::{get_builtin_binary_op_fn, get_builtin_op_assignment_fn};
use crate::api::default_limits::MAX_DYNAMIC_PARAMETERS;
use crate::ast::FnCallHashes;