Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Display snippet in the completion label | Kirill Bulatov | 2020-08-11 | 1 | -4/+4 |
| | |||||
* | Use Hygiene in completion | Laurențiu Nicola | 2020-08-11 | 1 | -5/+5 |
| | |||||
* | Better codes | JmPotato | 2020-08-10 | 1 | -8/+4 |
| | | | | Signed-off-by: JmPotato <[email protected]> | ||||
* | Show const body in short_label | JmPotato | 2020-08-10 | 2 | -5/+13 |
| | | | | Signed-off-by: JmPotato <[email protected]> | ||||
* | Merge #5692 | bors[bot] | 2020-08-10 | 6 | -12/+102 |
|\ | | | | | | | | | | | | | | | | | | | 5692: Add support for extern crate r=jonas-schievink a=Nashenas88 This adds syntax highlighting, hover and goto def functionality for extern crate. Fixes #5690 Co-authored-by: Paul Daniel Faria <[email protected]> | ||||
| * | Remove Option<...> from result of Crate::root_module | Paul Daniel Faria | 2020-08-09 | 3 | -6/+7 |
| | | | | | | | | | | There doesn't seem to be any need for it, and removing it simplies several paths of code that depend on it. | ||||
| * | Add support for extern crate | Paul Daniel Faria | 2020-08-08 | 6 | -13/+102 |
| | | | | | | | | | | This adds syntax highlighting, hover and goto def functionality for extern crate | ||||
* | | format in to_proto::markup_content | JmPotato | 2020-08-09 | 1 | -0/+31 |
| | | | | | | | | Signed-off-by: JmPotato <[email protected]> | ||||
* | | Merge #5684 | bors[bot] | 2020-08-08 | 2 | -10/+67 |
|\ \ | |/ |/| | | | | | | | | | | | | | | | 5684: Semantic highlighting for unsafe union field access r=jonas-schievink a=Nashenas88 This change adds support for unions in inference and lowering, then extends on that to add the unsafe semantic modifier on field access only. The `is_possibly_unsafe` function in `syntax_highlighting.rs` could be extended to support fns and static muts so that their definitions are not highlighted as unsafe, but only their usage. Also, each commit of this PR updates the tests. By reviewing the files by commit, it's easy to see how the changes in the code affected the tests. Co-authored-by: Paul Daniel Faria <[email protected]> | ||||
| * | Apply unsafe semantic highlighting to union field access | Paul Daniel Faria | 2020-08-08 | 1 | -10/+56 |
| | | |||||
| * | Add test for unsafe union field access highlighting | Paul Daniel Faria | 2020-08-07 | 1 | -0/+11 |
| | | |||||
* | | Mark static mutable names as unsafe | Paul Daniel Faria | 2020-08-07 | 1 | -0/+1 |
| | | |||||
* | | Add test for accessing static mut | Paul Daniel Faria | 2020-08-07 | 1 | -0/+7 |
|/ | |||||
* | align names in make | Aleksey Kladov | 2020-08-05 | 1 | -4/+6 |
| | |||||
* | Add test showing unresolved module rename | Paul Daniel Faria | 2020-08-04 | 1 | -0/+3 |
| | |||||
* | Fold trait declarations | Laurențiu Nicola | 2020-08-03 | 1 | -1/+22 |
| | |||||
* | Update grammar | Aleksey Kladov | 2020-08-01 | 2 | -2/+2 |
| | |||||
* | Rename DotDotPat -> RestPat | Aleksey Kladov | 2020-07-31 | 1 | -1/+1 |
| | |||||
* | Rename | Aleksey Kladov | 2020-07-31 | 3 | -4/+4 |
| | |||||
* | Rename BindPat -> IdentPat | Aleksey Kladov | 2020-07-31 | 6 | -17/+21 |
| | |||||
* | Allign RecordPat with RecordExpr | Aleksey Kladov | 2020-07-31 | 3 | -5/+5 |
| | |||||
* | Rename TypeArgList -> GenericArgList | Aleksey Kladov | 2020-07-31 | 2 | -2/+2 |
| | |||||
* | Rename LambdaExpr -> ClosureExpr | Aleksey Kladov | 2020-07-31 | 1 | -1/+1 |
| | |||||
* | Rename TypeRef -> Type | Aleksey Kladov | 2020-07-31 | 3 | -4/+4 |
| | | | | | | | | | | 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 | 4 | -31/+22 |
| | |||||
* | Finalize attribute grammar | Aleksey Kladov | 2020-07-30 | 1 | -6/+4 |
| | |||||
* | Finalize impl Grammar | Aleksey Kladov | 2020-07-30 | 6 | -15/+14 |
| | |||||
* | Finalize Trait grammar | Aleksey Kladov | 2020-07-30 | 7 | -25/+25 |
| | |||||
* | fmt | Aleksey Kladov | 2020-07-30 | 1 | -4/+3 |
| | |||||
* | Finalize const&static grammar | Aleksey Kladov | 2020-07-30 | 6 | -17/+17 |
| | |||||
* | Rename EnumVariant -> Variant | Aleksey Kladov | 2020-07-30 | 7 | -10/+10 |
| | |||||
* | Rename EnumDef -> Enum | Aleksey Kladov | 2020-07-30 | 5 | -9/+9 |
| | |||||
* | Rename StructDef -> Struct | Aleksey Kladov | 2020-07-30 | 7 | -32/+32 |
| | |||||
* | Finalize union grammar | Aleksey Kladov | 2020-07-30 | 4 | -4/+4 |
| | |||||
* | Rename FieldDef -> Field | Aleksey Kladov | 2020-07-30 | 8 | -19/+19 |
| | |||||
* | Rename RecordLit -> RecordExpr | Aleksey Kladov | 2020-07-30 | 5 | -10/+10 |
| | |||||
* | Rename TypeParamList -> GenericParamList | Aleksey Kladov | 2020-07-30 | 4 | -6/+6 |
| | |||||
* | Rename TypeAliasDef -> TypeAlias | Aleksey Kladov | 2020-07-30 | 6 | -10/+10 |
| | |||||
* | Rename FnDef -> Fn | Aleksey Kladov | 2020-07-30 | 16 | -86/+86 |
| | |||||
* | Rename UseItem -> Use | Aleksey Kladov | 2020-07-30 | 2 | -4/+4 |
| | |||||
* | Split ItemList & AssocItemList | Aleksey Kladov | 2020-07-30 | 3 | -37/+43 |
| | |||||
* | Rename ModuleItem -> Item | Aleksey Kladov | 2020-07-29 | 2 | -3/+3 |
| | |||||
* | Replace rand with oorandom | Aleksey Kladov | 2020-07-29 | 1 | -5/+5 |
| | |||||
* | Rename NomialDef -> AdtDef | Aleksey Kladov | 2020-07-29 | 1 | -5/+5 |
| | |||||
* | Merge #5564 | bors[bot] | 2020-07-29 | 2 | -4/+9 |
|\ | | | | | | | | | | | | | | | 5564: SSR: Restrict to current selection if any r=davidlattimore a=davidlattimore The selection is also used to avoid unnecessary work, but only to the file level. Further restricting unnecessary work is left for later. Co-authored-by: David Lattimore <[email protected]> | ||||
| * | SSR: Rename position and lookup_context to resolve_context | David Lattimore | 2020-07-29 | 1 | -2/+2 |
| | | |||||
| * | SSR: Restrict to current selection if any | David Lattimore | 2020-07-29 | 2 | -3/+8 |
| | | | | | | | | | | The selection is also used to avoid unnecessary work, but only to the file level. Further restricting unnecessary work is left for later. | ||||
* | | Allow running more tests at once | Kirill Bulatov | 2020-07-28 | 1 | -54/+110 |
|/ | |||||
* | Fold multiline fn parameters | Aleksey Kladov | 2020-07-27 | 1 | -1/+13 |
| |