Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce EffectExpr | Aleksey Kladov | 2020-05-02 | 1 | -1/+1 |
| | |||||
* | Revert "Merge #4233" | Aleksey Kladov | 2020-05-02 | 1 | -3/+1 |
| | | | | | This reverts commit a5f2b16366f027ad60c58266a66eb7fbdcbda9f9, reversing changes made to c96b2180c1c4206a0a98c280b4d30897eb116336. | ||||
* | Introduce BlockModifier | Aleksey Kladov | 2020-04-30 | 1 | -1/+3 |
| | |||||
* | Treat comments beginning with four slashes as regular line comments | adamrk | 2020-04-28 | 1 | -0/+15 |
| | |||||
* | Align grammar for record patterns and literals | Aleksey Kladov | 2020-04-11 | 1 | -2/+2 |
| | | | | | | The grammar now looks like this [name_ref :] pat | ||||
* | Remove dead code | Aleksey Kladov | 2020-04-10 | 1 | -1/+1 |
| | |||||
* | Generate only minimal set of ineresting tokens | Aleksey Kladov | 2020-04-10 | 1 | -5/+1 |
| | |||||
* | Simpler acessors for keywords | Aleksey Kladov | 2020-04-09 | 1 | -1/+5 |
| | |||||
* | Remove code duplication | Aleksey Kladov | 2020-04-09 | 1 | -25/+17 |
| | |||||
* | Add _token suffix to token accessors | Aleksey Kladov | 2020-04-09 | 1 | -1/+1 |
| | | | | | I think this makes is more clear which things are : AstNode and which are : AstToken | ||||
* | Move generated tokens to a separate file | Aleksey Kladov | 2020-04-09 | 1 | -1/+1 |
| | |||||
* | Prepare for spliting generated into tokens and nodes | Aleksey Kladov | 2020-04-09 | 1 | -1/+1 |
| | |||||
* | Scale back to only two traits | Aleksey Kladov | 2020-04-09 | 1 | -0/+16 |
| | |||||
* | Provide more complete AST accessors to support usage in rustc | Luca Barbieri | 2020-04-09 | 1 | -1/+1 |
| | |||||
* | Scale back the traits | Aleksey Kladov | 2020-04-09 | 1 | -103/+5 |
| | |||||
* | Add AstElement trait, generate tokens, support tokens in enums | Luca Barbieri | 2020-04-08 | 1 | -5/+109 |
| | | | | | | | | | - Adds a new AstElement trait that is implemented by all generated node, token and enum structs - Overhauls the code generators to code-generate all tokens, and also enhances enums to support including tokens, node, and nested enums | ||||
* | added fmt::Display as a supertrait for AstNode and changed generation. | Fireassember | 2020-03-06 | 1 | -1/+1 |
| | |||||
* | Slightly refactor inlay hints | Aleksey Kladov | 2020-02-29 | 1 | -1/+1 |
| | |||||
* | Fix the trailing whitespace test | Kirill Bulatov | 2020-02-12 | 1 | -4/+1 |
| | |||||
* | Introduce AttrKind | Kirill Bulatov | 2020-02-12 | 1 | -3/+3 |
| | |||||
* | Implement slice pattern AST > HIR lowering | Jonas Platte | 2020-02-11 | 1 | -1/+2 |
| | |||||
* | Add infrastructure for visibility on syntax and hir_def level | Florian Diebold | 2019-12-26 | 1 | -1/+3 |
| | |||||
* | Attempt to implement typed accessors | Geoffry Song | 2019-11-15 | 1 | -1/+1 |
| | |||||
* | Attach docs to statics | kjeremy | 2019-10-31 | 1 | -0/+14 |
| | |||||
* | Preserve whitespace at the end of doc comments | Jeremy Kolb | 2019-10-27 | 1 | -2/+22 |
| | | | | | | | | Whitespace can have special meaning in markdown. For instance ending a line with three spaces will render a new line. Note that this behavior diverges from RLS. Fixes #1997 | ||||
* | simplify strip attrs | Aleksey Kladov | 2019-09-28 | 1 | -1/+1 |
| | |||||
* | Start simplifying editing API | Aleksey Kladov | 2019-09-26 | 1 | -0/+1 |
| | |||||
* | keep ast creation API simple | Aleksey Kladov | 2019-09-26 | 1 | -0/+1 |
| | |||||
* | make ast object safe | Aleksey Kladov | 2019-08-23 | 1 | -2/+10 |
| | |||||
* | Add `impl Trait` and `dyn Trait` types | Florian Diebold | 2019-08-22 | 1 | -1/+1 |
| | | | | | | | - refactor bounds handling in the AST a bit - add HIR for bounds - add `Ty::Dyn` and `Ty::Opaque` variants and lower `dyn Trait` / `impl Trait` syntax to them | ||||
* | Unconditionally trim the end of comments | kjeremy | 2019-07-31 | 1 | -4/+1 |
| | |||||
* | Removes `*/` in block doc comments | kjeremy | 2019-07-31 | 1 | -0/+49 |
| | |||||
* | Add explicit newline preserving tests | kjeremy | 2019-07-31 | 1 | -0/+17 |
| | |||||
* | cleanup casts | Aleksey Kladov | 2019-07-19 | 1 | -1/+3 |
| | |||||
* | migrate ra_assists to the new AST | Aleksey Kladov | 2019-07-19 | 1 | -1/+1 |
| | |||||
* | migrate ra_syntax to the new rowan API | Aleksey Kladov | 2019-07-19 | 1 | -19/+17 |
| | |||||
* | allow rustfmt to reorder imports | Aleksey Kladov | 2019-07-04 | 1 | -4/+4 |
| | | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway | ||||
* | remove old parsing methods | Aleksey Kladov | 2019-05-28 | 1 | -4/+12 |
| | |||||
* | migrate to untyped rowan | Aleksey Kladov | 2019-04-09 | 1 | -2/+2 |
| | |||||
* | updated snapshots | Lenard Pratt | 2019-04-07 | 1 | -1/+1 |
| | |||||
* | Added ArrayExprKind, | Lenard Pratt | 2019-04-07 | 1 | -2/+2 |
| | | | | | changed the display for fixed array types, Added Array Enum to ra_hir/expr | ||||
* | Parse and infer tuple indices | robojumper | 2019-04-06 | 1 | -1/+1 |
| | |||||
* | add minimal comments | Aleksey Kladov | 2019-04-02 | 1 | -0/+2 |
| | |||||
* | rename flavor to kind | Aleksey Kladov | 2019-04-02 | 1 | -2/+2 |
| | |||||
* | move extensions to submodules | Aleksey Kladov | 2019-04-02 | 1 | -549/+16 |
| | |||||
* | remove flavor | Aleksey Kladov | 2019-04-02 | 1 | -4/+4 |
| | |||||
* | add ast::tokens | Aleksey Kladov | 2019-04-02 | 1 | -94/+12 |
| | |||||
* | simplify | Aleksey Kladov | 2019-04-02 | 1 | -23/+19 |
| | |||||
* | move ast traits to a separate file | Aleksey Kladov | 2019-04-02 | 1 | -144/+7 |
| | |||||
* | remove dead code | Aleksey Kladov | 2019-04-01 | 1 | -7/+0 |
| |