Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Restore library symbols | Aleksey Kladov | 2018-12-20 | 1 | -1/+4 |
| | |||||
* | enable incremental release | Aleksey Kladov | 2018-12-20 | 1 | -0/+1 |
| | |||||
* | fixme comment | Aleksey Kladov | 2018-12-20 | 1 | -0/+1 |
| | |||||
* | resolve paths across crates | Aleksey Kladov | 2018-12-20 | 1 | -4/+17 |
| | |||||
* | workaround across-crate resolve bugs | Aleksey Kladov | 2018-12-20 | 1 | -12/+21 |
| | |||||
* | fix tests | Aleksey Kladov | 2018-12-20 | 5 | -13/+26 |
| | |||||
* | index all local crates | Aleksey Kladov | 2018-12-20 | 6 | -33/+37 |
| | |||||
* | fix the test | Aleksey Kladov | 2018-12-20 | 1 | -1/+1 |
| | |||||
* | File can be opened before the root is scanned | Aleksey Kladov | 2018-12-20 | 1 | -0/+12 |
| | |||||
* | fix syc | Aleksey Kladov | 2018-12-20 | 5 | -13/+55 |
| | |||||
* | swtich lsp server to vfs | Aleksey Kladov | 2018-12-20 | 14 | -398/+234 |
| | |||||
* | remove more imports | Aleksey Kladov | 2018-12-20 | 2 | -23/+2 |
| | |||||
* | dead import | Aleksey Kladov | 2018-12-20 | 1 | -2/+1 |
| | |||||
* | fix hir mock | Aleksey Kladov | 2018-12-20 | 2 | -19/+23 |
| | |||||
* | kill file resolver | Aleksey Kladov | 2018-12-20 | 3 | -94/+1 |
| | |||||
* | switch analysis to vfs | Aleksey Kladov | 2018-12-20 | 8 | -100/+142 |
| | |||||
* | doc comment | Aleksey Kladov | 2018-12-20 | 1 | -0/+1 |
| | |||||
* | add root & path info to remove event | Aleksey Kladov | 2018-12-20 | 1 | -2/+4 |
| | |||||
* | make it compile | Aleksey Kladov | 2018-12-20 | 4 | -9/+6 |
| | |||||
* | remove relpath from input | Aleksey Kladov | 2018-12-20 | 2 | -11/+2 |
| | |||||
* | use relpaths for module resolve | Aleksey Kladov | 2018-12-20 | 4 | -18/+35 |
| | |||||
* | implement vfs events handling | Aleksey Kladov | 2018-12-20 | 7 | -43/+349 |
| | |||||
* | add io::Task | Aleksey Kladov | 2018-12-20 | 2 | -26/+34 |
| | |||||
* | Add type alias | Aleksey Kladov | 2018-12-20 | 2 | -4/+8 |
| | |||||
* | vfs crate scaffold | Aleksey Kladov | 2018-12-20 | 6 | -68/+89 |
| | |||||
* | wip | Aleksey Kladov | 2018-12-20 | 6 | -167/+452 |
| | |||||
* | Merge #294 | bors[bot] | 2018-12-19 | 4 | -8/+8 |
|\ | | | | | | | | | | | | | | | 294: Bump languageserver-types to 0.53.0 to support LSP 3.14.0 r=matklad a=kjeremy See: https://microsoft.github.io/language-server-protocol/specification#version_3_14_0 Co-authored-by: Jeremy A. Kolb <[email protected]> | ||||
| * | Bump languageserver-types to 0.53.0 to support LSP 3.14.0 | Jeremy A. Kolb | 2018-12-19 | 4 | -8/+8 |
|/ | | | | See: https://microsoft.github.io/language-server-protocol/specification#version_3_14_0 | ||||
* | Merge #273 | bors[bot] | 2018-12-19 | 14 | -234/+496 |
|\ | | | | | | | | | | | | | | | | | | | | | | | 273: Add a test to ensure that we can parse each file r=matklad a=DJMcNab Note that this has a non-spurious failure in ra_analysis/src/mock_analysis. Probably fixes #195. If my understanding is correct, fixes #214 and fixes #225. Co-authored-by: DJMcNab <[email protected]> | ||||
| * | Add tests and only traverse in the crates directory | DJMcNab | 2018-12-19 | 7 | -94/+185 |
| | | |||||
| * | Move is_block to lower in the call tree | DJMcNab | 2018-12-19 | 4 | -115/+104 |
| | | |||||
| * | Revert "Revert to f6f7c5" | DJMcNab | 2018-12-19 | 3 | -22/+36 |
| | | | | | | | | | | | | This approach is correct, but it needs an addition to Restrictions too This reverts commit ad00d0c8a5f64142e6636e8b048204c8f8982f4a. | ||||
| * | Fix handling of structs in match arms | DJMcNab | 2018-12-19 | 1 | -1/+1 |
| | | |||||
| * | Revert to f6f7c5 | DJMcNab | 2018-12-19 | 3 | -36/+22 |
| | | |||||
| * | Fix expression parsing by bailing out upon a macro block being found | DJMcNab | 2018-12-19 | 2 | -17/+12 |
| | | | | | | | | | | | | TODO: Fix this when the block like macro is in expression position E.g. `test(test!{})` currently parses | ||||
| * | Possibly fix #225 | DJMcNab | 2018-12-19 | 2 | -21/+40 |
| | | |||||
| * | Actually fix at_ts doc comment (committed wrong file :P) | DJMcNab | 2018-12-19 | 1 | -1/+1 |
| | | |||||
| * | Fix at_ts doc comment | DJMcNab | 2018-12-19 | 1 | -1/+1 |
| | | |||||
| * | Fix parsing of inclusive ranges (#214) | DJMcNab | 2018-12-19 | 6 | -37/+158 |
| | | | | | | | | I'm not certain that this is correct, so extra eyes would be good | ||||
| * | Reload package-lock.json | DJMcNab | 2018-12-19 | 1 | -72/+78 |
| | | |||||
| * | Add a test to ensure that we can parse each file | DJMcNab | 2018-12-19 | 1 | -2/+43 |
| | | | | | | | | Note that this has a non-spurious failure in ra_analysis/src/mock_analysis | ||||
* | | Merge #291 | bors[bot] | 2018-12-18 | 6 | -17/+21 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 291: File module source does not depend on syntax r=matklad a=matklad Fixes this problem: https://github.com/rust-analyzer/rust-analyzer/pull/289#issuecomment-448398571 Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | | File module source does not depend on syntax | Aleksey Kladov | 2018-12-18 | 6 | -17/+21 |
|/ / | |||||
* | | Merge #289 | bors[bot] | 2018-12-18 | 2 | -8/+21 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 289: WIP: fix accidently quadratic behavior r=matklad a=matklad we've recmoputed item map every time previously :man_facepalming: :man_facepalming: :man_facepalming: Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | | disable gc for now | Aleksey Kladov | 2018-12-18 | 1 | -1/+5 |
| | | | |||||
| * | | Gc syntax trees after every modification | Aleksey Kladov | 2018-12-18 | 2 | -8/+17 |
|/ / | |||||
* | | Work around a bug | Aleksey Kladov | 2018-12-18 | 1 | -4/+7 |
| | | | | | | | | cc #288 | ||||
* | | Merge #286 | bors[bot] | 2018-12-18 | 9 | -46/+62 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 286: move thread worker to a separate crate r=matklad a=matklad Going to tackle https://github.com/rust-analyzer/rust-analyzer/issues/243, this is a refactoring towards that goal Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | | move thread worker to a separate crate | Aleksey Kladov | 2018-12-18 | 9 | -46/+62 |
|/ / | |||||
* | | Merge #284 | bors[bot] | 2018-12-18 | 1 | -5/+5 |
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | 284: By default, log only to stderr, and not to disk. r=matklad a=eminence This fixes a common problem when running under VS Code, the user doesn't have permissions to create a `log` directory in the CWD. The old behavior can be re-enabled by setting `RA_INTERNAL_MODE=1` Fixes #282 Co-authored-by: Andrew Chin <[email protected]> |