Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename TypeRef -> Type | Aleksey Kladov | 2020-07-31 | 1 | -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. | ||||
* | Remove TypeAscriptionOwner | Aleksey Kladov | 2020-07-30 | 1 | -2/+3 |
| | |||||
* | Finalize impl Grammar | Aleksey Kladov | 2020-07-30 | 1 | -3/+2 |
| | |||||
* | Rename FnDef -> Fn | Aleksey Kladov | 2020-07-30 | 1 | -2/+2 |
| | |||||
* | Fix module renaming | Aleksey Kladov | 2020-07-03 | 1 | -6/+53 |
| | |||||
* | Compress rename tests | Aleksey Kladov | 2020-07-03 | 1 | -101/+142 |
| | |||||
* | Use expect for rename tests | Aleksey Kladov | 2020-07-03 | 1 | -193/+57 |
| | |||||
* | Adhere to code style in rename tests | Aleksey Kladov | 2020-07-03 | 1 | -341/+324 |
| | |||||
* | Reuse Semantics instances | Laurențiu Nicola | 2020-07-01 | 1 | -21/+23 |
| | |||||
* | Remove duplication | Aleksey Kladov | 2020-06-24 | 1 | -6/+4 |
| | |||||
* | More consistent usage of fixtures | Aleksey Kladov | 2020-06-24 | 1 | -3/+5 |
| | |||||
* | New VFS | Aleksey Kladov | 2020-06-23 | 1 | -3/+2 |
| | |||||
* | Fix renaming mod in use tree | unexge | 2020-06-17 | 1 | -48/+139 |
| | |||||
* | Anchor file-system operations to the file, and not to the source root. | Aleksey Kladov | 2020-06-16 | 1 | -50/+41 |
| | | | | | | | | | | | | | | | | Anchoring to the SourceRoot wont' work if the path is absolute: #[path = "/tmp/foo.rs"] mod foo; Anchoring to a file will. However, we *should* anchor, instead of just producing an abs path. I can imagine a situation where, for example, rust-analyzer processes crates from different machines (or, for example, from in-memory git branch), where the same absolute path in different crates might refer to different files in the end! | ||||
* | Simplify | Aleksey Kladov | 2020-06-08 | 1 | -3/+3 |
| | |||||
* | KISS SourceChange | Aleksey Kladov | 2020-05-22 | 1 | -7/+4 |
| | | | | | | The idea behind requiring the label is a noble one, but we are not really using it consistently anyway, and it should be easy to retrofit later, should we need it. | ||||
* | Cleanup TextEdit | Aleksey Kladov | 2020-05-21 | 1 | -2/+2 |
| | |||||
* | Remove dead code for handling cursor positions | Aleksey Kladov | 2020-05-21 | 1 | -3/+0 |
| | |||||
* | Switch to new magic marks | Aleksey Kladov | 2020-05-20 | 1 | -6/+6 |
| | |||||
* | Add AssistConfig | Aleksey Kladov | 2020-05-19 | 1 | -0/+3 |
| | |||||
* | Add 'self to parameter' renaming. | zbsz | 2020-05-16 | 1 | -5/+206 |
| | |||||
* | Fix rename of enum variant visible from module | Fedor Sakharov | 2020-05-06 | 1 | -0/+62 |
| | |||||
* | Fixup tests | Aleksey Kladov | 2020-05-05 | 1 | -16/+16 |
| | |||||
* | Normalize naming of diagnostics | Aleksey Kladov | 2020-05-05 | 1 | -5/+5 |
| | |||||
* | Add test marks | Aleksey Kladov | 2020-05-04 | 1 | -5/+8 |
| | |||||
* | Rename StructField -> Field | Aleksey Kladov | 2020-04-25 | 1 | -2/+2 |
| | |||||
* | Convert tests to text-size | Aleksey Kladov | 2020-04-25 | 1 | -11/+8 |
| | |||||
* | Convert code to text-size | Aleksey Kladov | 2020-04-25 | 1 | -2/+2 |
| | |||||
* | Add test | Edwin Cheng | 2020-03-22 | 1 | -0/+57 |
| | |||||
* | find_usages limited to actual usages again | Matt Niemeir | 2020-03-11 | 1 | -0/+70 |
| | |||||
* | Renaming a local renames struct field shorthand | Matt Niemeir | 2020-03-10 | 1 | -5/+43 |
| | |||||
* | Struct field rename renames field in constructor field shorthand | Matt Niemeir | 2020-03-10 | 1 | -21/+79 |
| | |||||
* | Refactor primary IDE API | Aleksey Kladov | 2020-02-26 | 1 | -14/+14 |
| | | | | | | | | | | This introduces the new type -- Semantics. Semantics maps SyntaxNodes to various semantic info, such as type, name resolution or macro expansions. To do so, Semantics maintains a HashMap which maps every node it saw to the file from which the node originated. This is enough to get all the necessary hir bits just from syntax. | ||||
* | remove unneeded `collect` | adamrk | 2020-02-21 | 1 | -11/+7 |
| | |||||
* | use Vec::extend instead of Vec::push in loop | Adam Bratschi-Kaye | 2020-02-21 | 1 | -3/+1 |
| | | | | Co-Authored-By: Laurențiu Nicola <[email protected]> | ||||
* | rename module references | adamrk | 2020-02-21 | 1 | -0/+112 |
| | |||||
* | Handle macro token cases for rename | Edwin Cheng | 2020-02-09 | 1 | -0/+19 |
| | |||||
* | cleanup imports | Aleksey Kladov | 2020-02-06 | 1 | -2/+2 |
| | |||||
* | ra_syntax: refactored the lexer design as per @matklad and @kiljacken PR review | Veetaha | 2020-02-03 | 1 | -2/+4 |
| | |||||
* | Reimplemented lexer with vectors instead of iterators | Veetaha | 2020-02-03 | 1 | -6/+4 |
| | |||||
* | Move module to SourceBinder | Aleksey Kladov | 2020-01-16 | 1 | -1/+1 |
| | |||||
* | Adds a way to limits reference search by StructLiteral | Mikhail Modin | 2020-01-08 | 1 | -1/+7 |
| | |||||
* | Push identifier check to rename function | Wilco Kusee | 2019-11-29 | 1 | -1/+8 |
| | |||||
* | Test rename for various identifiers | Wilco Kusee | 2019-11-29 | 1 | -0/+43 |
| | |||||
* | Rename Source -> InFile | Aleksey Kladov | 2019-11-28 | 1 | -1/+1 |
| | |||||
* | rename ra_ide_api -> ra_ide | Aleksey Kladov | 2019-11-27 | 1 | -0/+328 |