Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | move resolve local name | Aleksey Kladov | 2018-10-31 | 1 | -7/+23 | |
| | | ||||||
* | | Move FnDescriptors to analyzer | Aleksey Kladov | 2018-10-31 | 1 | -2/+3 | |
|/ | ||||||
* | :arrow_up: salsa | Aleksey Kladov | 2018-10-30 | 1 | -2/+7 | |
| | ||||||
* | Fix param number | Jeremy A. Kolb | 2018-10-30 | 1 | -1/+1 | |
| | ||||||
* | gc syntax trees | Aleksey Kladov | 2018-10-29 | 1 | -2/+3 | |
| | ||||||
* | Index files in parallel | Aleksey Kladov | 2018-10-29 | 1 | -9/+13 | |
| | ||||||
* | restore symbols filtering | Aleksey Kladov | 2018-10-25 | 1 | -5/+8 | |
| | ||||||
* | Move input to top-level | Aleksey Kladov | 2018-10-25 | 1 | -13/+14 | |
| | ||||||
* | use correct file when resolving callables | Aleksey Kladov | 2018-10-25 | 1 | -2/+3 | |
| | ||||||
* | Improve logging | Aleksey Kladov | 2018-10-25 | 1 | -0/+2 | |
| | ||||||
* | Store all the data in the Salsa Database | Aleksey Kladov | 2018-10-25 | 1 | -81/+98 | |
| | ||||||
* | Complete crate:: paths | Aleksey Kladov | 2018-10-24 | 1 | -1/+21 | |
| | ||||||
* | simplify roots | Aleksey Kladov | 2018-10-24 | 1 | -12/+13 | |
| | ||||||
* | Simplify | Aleksey Kladov | 2018-10-24 | 1 | -3/+3 | |
| | ||||||
* | Introduce ModuleId | Aleksey Kladov | 2018-10-23 | 1 | -72/+73 | |
| | | | | | | | 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 | 1 | -2/+2 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | 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 | 1 | -1/+1 | |
| | | | | | | | | This reverts commit 2ae9dfa812ccf18867373f77a106161378a6d91d. | |||||
| * | Fix function calls | Alan Du | 2018-10-18 | 1 | -1/+1 | |
| | | ||||||
| * | clippy: Fix new_ret_no_self | Alan Du | 2018-10-18 | 1 | -1/+1 | |
| | | ||||||
| * | Clippy lint: single-character string constant | Alan Du | 2018-10-18 | 1 | -1/+1 | |
| | | ||||||
* | | make file-symbols query cancelable | Aleksey Kladov | 2018-10-20 | 1 | -16/+23 | |
| | | ||||||
* | | mark module queries as cacelable | Aleksey Kladov | 2018-10-20 | 1 | -13/+13 | |
| | | ||||||
* | | make more things cancelable | Aleksey Kladov | 2018-10-20 | 1 | -1/+1 | |
| | | ||||||
* | | remove job tokens | Aleksey Kladov | 2018-10-20 | 1 | -9/+7 | |
| | | ||||||
* | | make parent module cancelable | Aleksey Kladov | 2018-10-20 | 1 | -4/+5 | |
| | | ||||||
* | | Implement Find All References for local variables | Jeremy A. Kolb | 2018-10-18 | 1 | -0/+32 | |
|/ | ||||||
* | Cargo Format | Jeremy A. Kolb | 2018-10-16 | 1 | -84/+123 | |
| | | | | Run `cargo fmt` and ignore generated files | |||||
* | Simplify | Aleksey Kladov | 2018-10-15 | 1 | -12/+0 | |
| | ||||||
* | make analysis sync | Aleksey Kladov | 2018-10-15 | 1 | -6/+6 | |
| | ||||||
* | Tweak writable root API | Aleksey Kladov | 2018-10-15 | 1 | -6/+6 | |
| | ||||||
* | remove resolver from world | Aleksey Kladov | 2018-10-15 | 1 | -2/+0 | |
| | ||||||
* | fix tests | Aleksey Kladov | 2018-10-15 | 1 | -0/+19 | |
| | ||||||
* | migrate analysis and server to 2018 | Aleksey Kladov | 2018-10-15 | 1 | -2/+2 | |
| | ||||||
* | A FnDescriptor shouldn't exist without a name | Jeremy A. Kolb | 2018-10-12 | 1 | -38/+36 | |
| | ||||||
* | Language Server: textDocument/signatureHelp | Jeremy A. Kolb | 2018-10-11 | 1 | -4/+110 | |
| | | | | | | | | | | 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 | -3/+4 | |
| | ||||||
* | 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 | |||||
* | rename all things | Aleksey Kladov | 2018-09-16 | 1 | -0/+342 | |