Closed DJMcNab closed 3 years ago
Hopefully a nightly has landed which this PR is compatible with 🎉
I'll check when I'm at a desktop computer.
My PR missed the deadline for the latest nightly by one merge.
It should work now - we've been bitten by rustc --version
often being a day behind the rustup toolchain. That is, the code runs fine on nightly-2020-03-01
Thanks for the effort!
This had a few complications so there are a handful of workarounds:
get
macro fromrocket
was panicking (at called unwrap onOption::None
with no further details)macro
s fixed this, so I did that and removed themFrame::loc
field has been made private, although it looks like an accessor will be addedextern crate miri
meant to use the one which was inrustcSource
, even though that is not correct.Whilst I'm here, I'm also going to handle the problems that we have from not following
rust_2018_idioms
Thanks to @bjorn3 for answering my queries :)
This is a very cool project, and I hope it can become more useful. 'Perfect' debugging for rust programs is very compelling, with easy back in time debugging.