Issue 3223: trying again repair for the failing wasm32 build

Removed `mut` modifier completely.
This commit is contained in:
Alexander McLin
2026-06-03 17:57:10 -04:00
parent 71ea74a077
commit 7a636b0394

View File

@@ -129,7 +129,7 @@ impl WasmQueryState {
let mut error = None; let mut error = None;
let mut to_drop = false; let mut to_drop = false;
match &mut self.inner { match &mut self.inner {
Some(mut inner) => inner.with_query_state_mut(|query_state| match query_state.next() { Some(inner) => inner.with_query_state_mut(|query_state| match query_state.next() {
Some(Ok(leaf_answer)) => { Some(Ok(leaf_answer)) => {
js_sys::Reflect::set(&ret, &"value".into(), &leaf_answer.into()).unwrap(); js_sys::Reflect::set(&ret, &"value".into(), &leaf_answer.into()).unwrap();
js_sys::Reflect::set(&ret, &"done".into(), &false.into()).unwrap(); js_sys::Reflect::set(&ret, &"done".into(), &false.into()).unwrap();