Skip to content

Commit

Permalink
Merge pull request #731 from schungx/master
Browse files Browse the repository at this point in the history
Bug fix.
  • Loading branch information
schungx committed Jun 25, 2023
2 parents fd162ab + 1326ab9 commit 4627fb2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,15 @@
Rhai Release Notes
==================

Version 1.15.1
==============

Bug fixes
---------

* `Dynamic::deep_scan` is fixed so now it properly scans arrays, object maps and function pointers embedded inside data.


Version 1.15.0
==============

Expand All @@ -14,6 +23,7 @@ Enhancements

* Expressions involving `this` should now run slightly faster due to a dedicated `AST` node `ThisPtr`.
* A `take` function is added to the standard library to take ownership of any data (replacing with `()`) in order to avoid cloning.
* `Dynamic::take` is added to take ownership of the data (replacing with `()`) in order to avoid cloning.
* `EvalAltResult::ErrorMismatchOutputType` now gives a better name for the requested generic type (e.g. `&str` is now `&str` and not `string`).


Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -3,7 +3,7 @@ members = [".", "codegen"]

[package]
name = "rhai"
version = "1.15.0"
version = "1.15.1"
rust-version = "1.61.0"
edition = "2018"
resolver = "2"
Expand Down
3 changes: 2 additions & 1 deletion src/types/dynamic.rs
Expand Up @@ -2107,6 +2107,8 @@ impl Dynamic {
#[allow(clippy::only_used_in_recursion)]
pub fn deep_scan(&mut self, mut filter: impl FnMut(&mut Self)) {
fn scan_inner(value: &mut Dynamic, filter: &mut impl FnMut(&mut Dynamic)) {
filter(value);

match &mut value.0 {
#[cfg(not(feature = "no_index"))]
Union::Array(a, ..) => a.iter_mut().for_each(|v| scan_inner(v, filter)),
Expand All @@ -2117,7 +2119,6 @@ impl Dynamic {
}
}

filter(self);
scan_inner(self, &mut filter);
}
}
Expand Down

0 comments on commit 4627fb2

Please sign in to comment.