aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Fix typoJeremy A. Kolb2018-10-221-2/+2
| |/
* | Merge #138bors[bot]2018-10-2226-68/+67
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | 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]>
| * Rename new to new_item (to match new_impl)Alan Du2018-10-221-9/+9
| |
| * Revert "clippy: Fix new_ret_no_self"Alan Du2018-10-207-17/+17
| | | | | | | | This reverts commit 2ae9dfa812ccf18867373f77a106161378a6d91d.
| * clippy: cast_losslessAlan Du2018-10-181-2/+2
| |
| * Fix function callsAlan Du2018-10-1810-12/+9
| |
| * clippy: type_complexityAlan Du2018-10-182-8/+11
| |
| * clippy: needless_lifetimesAlan Du2018-10-181-1/+1
| |
| * clippy: Fix new_ret_no_selfAlan Du2018-10-187-17/+17
| |
| * Silence clippy::derive_hash_xor_eqAlan Du2018-10-181-1/+7
| | | | | | | | Manually implement PartialEq
| * Remove Copy trait on LeafAtOffsetAlan Du2018-10-181-1/+1
| | | | | | | | | | | | | | Because it's a stateful iterator, it's easier to explicitly clone it when necesary. Fixes clippy:clone_on_copy
| * clippy: Use if lets and remove redundant returnsAlan Du2018-10-1811-29/+22
| |
| * Clippy lint: single-character string constantAlan Du2018-10-184-5/+5
| |
* | cleanupAleksey Kladov2018-10-202-2/+0
| |
* | Remove job handleAleksey Kladov2018-10-205-99/+18
| |
* | Fix testsAleksey Kladov2018-10-201-17/+14
| |
* | use pythonic import orderAleksey Kladov2018-10-207-17/+20
| | | | | | | | | | | | | | | | use std // blank line use extern crates // blank line use crate::{}
* | actually check for cancelationAleksey Kladov2018-10-203-7/+20
| |
* | make file-symbols query cancelableAleksey Kladov2018-10-204-40/+48
| |
* | mark module queries as cacelableAleksey Kladov2018-10-204-29/+31
| |
* | make more things cancelableAleksey Kladov2018-10-203-21/+20
| |
* | remove job tokensAleksey Kladov2018-10-204-66/+61
| |
* | make parent module cancelableAleksey Kladov2018-10-203-6/+16
| |
* | introduce cancelableAleksey Kladov2018-10-201-0/+5
| |
* | update salsaAleksey Kladov2018-10-204-11/+11
| |
* | Merge #143bors[bot]2018-10-208-5/+164
|\ \ | |/ |/| | | | | | | | | | | | | | | 143: Implement Find All References and Rename for local variables r=matklad a=kjeremy Expose `find_all_refs` in `Analysis`. This currently only works for local variables. Use this in the LSP to implement find all references and rename. Co-authored-by: Jeremy A. Kolb <[email protected]>
| * LSP: Add support for prepareRenameJeremy A. Kolb2018-10-192-1/+24
| |
| * Handle renaming of local variablesJeremy A. Kolb2018-10-183-2/+45
| |
| * Implement Find All References for local variablesJeremy A. Kolb2018-10-188-3/+96
| |
* | Update rowanAleksey Kladov2018-10-177-42/+19
|/
* rename gen-kinds to gen-syntaxAleksey Kladov2018-10-167-8/+8
|
* fix testsAleksey Kladov2018-10-163-46/+23
|
* Switch to published teraronAleksey Kladov2018-10-163-123/+1
|
* extract teraronAleksey Kladov2018-10-165-72/+149
|
* Cargo FormatJeremy A. Kolb2018-10-1676-1524/+1930
| | | | Run `cargo fmt` and ignore generated files
* Merge #128bors[bot]2018-10-163-66/+93
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 128: Add a test to verify if the generated codes are up-to-date. r=matklad a=mominul This test checks if the generated codes are up-to-date every time during `cargo test`. I have confirmed that the test works by manually editing the `grammar.ron` file. Closes #126 Thanks! Co-authored-by: Muhammad Mominul Huque <[email protected]>
| * take `&Path` instead of `PathBuf`Muhammad Mominul Huque2018-10-163-5/+5
| |
| * Refactor the constantsMuhammad Mominul Huque2018-10-153-20/+19
| |
| * Use CARGO_MANIFEST_DIR for locating the grammar.ron fileMuhammad Mominul Huque2018-10-153-8/+7
| |
| * Show how to generate code with error messageMuhammad Mominul Huque2018-10-143-6/+8
| |
| * create cli.rs and make the tests passingMuhammad Mominul Huque2018-10-143-59/+86
| |
* | switch to salsa releaseAleksey Kladov2018-10-151-1/+1
| |
* | SimplifyAleksey Kladov2018-10-152-13/+0
| |
* | remove clonesAleksey Kladov2018-10-154-6/+5
| |
* | make analysis syncAleksey Kladov2018-10-154-19/+37
| |
* | Tweak writable root APIAleksey Kladov2018-10-152-11/+8
| |
* | remove resolver from worldAleksey Kladov2018-10-151-2/+0
| |
* | Drop dead codeAleksey Kladov2018-10-154-401/+0
| |
* | fix testsAleksey Kladov2018-10-154-12/+21
| |
* | Switch to the master of salsaAleksey Kladov2018-10-153-7/+8
| |