Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use correct file when resolving callables | Aleksey Kladov | 2018-10-25 | 1 | -2/+3 |
| | |||||
* | disable cancelation | Aleksey Kladov | 2018-10-25 | 1 | -6/+8 |
| | |||||
* | Improve logging | Aleksey Kladov | 2018-10-25 | 3 | -11/+19 |
| | |||||
* | Store all the data in the Salsa Database | Aleksey Kladov | 2018-10-25 | 8 | -165/+268 |
| | |||||
* | Complete crate:: paths | Aleksey Kladov | 2018-10-24 | 4 | -6/+84 |
| | |||||
* | simplify roots | Aleksey Kladov | 2018-10-24 | 3 | -35/+18 |
| | |||||
* | Simplify | Aleksey Kladov | 2018-10-24 | 1 | -3/+3 |
| | |||||
* | make indexing parallel again | Aleksey Kladov | 2018-10-24 | 2 | -4/+5 |
| | |||||
* | Introduce ModuleId | Aleksey Kladov | 2018-10-23 | 9 | -437/+487 |
| | | | | | | | 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. | ||||
* | Merge #138 | bors[bot] | 2018-10-22 | 3 | -6/+11 |
|\ | | | | | | | | | | | | | | | | | | | | | | | 138: Fix some clippy lints r=matklad a=alanhdu I went ahead and fixed all the clippy lints (there were a couple I thought would be better unfixed and added `cfg` statements to allow them) and also re-enabled clippy and rustfmt in CI. They were disabled with `no time to explain, disable clippy checks`, so hopefully this won't go against whatever the reason at the time was :laughing:. One question about the CI though: right now, it's an allowed failure that runs against the latest nightly each time. Would it be better to pin it to a specific nightly (or use the `beta` versions) to lower the churn? Co-authored-by: Alan Du <[email protected]> | ||||
| * | Revert "clippy: Fix new_ret_no_self" | Alan Du | 2018-10-20 | 3 | -3/+3 |
| | | | | | | | | This reverts commit 2ae9dfa812ccf18867373f77a106161378a6d91d. | ||||
| * | Fix function calls | Alan Du | 2018-10-18 | 2 | -3/+2 |
| | | |||||
| * | clippy: needless_lifetimes | Alan Du | 2018-10-18 | 1 | -1/+1 |
| | | |||||
| * | clippy: Fix new_ret_no_self | Alan Du | 2018-10-18 | 3 | -3/+3 |
| | | |||||
| * | Silence clippy::derive_hash_xor_eq | Alan Du | 2018-10-18 | 1 | -1/+7 |
| | | | | | | | | Manually implement PartialEq | ||||
| * | Clippy lint: single-character string constant | Alan Du | 2018-10-18 | 1 | -1/+1 |
| | | |||||
* | | cleanup | Aleksey Kladov | 2018-10-20 | 1 | -1/+0 |
| | | |||||
* | | Remove job handle | Aleksey Kladov | 2018-10-20 | 2 | -57/+0 |
| | | |||||
* | | use pythonic import order | Aleksey Kladov | 2018-10-20 | 3 | -8/+11 |
| | | | | | | | | | | | | | | | | use std // blank line use extern crates // blank line use crate::{} | ||||
* | | actually check for cancelation | Aleksey Kladov | 2018-10-20 | 3 | -7/+20 |
| | | |||||
* | | make file-symbols query cancelable | Aleksey Kladov | 2018-10-20 | 4 | -40/+48 |
| | | |||||
* | | mark module queries as cacelable | Aleksey Kladov | 2018-10-20 | 4 | -29/+31 |
| | | |||||
* | | make more things cancelable | Aleksey Kladov | 2018-10-20 | 2 | -15/+14 |
| | | |||||
* | | remove job tokens | Aleksey Kladov | 2018-10-20 | 3 | -35/+30 |
| | | |||||
* | | make parent module cancelable | Aleksey Kladov | 2018-10-20 | 2 | -5/+15 |
| | | |||||
* | | introduce cancelable | Aleksey Kladov | 2018-10-20 | 1 | -0/+5 |
| | | |||||
* | | update salsa | Aleksey Kladov | 2018-10-20 | 3 | -10/+10 |
| | | |||||
* | | Implement Find All References for local variables | Jeremy A. Kolb | 2018-10-18 | 2 | -0/+35 |
|/ | |||||
* | Cargo Format | Jeremy A. Kolb | 2018-10-16 | 8 | -235/+298 |
| | | | | Run `cargo fmt` and ignore generated files | ||||
* | Simplify | Aleksey Kladov | 2018-10-15 | 2 | -13/+0 |
| | |||||
* | remove clones | Aleksey Kladov | 2018-10-15 | 1 | -1/+1 |
| | |||||
* | make analysis sync | Aleksey Kladov | 2018-10-15 | 4 | -19/+37 |
| | |||||
* | Tweak writable root API | Aleksey Kladov | 2018-10-15 | 2 | -11/+8 |
| | |||||
* | remove resolver from world | Aleksey Kladov | 2018-10-15 | 1 | -2/+0 |
| | |||||
* | Drop dead code | Aleksey Kladov | 2018-10-15 | 4 | -401/+0 |
| | |||||
* | fix tests | Aleksey Kladov | 2018-10-15 | 3 | -11/+20 |
| | |||||
* | Switch to the master of salsa | Aleksey Kladov | 2018-10-15 | 2 | -6/+6 |
| | |||||
* | migrate modue map to salsa | Aleksey Kladov | 2018-10-15 | 5 | -165/+172 |
| | |||||
* | start salsa migration | Aleksey Kladov | 2018-10-15 | 4 | -89/+218 |
| | |||||
* | migrate analysis and server to 2018 | Aleksey Kladov | 2018-10-15 | 9 | -23/+25 |
| | |||||
* | A FnDescriptor shouldn't exist without a name | Jeremy A. Kolb | 2018-10-12 | 2 | -44/+42 |
| | |||||
* | Language Server: textDocument/signatureHelp | Jeremy A. Kolb | 2018-10-11 | 3 | -5/+171 |
| | | | | | | | | | | 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 | 4 | -12/+15 |
| | |||||
* | Add on-enter handler | Aleksey Kladov | 2018-10-09 | 1 | -0/+6 |
| | | | | Now, typing doc comments is much more pleasant | ||||
* | Resolve local names first | Jeremy A. Kolb | 2018-10-06 | 1 | -4/+4 |
| | |||||
* | WIP: This doesn't currently work but I also don't think it's the right ↵ | Jeremy A. Kolb | 2018-10-05 | 1 | -2/+16 |
| | | | | abstraction | ||||
* | 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 | 10 | -0/+1556 |