Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cleanup | Shotaro Yamada | 2020-02-19 | 1 | -1/+1 |
| | |||||
* | Update versions | Kirill Bulatov | 2020-02-18 | 1 | -3/+3 |
| | |||||
* | More manual clippy fixes | Kirill Bulatov | 2020-02-18 | 1 | -10/+7 |
| | |||||
* | Run cargo +nightly fix --clippy -Z unstable-options | Kirill Bulatov | 2020-02-18 | 3 | -8/+8 |
| | |||||
* | ra_syntax: refactored the lexer design as per @matklad and @kiljacken PR review | Veetaha | 2020-02-03 | 1 | -3/+2 |
| | |||||
* | Reimplemented lexer with vectors instead of iterators | Veetaha | 2020-02-03 | 1 | -3/+5 |
| | |||||
* | Add details about test_repeat_bad_var current state | Vincent Rouillé | 2019-12-30 | 1 | -0/+2 |
| | |||||
* | Details about macro NestingState hit and at_end fields | Vincent Rouillé | 2019-12-30 | 1 | -7/+10 |
| | |||||
* | fix #2520: change expand_repeat loop stop condition | Vincent Rouillé | 2019-12-28 | 2 | -36/+77 |
| | |||||
* | Clippy lints | kjeremy | 2019-12-20 | 1 | -1/+3 |
| | |||||
* | Refactor macro tests | Aleksey Kladov | 2019-12-19 | 2 | -397/+282 |
| | |||||
* | Fix parsing of interpolated expressions | Aleksey Kladov | 2019-12-19 | 1 | -0/+18 |
| | |||||
* | Refactoring | Edwin Cheng | 2019-12-18 | 3 | -52/+50 |
| | |||||
* | Rename range to by_kind | Edwin Cheng | 2019-12-18 | 2 | -2/+2 |
| | |||||
* | Add test for token map | Edwin Cheng | 2019-12-18 | 1 | -0/+43 |
| | |||||
* | Fix shift id for delim and other tokens | Edwin Cheng | 2019-12-18 | 1 | -3/+15 |
| | |||||
* | Add TokenTextRange | Edwin Cheng | 2019-12-18 | 1 | -8/+33 |
| | |||||
* | Add token id to delims | Edwin Cheng | 2019-12-18 | 4 | -57/+113 |
| | |||||
* | Add token ids for all tt::Leaf | Edwin Cheng | 2019-12-18 | 3 | -24/+38 |
| | |||||
* | Re-export Origin to replace ExpansionOrigin | Edwin Cheng | 2019-12-14 | 1 | -0/+1 |
| | |||||
* | Refactor tt::Delimiter | Edwin Cheng | 2019-12-13 | 6 | -34/+32 |
| | |||||
* | Don't wrap most syntax trees in invisible delimiters when converting to ↵ | Florian Diebold | 2019-12-05 | 1 | -2/+8 |
| | | | | | | token tree Otherwise parsing them again doesn't work. | ||||
* | Add expansion infrastructure for derive macros | Florian Diebold | 2019-12-05 | 1 | -12/+22 |
| | |||||
* | Fixed mbe trival subtree | Edwin Cheng | 2019-11-21 | 1 | -0/+68 |
| | |||||
* | Collapse TokenMap and RevTokenMap | Aleksey Kladov | 2019-11-18 | 2 | -112/+100 |
| | |||||
* | Token-based reverse-mapping | Aleksey Kladov | 2019-11-18 | 1 | -1/+5 |
| | |||||
* | More correct expansion mapping | Aleksey Kladov | 2019-11-17 | 1 | -4/+9 |
| | | | | We can't really map arbitrary ranges, we only can map tokens | ||||
* | Make shift an implementation detail of mbe | Aleksey Kladov | 2019-11-17 | 1 | -38/+68 |
| | |||||
* | Disable doctests | Aleksey Kladov | 2019-11-17 | 1 | -1/+3 |
| | |||||
* | Goto definition works inside macros | Aleksey Kladov | 2019-11-16 | 1 | -0/+6 |
| | |||||
* | Update smallvec dep to 1.0 | memoryruins | 2019-11-15 | 1 | -1/+1 |
| | |||||
* | Remove typed macro parsing API | Aleksey Kladov | 2019-11-09 | 3 | -64/+75 |
| | | | | | We do type-erasure on every path anyway, so it doesn't make much sense to duplicate this function for every type | ||||
* | Remove map_ranges in RevTokenMap | Edwin Cheng | 2019-11-09 | 1 | -31/+1 |
| | |||||
* | Refactor and simpfily | Edwin Cheng | 2019-11-08 | 1 | -1/+1 |
| | |||||
* | Refactor and add more comments | Edwin Cheng | 2019-11-08 | 1 | -50/+46 |
| | |||||
* | Fix formatting | Edwin Cheng | 2019-11-05 | 1 | -1/+1 |
| | |||||
* | Refactor a bit | Edwin Cheng | 2019-11-04 | 1 | -9/+6 |
| | |||||
* | Use macro_rules shift to map text ranges | Edwin Cheng | 2019-11-04 | 2 | -30/+15 |
| | |||||
* | Rename and fix typos | Edwin Cheng | 2019-11-04 | 1 | -9/+15 |
| | |||||
* | Remove dbg! | Edwin Cheng | 2019-11-04 | 1 | -1/+0 |
| | |||||
* | Fixed bug in ExpandedRangeMap | Edwin Cheng | 2019-11-04 | 1 | -34/+16 |
| | |||||
* | Add macro_expansion_info in hir_expand | Edwin Cheng | 2019-11-04 | 3 | -28/+103 |
| | |||||
* | Add map_id to TokenId | Edwin Cheng | 2019-11-04 | 1 | -3/+20 |
| | |||||
* | Change to add 1 if non zero shift | Edwin Cheng | 2019-11-04 | 1 | -1/+1 |
| | |||||
* | Refactor and rename | Edwin Cheng | 2019-11-04 | 1 | -21/+20 |
| | |||||
* | Change Option<u32> to u32 for shift value | Edwin Cheng | 2019-11-04 | 1 | -8/+5 |
| | |||||
* | Change to better naming | Edwin Cheng | 2019-11-04 | 1 | -3/+3 |
| | |||||
* | Add TokenId Shif in macro_rules | Edwin Cheng | 2019-11-04 | 2 | -2/+74 |
| | |||||
* | Some clippy fixes | kjeremy | 2019-10-30 | 2 | -3/+2 |
| | |||||
* | Remove unused dependencies | Shotaro Yamada | 2019-10-12 | 1 | -1/+0 |
| |