trunk v0.5.2
ondra05 2022-09-14 21:57:02 +02:00
parent e2008be0e3
commit daca854db4
3 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -12,7 +12,7 @@ dependencies = [
[[package]]
name = "ablescript_cli"
version = "0.5.0"
version = "0.5.2"
dependencies = [
"ablescript",
"clap",

View File

@ -129,12 +129,12 @@ impl<H: HostInterface> ExecEnv<H> {
}),
}?;
while self.finalisers.len() != 0 {
while !self.finalisers.is_empty() {
for block in std::mem::take(&mut self.finalisers) {
self.eval_stmts_hs(&block, true)?;
}
}
Ok(())
}

View File

@ -1,6 +1,6 @@
[package]
name = "ablescript_cli"
version = "0.5.0"
version = "0.5.2"
authors = ["able <abl3theabove@gmail.com>"]
edition = "2021"
@ -10,7 +10,7 @@ documentation = "https://ablecorp.us/able-script-the-book/"
repository = "https://git.ablecorp.us/AbleScript/able-script"
[dependencies]
ablescript = { version = "0.5.0", path = "../ablescript" }
ablescript = { version = "0.5.2", path = "../ablescript" }
clap = "3.2"
rustyline = "9.1"