aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/ast/generated.rs
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* fill struct fields diagnosticSergey Parilin2019-05-061-4/+4
|
* Merge #1208bors[bot]2019-05-041-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1208: [WIP] Goto for Macro's r=matklad a=Lapz Adds goto definition for macros. Currently only works for macros in the current crate ~~otherwise it panics~~. Proper macro resolution needs to be added for it to resolve macros in other crates. Todo - [X] Allow goto from macro calls - [X] Fix panics - [x] Add tests ![Screen Recording 2019-04-25 at 18 00 24](https://user-images.githubusercontent.com/19998186/56754499-1dd01c00-6785-11e9-9e9a-1e36de70cfa3.gif) Co-authored-by: Lenard Pratt <[email protected]>
| * Added local macro gotoLenard Pratt2019-05-041-0/+1
| |
* | Add default type param in TypeParam NodeEdwin Cheng2019-05-031-0/+1
|/
* Merge #1154bors[bot]2019-04-201-0/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1154: Initial support for lang items (and str completion) r=flodiebold a=marcogroppo This PR adds partial support for lang items. For now, the only supported lang items are the ones that target an impl block. Lang items are now resolved during type inference - this means that `str` completion now works. Fixes #1139. (thanks Florian Diebold for the help!) Co-authored-by: Marco Groppo <[email protected]>
| * Initial support for lang items.Marco Groppo2019-04-191-0/+1
| |
* | Add MacroItems and MacroStmts in grammer.ronEdwin Cheng2019-04-181-0/+66
|/
* migrate to untyped rowanAleksey Kladov2019-04-091-115/+115
|
* Merge #1076bors[bot]2019-04-021-2/+10
|\ | | | | | | | | | | | | | | | | 1076: Const body inference r=flodiebold a=Lapz This is the second part of #887. I've added type inference on const bodies and introduced the DefWithBody containing Function, Const and Static. I want to add tests but im unsure on how I would go about testing that completions work. Co-authored-by: Lenard Pratt <[email protected]>
| * Added const bodies and static body to the astLenard Pratt2019-04-021-3/+10
| | | | | | | | | | | | and added inference the inference test reduce code duplication
| * Added defWithBodyLenard Pratt2019-03-301-0/+1
| |
* | Merge #1084bors[bot]2019-04-011-29/+0
|\ \ | | | | | | | | | | | | | | | | | | | | | 1084: remove dead code r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | remove dead codeAleksey Kladov2019-04-011-29/+0
| | |
* | | intelligently add parens when inlining local varaiblesgfreezy2019-04-011-1/+9
|/ /
* | switch to new rowanAleksey Kladov2019-04-011-523/+4
| |
* | Add WherePred to allow predicate access in WhereClauseVille Penttinen2019-03-311-1/+42
| | | | | | | | | | This also unifies parsing of WHERE_PRED bounds, now Lifetime bounds will also be parsed using TYPE_BOUND_LIST
* | Add trait ast::TypeBoundsOwnerVille Penttinen2019-03-311-0/+5
| |
* | Add new TYPE_BOUND_LIST and TYPE_BOUND syntax kindsVille Penttinen2019-03-301-0/+68
|/ | | | | | These are now used when parsing type bounds. In addition parsing paths inside a bound now does not recursively parse paths, rather they are treated as separate bounds, separated by +.
* Basics for trait method resolutionFlorian Diebold2019-03-251-1/+5
|
* add name resolution from the old implAleksey Kladov2019-03-171-0/+1
| | | | unlike the old impl, this also handles macro imports across crates
* Remove `TypeRef` from item opts which implement TypeAscriptionOwnerVille Penttinen2019-02-271-27/+3
|
* Add new trait TypeAscriptionOwnerVille Penttinen2019-02-261-0/+6
| | | | | This trait should be implemented for nodes which have an ascribed type, e.g. thing : Type. Such as let, const, static, param, named struct fields.
* rename type to type_alias in the AST as wellAleksey Kladov2019-02-251-47/+47
|
* support upcastig in AST enumAleksey Kladov2019-02-241-0/+398
|
* Enable parsing attributes for generic lifetimes and type parametersVille Penttinen2019-02-171-0/+2
|
* Enable parsing of attributes inside a match blockVille Penttinen2019-02-171-0/+2
| | | | | | | We allow invalid inner attributes to be parsed, e.g. inner attributes that are not directly after the opening brace of the match block. Instead we run validation on `MatchArmList` to allow better reporting of errors.
* Handle generic args for method callsFlorian Diebold2019-02-161-0/+4
|
* Add generic params to impl blocksFlorian Diebold2019-02-161-0/+1
|
* Import the preludeFlorian Diebold2019-02-131-0/+1
|
* rename yellow -> syntax_nodeAleksey Kladov2019-02-121-1/+1
| | | | why yellow in the first place? Its red + green.
* make macro a NameOwnerAleksey Kladov2019-02-111-0/+1
|
* Fix handling of literal patternsFlorian Diebold2019-02-091-1/+36
| | | | | Wrap them in a LiteralPat node so they can be distinguished from literal expressions.