Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add Loc2IdMap | Aleksey Kladov | 2018-11-18 | 1 | -0/+1 |
| | |||||
* | Fix typos | Adolfo OchagavĂa | 2018-11-11 | 1 | -1/+1 |
| | |||||
* | Rename File -> SourceFileNode | Aleksey Kladov | 2018-11-07 | 1 | -7/+7 |
| | |||||
* | Rustfmt to pass CI | Jeremy A. Kolb | 2018-11-07 | 1 | -1/+1 |
| | |||||
* | Show documentation for hover requests | Jeremy A. Kolb | 2018-11-07 | 1 | -0/+7 |
| | |||||
* | Use FilePosition everywhere | Aleksey Kladov | 2018-11-05 | 1 | -33/+19 |
| | |||||
* | rename Position to FilePostion | Aleksey Kladov | 2018-11-05 | 1 | -7/+7 |
| | |||||
* | Fully add inline modules to module tree | Aleksey Kladov | 2018-11-05 | 1 | -2/+6 |
| | |||||
* | Use Default everywhere | Aleksey Kladov | 2018-11-04 | 1 | -6/+1 |
| | |||||
* | Don't order import alphabetical | Aleksey Kladov | 2018-11-01 | 1 | -4/+4 |
| | | | | | alphabetical ordering is no more consistent, and much less useful then the ordering which arises naturally when you add import. | ||||
* | Some docs | Aleksey Kladov | 2018-11-01 | 1 | -0/+12 |
| | |||||
* | Reformat all | Aleksey Kladov | 2018-10-31 | 1 | -21/+26 |
| | |||||
* | Add MockAnalysis to make testing easier | Aleksey Kladov | 2018-10-31 | 1 | -2/+1 |
| | |||||
* | Move completion to ra_analysis | Aleksey Kladov | 2018-10-31 | 1 | -3/+6 |
| | | | | | | While we should handle completion for isolated file, it's better achieved by using empty Analysis, rather than working only with &File: we need memoization for type inference even inside a single file. | ||||
* | Move FnDescriptors to analyzer | Aleksey Kladov | 2018-10-31 | 1 | -1/+1 |
| | |||||
* | introduce syntax-ptr | Aleksey Kladov | 2018-10-30 | 1 | -0/+1 |
| | |||||
* | Move input to top-level | Aleksey Kladov | 2018-10-25 | 1 | -30/+3 |
| | |||||
* | Encapsulate CrateGraph a bit | Aleksey Kladov | 2018-10-25 | 1 | -3/+15 |
| | |||||
* | Improve logging | Aleksey Kladov | 2018-10-25 | 1 | -3/+16 |
| | |||||
* | Store all the data in the Salsa Database | Aleksey Kladov | 2018-10-25 | 1 | -24/+57 |
| | |||||
* | Complete crate:: paths | Aleksey Kladov | 2018-10-24 | 1 | -2/+2 |
| | |||||
* | simplify roots | Aleksey Kladov | 2018-10-24 | 1 | -4/+0 |
| | |||||
* | Introduce ModuleId | Aleksey Kladov | 2018-10-23 | 1 | -1/+0 |
| | | | | | | | Previously, module was synonym with a file, and so a module could have had several parents. This commit introduces a separate module concept, such that each module has only one parent, but a single file can correspond to different modules. | ||||
* | cleanup | Aleksey Kladov | 2018-10-20 | 1 | -1/+0 |
| | |||||
* | Remove job handle | Aleksey Kladov | 2018-10-20 | 1 | -4/+0 |
| | |||||
* | use pythonic import order | Aleksey Kladov | 2018-10-20 | 1 | -1/+2 |
| | | | | | | | | use std // blank line use extern crates // blank line use crate::{} | ||||
* | actually check for cancelation | Aleksey Kladov | 2018-10-20 | 1 | -4/+4 |
| | |||||
* | make file-symbols query cancelable | Aleksey Kladov | 2018-10-20 | 1 | -2/+2 |
| | |||||
* | mark module queries as cacelable | Aleksey Kladov | 2018-10-20 | 1 | -5/+5 |
| | |||||
* | make more things cancelable | Aleksey Kladov | 2018-10-20 | 1 | -14/+13 |
| | |||||
* | remove job tokens | Aleksey Kladov | 2018-10-20 | 1 | -23/+21 |
| | |||||
* | make parent module cancelable | Aleksey Kladov | 2018-10-20 | 1 | -1/+10 |
| | |||||
* | introduce cancelable | Aleksey Kladov | 2018-10-20 | 1 | -0/+5 |
| | |||||
* | Implement Find All References for local variables | Jeremy A. Kolb | 2018-10-18 | 1 | -0/+3 |
| | |||||
* | Cargo Format | Jeremy A. Kolb | 2018-10-16 | 1 | -32/+46 |
| | | | | Run `cargo fmt` and ignore generated files | ||||
* | Simplify | Aleksey Kladov | 2018-10-15 | 1 | -1/+0 |
| | |||||
* | remove clones | Aleksey Kladov | 2018-10-15 | 1 | -1/+1 |
| | |||||
* | make analysis sync | Aleksey Kladov | 2018-10-15 | 1 | -0/+6 |
| | |||||
* | migrate modue map to salsa | Aleksey Kladov | 2018-10-15 | 1 | -1/+1 |
| | |||||
* | start salsa migration | Aleksey Kladov | 2018-10-15 | 1 | -2/+2 |
| | |||||
* | migrate analysis and server to 2018 | Aleksey Kladov | 2018-10-15 | 1 | -3/+5 |
| | |||||
* | Language Server: textDocument/signatureHelp | Jeremy A. Kolb | 2018-10-11 | 1 | -0/+6 |
| | | | | | | | | | | Implements a pretty barebones function signature help mechanism in the language server. Users can use `Analysis::resolve_callback()` to get basic information about a call site. Fixes #102 | ||||
* | Replace HashMap, HashSet with FxHashMap and FxHashSet | Muhammad Mominul Huque | 2018-10-11 | 1 | -2/+3 |
| | |||||
* | Add on-enter handler | Aleksey Kladov | 2018-10-09 | 1 | -0/+6 |
| | | | | Now, typing doc comments is much more pleasant | ||||
* | Split folding ranges into editor and lsp parts | Jeremy A. Kolb | 2018-09-24 | 1 | -0/+5 |
| | |||||
* | rename all things | Aleksey Kladov | 2018-09-16 | 1 | -0/+240 |