darkly icon indicating copy to clipboard operation
darkly copied to clipboard

Work on stable Rust

Open nrc opened this issue 6 years ago • 2 comments

We can use the proc macro hack to get around the proc_macro_hygiene feature, and might be able to find ways around other features.

nrc avatar Jan 20 '19 03:01 nrc

proc_macro_hygiene is now the only feature being used.

nrc avatar Feb 12 '19 13:02 nrc

It looks like we can't use proc-macro-hack because we want to introduce variables into the calling context, which requires a statement-level expansion, not an expression level one (because of the new let).

Either we wait for proc_macro_hygiene to be stabilised or we have to make the statement version of the macro enabled by a feature.

nrc avatar Feb 14 '19 01:02 nrc