Hey there,
as already mentioned in #126 I had some problems on target wasm32-unknown-unknown with gracefully handling input that isn't accepted by the grammar.
I got stack traces working now:
panicked at 'time not implemented on wasm32-unknown-unknown', src/libstd/sys/wasm/time.rs:13:9
Stack:
Error
[...<omitted>...]
at std::sys::wasm::time::Instant::now::h766434e196ba7d73 (wasm-function[2735]:0xc091e)
at std::time::Instant::now::hd779be9a0cda9cbc (wasm-function[3030]:0xc1473)
at lrpar::parser::Parser<StorageT,ActionT>::lr::hce502a5dc7a16768 (wasm-function[61]:0x2c111)
at lrpar::parser::Parser<StorageT,ActionT>::parse_actions::hfdeea25ce9816fde (wasm-function[318]:0x67fc8)
[...<omitted>...]
See rust-lang/rust#48564 for more info on that issue in general.
Having a quick glance at the code base, it looks like the calls to std::time::Instant::now could be replaced by calling a function that produces strictly incremental identifiers.
Is that correct, or does some part rely on the actual timestamps?
Hey there,
as already mentioned in #126 I had some problems on target
wasm32-unknown-unknownwith gracefully handling input that isn't accepted by the grammar.I got stack traces working now:
See rust-lang/rust#48564 for more info on that issue in general.
Having a quick glance at the code base, it looks like the calls to
std::time::Instant::nowcould be replaced by calling a function that produces strictly incremental identifiers.Is that correct, or does some part rely on the actual timestamps?