xq-Tec
Results
1
issues of
xq-Tec
There's a serious bug in the `sciter::value::Value` implementation related to `std::ops::Index`: let mut v = sciter::value::Value::array(2); v.set(0, 5); v.set(1, 6); let v_0 = &v[0]; let v_1 = &v[1]; dbg!(v_0); dbg!(v_1);...
bug