Merge branch 'master' into plugins_dev

This commit is contained in:
Stephen Chung
2020-08-22 23:04:34 +08:00
2 changed files with 8 additions and 7 deletions

View File

@@ -1,12 +1,13 @@
#![cfg(not(feature = "no_function"))]
use rhai::{
Dynamic, Engine, EvalAltResult, FnPtr, Map, Module, ParseErrorType, RegisterFn, Scope, INT,
};
use rhai::{Dynamic, Engine, EvalAltResult, FnPtr, Module, ParseErrorType, RegisterFn, Scope, INT};
use std::any::TypeId;
use std::cell::RefCell;
use std::mem::take;
use std::rc::Rc;
#[cfg(not(feature = "no_object"))]
use rhai::Map;
#[test]
fn test_fn_ptr_curry_call() -> Result<(), Box<EvalAltResult>> {
let mut engine = Engine::new();