Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Less stubs | Kirill Bulatov | 2020-08-11 | 1 | -1/+1 |
| | |||||
* | Add support for extern crate | Paul Daniel Faria | 2020-08-08 | 1 | -1/+1 |
| | | | | | This adds syntax highlighting, hover and goto def functionality for extern crate | ||||
* | align names in make | Aleksey Kladov | 2020-08-05 | 7 | -13/+12 |
| | |||||
* | Merge #5648 | bors[bot] | 2020-08-05 | 1 | -0/+391 |
|\ | | | | | | | | | | | | | | | 5648: Add expand glob import assist r=jonas-schievink a=unexge closes https://github.com/rust-analyzer/rust-analyzer/issues/5557 Co-authored-by: unexge <[email protected]> | ||||
| * | Pattern match on slice elements instead of using `.first().unwrap()` | unexge | 2020-08-05 | 1 | -7/+6 |
| | | |||||
| * | Look for trait methods in expand glob import assist | unexge | 2020-08-05 | 1 | -13/+65 |
| | | |||||
| * | Simplify `find_mod_path` with use of `node.ancestors` | unexge | 2020-08-03 | 1 | -20/+1 |
| | | |||||
| * | Generate doctest | unexge | 2020-08-02 | 1 | -1/+1 |
| | | |||||
| * | Rename ast::UseItem to ast::Use | unexge | 2020-08-02 | 1 | -1/+1 |
| | | |||||
| * | Add expand glob import assist | unexge | 2020-08-02 | 1 | -0/+359 |
| | | |||||
* | | do not add to `pub use` statements | Jacob Rothstein | 2020-08-03 | 1 | -0/+42 |
| | | |||||
* | | Merge #5628 | bors[bot] | 2020-08-03 | 1 | -1/+1 |
|\ \ | |/ |/| | | | | | | | | | | | 5628: Rename test modules r=matklad a=lnicola Co-authored-by: Laurențiu Nicola <[email protected]> | ||||
| * | Rename test modules | Laurențiu Nicola | 2020-07-31 | 1 | -1/+1 |
| | | |||||
* | | Update grammar | Aleksey Kladov | 2020-08-01 | 1 | -1/+1 |
| | | |||||
* | | Unify naming of tuple fields | Aleksey Kladov | 2020-07-31 | 1 | -2/+2 |
| | | |||||
* | | Rename BindPat -> IdentPat | Aleksey Kladov | 2020-07-31 | 4 | -4/+4 |
| | | |||||
* | | Rename PalceholderPat -> WildcardPat | Aleksey Kladov | 2020-07-31 | 3 | -15/+12 |
| | | |||||
* | | Allign RecordPat with RecordExpr | Aleksey Kladov | 2020-07-31 | 1 | -2/+2 |
| | | |||||
* | | Minor | Aleksey Kladov | 2020-07-31 | 1 | -1/+0 |
| | | |||||
* | | Rename LambdaExpr -> ClosureExpr | Aleksey Kladov | 2020-07-31 | 1 | -2/+2 |
| | | |||||
* | | Item is a Stmt | Aleksey Kladov | 2020-07-31 | 1 | -0/+2 |
| | | |||||
* | | Reame PlaceholderType -> InferType | Aleksey Kladov | 2020-07-31 | 1 | -1/+1 |
| | | |||||
* | | Rename TypeRef -> Type | Aleksey Kladov | 2020-07-31 | 2 | -2/+2 |
|/ | | | | | | | | | | The TypeRef name comes from IntelliJ days, where you often have both type *syntax* as well as *semantical* representation of types in scope. And naming both Type is confusing. In rust-analyzer however, we use ast types as `ast::Type`, and have many more semantic counterparts to ast types, so avoiding name clash here is just confusing. | ||||
* | Use ty to access most TypeRefs | Aleksey Kladov | 2020-07-30 | 2 | -2/+2 |
| | |||||
* | Remove TypeAscriptionOwner | Aleksey Kladov | 2020-07-30 | 3 | -17/+12 |
| | |||||
* | Finalize attribute grammar | Aleksey Kladov | 2020-07-30 | 1 | -2/+2 |
| | |||||
* | Finalize impl Grammar | Aleksey Kladov | 2020-07-30 | 4 | -7/+7 |
| | |||||
* | Finalize Trait grammar | Aleksey Kladov | 2020-07-30 | 2 | -3/+3 |
| | |||||
* | Finalize const&static grammar | Aleksey Kladov | 2020-07-30 | 2 | -4/+4 |
| | |||||
* | Rename EnumVariant -> Variant | Aleksey Kladov | 2020-07-30 | 2 | -3/+3 |
| | |||||
* | Rename EnumDef -> Enum | Aleksey Kladov | 2020-07-30 | 2 | -3/+3 |
| | |||||
* | Rename StructDef -> Struct | Aleksey Kladov | 2020-07-30 | 3 | -6/+6 |
| | |||||
* | Rename FieldDef -> Field | Aleksey Kladov | 2020-07-30 | 2 | -3/+3 |
| | |||||
* | Rename RecordLit -> RecordExpr | Aleksey Kladov | 2020-07-30 | 4 | -6/+6 |
| | |||||
* | Rename TypeParamList -> GenericParamList | Aleksey Kladov | 2020-07-30 | 5 | -13/+14 |
| | |||||
* | Rename TypeAliasDef -> TypeAlias | Aleksey Kladov | 2020-07-30 | 2 | -8/+4 |
| | |||||
* | Rename FnDef -> Fn | Aleksey Kladov | 2020-07-30 | 8 | -16/+16 |
| | |||||
* | Rename UseItem -> Use | Aleksey Kladov | 2020-07-30 | 3 | -4/+4 |
| | |||||
* | Split ItemList & AssocItemList | Aleksey Kladov | 2020-07-30 | 3 | -4/+5 |
| | |||||
* | Merge #5554 | bors[bot] | 2020-07-29 | 1 | -9/+85 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5554: Fix remove_dbg r=matklad a=petr-tik Closes #5129 Addresses two issues: - keep the parens from dbg!() in case the call is chained or there is semantic difference if parens are excluded - Exclude the semicolon after the dbg!(); by checking if it was accidentally included in the macro_call investigated, but decided against: fix ast::MacroCall extraction to never include semicolons at the end - this logic lives in rowan. Defensively shorten the macro_range if there is a semicolon token. Deleted unneccessary temp variable macro_args Renamed macro_content to "paste_instead_of_dbg", because it isn't a simple extraction of text inside dbg!() anymore Co-authored-by: petr-tik <[email protected]> | ||||
| * | Addressed code review | petr-tik | 2020-07-29 | 1 | -27/+41 |
| | | | | | | | | | | | | | | replaced match with let-if variable assignment removed the unnecessary semicolon_on_end variable converted all code and expected test variables to raw strings and inlined them in asserts | ||||
| * | Fixed #5129 | petr-tik | 2020-07-27 | 1 | -8/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Addresses two issues: - keep the parens from dbg!() in case the call is chained or there is semantic difference if parens are excluded - Exclude the semicolon after the dbg!(); by checking if it was accidentally included in the macro_call investigated, but decided against: fix ast::MacroCall extraction to never include semicolons at the end - this logic lives in rowan. Defensively shorten the macro_range if there is a semicolon token. Deleted unneccessary temp variable macro_args Renamed macro_content to "paste_instead_of_dbg", because it isn't a simple extraction of text inside dbg!() anymore | ||||
| * | Make all test fn names consistent in remove_dbg | petr-tik | 2020-07-27 | 1 | -3/+29 |
| | | |||||
| * | Added failing tests | petr-tik | 2020-07-27 | 1 | -0/+21 |
| | | |||||
* | | Rename NomialDef -> AdtDef | Aleksey Kladov | 2020-07-29 | 2 | -3/+3 |
|/ | |||||
* | assists: change_return_type_to_result: clarify assist description | Matthias Krüger | 2020-07-22 | 1 | -1/+1 |
| | | | | | | | | I had a -> Option<PathBuf> fn, which I wanted to change to Result<PathBuf, _>, but despite advertising to do so, the assist did not change the result type to Result<PathBuf, _> but instead just wrapped it in a Result: <Result<Option<PathBuf>, _>. I changed the assist description to "Wrap return type in Result" to clarify that the assist only wraps the preexisting type and does not do any deep Option-to-Result refactoring. | ||||
* | Replace existing visibility modifier in fix_visibility | Timo Freiberg | 2020-07-21 | 1 | -15/+75 |
| | |||||
* | Cleanup extact variable | Aleksey Kladov | 2020-07-21 | 1 | -48/+55 |
| | |||||
* | minor | Aleksey Kladov | 2020-07-21 | 1 | -2/+2 |
| | |||||
* | Minor perf tweaks per clippy | Jeremy Kolb | 2020-07-19 | 2 | -2/+2 |
| |