Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge #8280 | bors[bot] | 2021-05-06 | 1 | -1/+1 |
|\ | |||||
| * | Fix build | Dawer | 2021-05-06 | 1 | -1/+1 |
* | | Don't store call-site text offsets in hygiene info | Jonas Schievink | 2021-05-06 | 1 | -22/+35 |
|/ | |||||
* | Document expansion queries | Aleksey Kladov | 2021-05-04 | 1 | -0/+21 |
* | simplify macro expansion code | Aleksey Kladov | 2021-05-04 | 1 | -27/+17 |
* | make illegal states unrepresentable | Aleksey Kladov | 2021-05-04 | 3 | -49/+48 |
* | Cleanups | Aleksey Kladov | 2021-05-04 | 1 | -139/+134 |
* | Merge #8727 | bors[bot] | 2021-05-04 | 1 | -11/+11 |
|\ | |||||
| * | minor: use standard import style | Aleksey Kladov | 2021-05-04 | 1 | -11/+11 |
* | | Merge #8726 | bors[bot] | 2021-05-04 | 1 | -3/+3 |
|\| | |||||
| * | internal: reduce visibility | Aleksey Kladov | 2021-05-04 | 1 | -3/+3 |
* | | minor: unconfuse myself about macro def vs macro rules | Aleksey Kladov | 2021-05-04 | 1 | -0/+5 |
|/ | |||||
* | Merge #8586 | bors[bot] | 2021-04-19 | 1 | -9/+9 |
|\ | |||||
| * | Remove SyntaxRewriter usage in eager::eager_macro_recur | Lukas Wirth | 2021-04-19 | 1 | -9/+9 |
* | | Merge #8462 | bors[bot] | 2021-04-19 | 2 | -0/+2 |
|\ \ | |/ |/| | |||||
| * | hir_ty: Expand macros at type position | cynecx | 2021-04-17 | 2 | -0/+2 |
* | | Expand `global_asm!` to nothing | Jonas Schievink | 2021-04-18 | 2 | -0/+11 |
|/ | |||||
* | Support macros in pattern position | Jonas Schievink | 2021-04-11 | 1 | -0/+1 |
* | Revert "Rewrite `#[derive]` removal to be based on AST" | Jonas Schievink | 2021-04-10 | 4 | -92/+105 |
* | Revert "Use `pub(crate)`" | Jonas Schievink | 2021-04-10 | 1 | -5/+1 |
* | Revert "Use `name![derive]`" | Jonas Schievink | 2021-04-10 | 1 | -6/+2 |
* | Use `name![derive]` | Jonas Schievink | 2021-04-09 | 1 | -2/+6 |
* | Use `pub(crate)` | Jonas Schievink | 2021-04-09 | 1 | -1/+5 |
* | Rewrite `#[derive]` removal to be based on AST | Jonas Schievink | 2021-04-09 | 4 | -105/+92 |
* | Store `#[derive]` attribute ID along macro invoc | Jonas Schievink | 2021-04-09 | 2 | -3/+7 |
* | Add `AttrId` to track attribute sources | Jonas Schievink | 2021-04-09 | 1 | -0/+3 |
* | Use named fields in `MacroCallKind` | Jonas Schievink | 2021-04-08 | 4 | -16/+18 |
* | Update `OUT_DIR` diagnostic to match setting | Jonas Schievink | 2021-04-07 | 1 | -1/+1 |
* | Make `ast_to_token_tree` infallible | Jonas Schievink | 2021-04-04 | 3 | -13/+7 |
* | Implement edition-dependent builtin `panic!` macro | Jonas Schievink | 2021-04-03 | 3 | -2/+26 |
* | internal: document semantics for missing names | Aleksey Kladov | 2021-03-31 | 1 | -0/+9 |
* | Basic Support Macro 2.0 | Edwin Cheng | 2021-03-27 | 3 | -23/+41 |
* | Merge #8201 | bors[bot] | 2021-03-27 | 1 | -17/+42 |
|\ | |||||
| * | Fix recursive macro statement expansion | Edwin Cheng | 2021-03-25 | 1 | -17/+42 |
* | | syntax: return owned string instead of leaking string | cynecx | 2021-03-26 | 1 | -2/+2 |
|/ | |||||
* | Merge #8134 | bors[bot] | 2021-03-21 | 3 | -26/+76 |
|\ | |||||
| * | use the included file as the source of expanded include macro | Yilin Chen | 2021-03-21 | 3 | -26/+76 |
* | | use strip_prefix() instead of starts_with and slicing (clippy::manual_strip) | Matthias Krüger | 2021-03-21 | 1 | -3/+2 |
* | | remove more redundant clones (clippy::redundant_clone()) | Matthias Krüger | 2021-03-21 | 1 | -1/+1 |
|/ | |||||
* | Return `Either` from `MacroDefId::ast_id` | Jonas Schievink | 2021-03-19 | 2 | -5/+6 |
* | Rename derive-specific APIs | Jonas Schievink | 2021-03-19 | 2 | -5/+5 |
* | Store an `AstId` for procedural macros | Jonas Schievink | 2021-03-18 | 4 | -6/+6 |
* | Make MacroDefId's `AstId` mandatory when possible | Jonas Schievink | 2021-03-18 | 6 | -34/+39 |
* | Create AstId for builtin_derive macro in tests | Jonas Schievink | 2021-03-18 | 1 | -13/+28 |
* | Improve diagnostic when including nonexistent file | Jonas Schievink | 2021-03-17 | 1 | -10/+11 |
* | Merge #8063 | bors[bot] | 2021-03-17 | 2 | -7/+4 |
|\ | |||||
| * | remove uselessly wrapped ?s. (clippy::meedless_question_mark | Matthias Krüger | 2021-03-17 | 1 | -2/+2 |
| * | don't clone types that are copy (clippy::clone_on_copy) | Matthias Krüger | 2021-03-17 | 1 | -5/+2 |
* | | Merge #8048 | bors[bot] | 2021-03-17 | 1 | -1/+1 |
|\ \ | |/ |/| | |||||
| * | Follow established ErrorEmitted pattern | Brandon | 2021-03-17 | 1 | -1/+1 |