aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/ast
Commit message (Collapse)AuthorAgeFilesLines
* simplifyAleksey Kladov2020-07-301-18/+18
|
* Finalize attribute grammarAleksey Kladov2020-07-302-56/+13
|
* Dead codeAleksey Kladov2020-07-301-102/+76
|
* Introduce GenericParamAleksey Kladov2020-07-302-85/+149
|
* Finaize item grammarAleksey Kladov2020-07-301-64/+71
|
* Finalize impl GrammarAleksey Kladov2020-07-302-17/+18
|
* Finalize Trait grammarAleksey Kladov2020-07-302-17/+17
|
* Finalize const&static grammarAleksey Kladov2020-07-302-44/+45
|
* Rename EnumVariant -> VariantAleksey Kladov2020-07-302-17/+17
|
* Rename EnumDef -> EnumAleksey Kladov2020-07-302-24/+24
|
* Rename StructDef -> StructAleksey Kladov2020-07-302-23/+23
|
* Finalize union grammarAleksey Kladov2020-07-302-22/+22
|
* Finalize structs grammarAleksey Kladov2020-07-301-1/+0
|
* Rename FieldDef -> FieldAleksey Kladov2020-07-303-57/+53
|
* Rename RecordLit -> RecordExprAleksey Kladov2020-07-305-38/+40
|
* Rename TypeParamList -> GenericParamListAleksey Kladov2020-07-303-18/+18
|
* Rename TypeAliasDef -> TypeAliasAleksey Kladov2020-07-303-50/+48
|
* Rename FnDef -> FnAleksey Kladov2020-07-305-211/+214
|
* Rename UseItem -> UseAleksey Kladov2020-07-303-17/+18
|
* Add comma list to use treeAleksey Kladov2020-07-301-77/+78
|
* Finish extern crates grammarAleksey Kladov2020-07-301-62/+62
|
* Update testsAleksey Kladov2020-07-301-2/+6
|
* Rename RenameAleksey Kladov2020-07-303-10/+10
|
* Finish Module grammarAleksey Kladov2020-07-301-0/+1
|
* Split ItemList & AssocItemListAleksey Kladov2020-07-302-24/+56
|
* Finish SourceFile grammarAleksey Kladov2020-07-291-1/+3
|
* Rename ModuleItem -> ItemAleksey Kladov2020-07-292-385/+385
|
* Rename NomialDef -> AdtDefAleksey Kladov2020-07-291-19/+19
|
* Switch to ungrammar from ast_srcAleksey Kladov2020-07-293-2204/+824
| | | | | | | | | | | | | | | | | | The primary advantage of ungrammar is that it (eventually) allows one to describe concrete syntax tree structure -- with alternatives and specific sequence of tokens & nodes. That should be re-usable for: * generate `make` calls * Rust reference * Hypothetical parser's evented API We loose doc comments for the time being unfortunately. I don't think we should add support for doc comments to ungrammar -- they'll make grammar file hard to read. We might supply docs as out-of band info, or maybe just via a reference, but we'll think about that once things are no longer in flux
* Dead codeAleksey Kladov2020-07-291-41/+0
|
* Remove dead codeAleksey Kladov2020-07-291-3/+1
|
* Remove dead codeAleksey Kladov2020-07-291-46/+0
|
* Rename modulesAleksey Kladov2020-07-233-1/+2
|
* Move remove_bounds to edit.rsJonas Schievink2020-07-142-13/+15
|
* missing impl members: remove assoc. type boundsJonas Schievink2020-07-141-0/+13
|
* Don't mess with cursor position when adding hashesAleksey Kladov2020-07-091-6/+11
|
* Clippy perf warningskjeremy2020-07-061-6/+2
| | | | Removes redundant clones
* Simlify with matches!()Veetaha2020-06-282-12/+9
|
* Add quickfix to add a struct fieldTimo Freiberg2020-06-121-0/+4
|
* Merge #4855bors[bot]2020-06-122-141/+141
|\ | | | | | | | | | | | | | | 4855: Use more idiomatic style for lifetimes in generated code r=matklad a=Veetaha Co-authored-by: Veetaha <[email protected]>
| * Apply codegen with idiomatic lifetimesVeetaha2020-06-112-141/+141
| |
* | SimplifyVeetaha2020-06-121-5/+5
|/
* Separating parsing of `for` in predicates and typesMatthew Jasper2020-06-101-0/+2
|
* Use correct indent when replacing with matchAleksey Kladov2020-06-091-4/+9
|
* Fix bug in lexer for format specifier where the `type` and `width` were not ↵Leander Tentrup2020-06-071-14/+23
| | | | correctly distinguished
* Enable hover and autocomplete docs on macro generated itemsAaron Loucks2020-06-031-2/+11
|
* Merge #4658bors[bot]2020-06-021-5/+0
|\ | | | | | | | | | | | | | | | | | | 4658: Fix problem with format string tokenization r=matklad a=ruabmbua Fixed by just not handling closing curlybrace escaping. Closes https://github.com/rust-analyzer/rust-analyzer/issues/4637 Co-authored-by: Roland Ruckerbauer <[email protected]>
| * Fix problem with format string tokenizationRoland Ruckerbauer2020-05-301-5/+0
| | | | | | | | Fixed by just not handling closing curlybrace escaping.
* | correctly infer labelled breaksrobojumper2020-05-311-0/+1
|/
* Support raw_ref_op's raw reference operatorrobojumper2020-05-281-0/+3
|