Add Scope to API. Move todo to github

This commit is contained in:
jonathandturner 2016-03-04 08:45:43 -05:00
parent 23460c51fb
commit fbf81ff651
2 changed files with 15 additions and 12 deletions

14
examples/reuse_scope.rs Normal file
View File

@ -0,0 +1,14 @@
extern crate rhai;
use rhai::{Engine, Scope};
fn main() {
let mut engine = Engine::new();
let mut scope: Scope = Vec::new();
if let Ok(_) = engine.eval_with_scope(&mut scope, "var x = 4 + 5".to_string()) { } else { assert!(false); }
if let Ok(result) = engine.eval_with_scope(&mut scope, "x".to_string()).unwrap().downcast::<i32>() {
println!("result: {}", result);
}
}

View File

@ -1,19 +1,8 @@
//! Rhai - embedded scripting for Rust //! Rhai - embedded scripting for Rust
// Todo (in no particular order):
// * Doc some examples
// * Maintaining state
// * Overloading
// * How it works
// * Vectors
// * Tighten parser?
// * Errors with positions?
mod engine; mod engine;
mod fn_register; mod fn_register;
mod parser; mod parser;
pub use engine::Engine; pub use engine::{Engine, Scope};
pub use fn_register::FnRegister; pub use fn_register::FnRegister;