aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/ast/generated.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rename ra_syntax -> syntaxAleksey Kladov2020-08-121-41/+0
|
* Item is a StmtAleksey Kladov2020-07-311-2/+6
|
* Handwrite StmtAleksey Kladov2020-07-311-3/+34
|
* More compact generated codeAleksey Kladov2020-04-091-0/+2
|
* Start ast/generated/tokensAleksey Kladov2020-04-091-0/+1
|
* Prepare for spliting generated into tokens and nodesAleksey Kladov2020-04-091-9624/+2
|
* Scale back to only two traitsAleksey Kladov2020-04-091-171/+1920
|
* Scale back the traitsAleksey Kladov2020-04-091-2/+3028
|
* Macro patterns are not confused with expressions.Aleksey Kladov2020-04-031-1/+41
| | | | | | | | | | | We treat macro calls as expressions (there's appropriate Into impl), which causes problem if there's expresison and non-expression macro in the same node (like in the match arm). We fix this problem by nesting macor patterns into another node (the same way we nest path into PathExpr or PathPat). Ideally, we probably should add a similar nesting for macro expressions, but that needs some careful thinking about macros in blocks: `{ am_i_expression!() }`.
* Get rid of ItemOrMacroAleksey Kladov2020-03-261-1/+9
|
* implementing Display for enums too.Fireassember2020-03-111-0/+635
|
* Rename ast::ImplBlock -> ast::ImplDefAleksey Kladov2020-02-291-14/+14
|
* Merge #3062bors[bot]2020-02-111-1/+5
|\ | | | | | | | | | | | | | | | | | | 3062: Implement slice pattern AST > HIR lowering r=jplatte a=jplatte WIP. The necessary changes for parsing are implemented, but actual inference is not yet. Just wanted to upload what I've got so far so it doesn't get duplicated :) Will fix #3043 Co-authored-by: Jonas Platte <[email protected]>
| * Implement slice pattern AST > HIR loweringJonas Platte2020-02-111-1/+5
| |
* | Add or- and parenthesized-patternsMatthew Jasper2020-02-091-6/+75
| |
* | Rename add import assistKirill Bulatov2020-02-071-1/+1
|/
* Improve const generics parsingMichael Chesser2020-01-061-0/+33
| | | | | - Handle const generics type args - Fix issue with const generic as first parameter in trait impl
* Switch ast declaration from ron to a macroAleksey Kladov2020-01-031-1484/+1476
|
* Collect visibility of items during nameresFlorian Diebold2019-12-261-0/+3
|
* Merge #2641bors[bot]2019-12-221-0/+30
|\ | | | | | | | | | | | | | | | | | | | | 2641: Parse const generics r=matklad a=roblabla Adds very primitive support for parsing const generics (`const IDENT: TY`) so that rust-analyzer stops complaining about the syntax being invalid. Fixes #1574 Fixes #2281 Co-authored-by: roblabla <[email protected]>
| * Parse const genericsroblabla2019-12-221-0/+30
| | | | | | | | | | Fixes #1574 Fixes #2281
* | Handle closure return typesFlorian Diebold2019-12-201-0/+3
|/ | | | Fixes #2547.
* Add `ModuleItemsOwner` to `Block`ice10002019-12-031-0/+1
|
* Fix hir for ast::UnionDefAleksey Kladov2019-11-251-4/+24
|
* Introduce dedicated AST node for unionAleksey Kladov2019-11-251-0/+28
| | | | | | | | | | Although structs and unions have the same syntax and differ only in the keyword, re-using the single syntax node for both of them leads to confusion in practice, and propagates further down the hir in an upleasent way. Moreover, static and consts also share syntax, but we use different nodes for them.
* Allow non-path default type parametersAleksey Kladov2019-11-201-2/+5
|
* Remove the custom impl of AttrsOwner for ImplItemDJMcNab2019-11-181-0/+1
| | | | | | The default impl should have the same behaviour, and it can be generated by codegen. See also `ModuleItem` and `NominalDef`
* Pass attributes as token tree to DefCollectoruHOOCCOOHu2019-10-021-0/+1
|
* Merge branch 'master' into feature/issue/1856Alexander Andreev2019-09-301-1/+42
|\ | | | | | | | | # Conflicts: # crates/ra_assists/src/ast_editor.rs
| * Fix API of AttruHOOCCOOHu2019-09-301-3/+0
| |
| * Parse correct AttrInputuHOOCCOOHu2019-09-301-0/+44
| |
* | Added test for check doc strings in crates.Alexander Andreev2019-09-301-1/+1
|/ | | | #1856
* Support path starting with a typeuHOOCCOOHu2019-09-151-0/+3
|
* Add `DotDotPat` to ASTDylan MacKenzie2019-09-151-2/+35
| | | | This is modeled on `PlaceholderPat`.
* Infer box expressionuHOOCCOOHu2019-09-111-3/+37
|
* Lower `Fn(X, Y) -> Z` pathsFlorian Diebold2019-09-071-0/+6
|
* Merge #1743bors[bot]2019-09-051-0/+1
|\ | | | | | | | | | | | | | | 1743: Support `#[macro_use]` on `extern crate` r=matklad a=uHOOCCOOHu Unfortunately, #1688 is still an issue. My guess is wrong :( Co-authored-by: uHOOCCOOHu <[email protected]>
| * Support resolution of `#[macro_use] extern crate`uHOOCCOOHu2019-08-311-0/+1
| |
* | fix hir for new block syntaxAleksey Kladov2019-09-021-1/+1
| |
* | fix generated ASTAleksey Kladov2019-09-021-1/+1
| |
* | remove useless traitAleksey Kladov2019-09-021-2/+5
|/
* Add `BoxPat` variantDylan MacKenzie2019-08-231-2/+37
|
* rename struct -> record, pos -> tupleAleksey Kladov2019-08-231-261/+261
|
* remove ast::*Kind enumsAleksey Kladov2019-08-191-345/+339
| | | | With the new owned trees, we don't need an indirection here
* use new quote-generated astAleksey Kladov2019-08-181-1188/+1408
|
* Add function parameters attributesEvgenii P2019-08-071-0/+2
|
* add await expr to astUnreal Hoang2019-07-201-1/+32
|
* cleanup castsAleksey Kladov2019-07-191-798/+939
|
* migrate ra_syntax to the new rowan APIAleksey Kladov2019-07-191-1888/+832
|
* [#1083] Try block syntaxAndrey Tkachenko2019-06-061-0/+37
|