Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improve message usage in proc-macro | Edwin Cheng | 2021-03-23 | 1 | -2/+5 |
| | | | | Reuse storage for the buffer send to child process of proc-macro. | ||||
* | remove uselessly wrapped ?s. (clippy::meedless_question_mark | Matthias Krüger | 2021-03-17 | 1 | -1/+1 |
| | | | | | | | | let x = Some(3); let y = Some(x?); can just be: let y = x | ||||
* | Reap proc macro server instances | Laurențiu Nicola | 2021-02-01 | 1 | -8/+3 |
| | |||||
* | Fix deep syntax tree bug generated by proc-macro | Edwin Cheng | 2021-01-01 | 1 | -3/+4 |
| | |||||
* | ProcMacroProcessExpander: support attribute macros | Jonas Schievink | 2020-12-07 | 1 | -19/+1 |
| | |||||
* | Don't respawn proc macro server on crash | Jonas Schievink | 2020-12-04 | 1 | -26/+15 |
| | |||||
* | Unwrap `process.stdio()` result | Jonas Schievink | 2020-12-04 | 1 | -4/+1 |
| | | | | If this is ever `None` here, that's a bug | ||||
* | Destructure in for loop | Jonas Schievink | 2020-12-04 | 1 | -3/+1 |
| | |||||
* | Remove unnecessary `Option` | Jonas Schievink | 2020-12-04 | 1 | -8/+3 |
| | |||||
* | Deny unreachable-pub | Aleksey Kladov | 2020-11-02 | 1 | -4/+4 |
| | | | | | | | | It's very useful when `pub` is equivalent to "this is crate's public API", let's enforce this! Ideally, we should enforce it for local `cargo test`, and only during CI, but that needs https://github.com/rust-lang/cargo/issues/5034. | ||||
* | Rename ra_proc_macro -> proc_macro_api | Aleksey Kladov | 2020-08-13 | 1 | -0/+201 |