Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | nicer trailing comma handling in types | Aleksey Kladov | 2019-01-09 | 3 | -11/+15 |
| | |||||
* | Merge #473 | bors[bot] | 2019-01-09 | 15 | -48/+67 |
|\ | | | | | | | | | | | | | | | 473: Partial typo fix r=matklad a=marcusklaas This fixes some typos. Mostly in documentation, but also some code is affected (`defenition` was used in a few method names). Co-authored-by: Marcus Klaas de Vries <[email protected]> | ||||
| * | Fix typos in ARCHITECTURE.md and a number of crates | Marcus Klaas de Vries | 2019-01-09 | 14 | -44/+63 |
| | | | | | | | | specifically: gen_lsp_server, ra_arena, ra_cli, ra_db, ra_hir | ||||
| * | Fix typo defenition -> definition | Marcus Klaas de Vries | 2019-01-08 | 3 | -4/+4 |
| | | |||||
* | | more stable DefIds via bfs tree walking | Aleksey Kladov | 2019-01-08 | 2 | -7/+31 |
| | | |||||
* | | one more invalidation test | Aleksey Kladov | 2019-01-08 | 1 | -1/+32 |
| | | |||||
* | | fix test naming | Aleksey Kladov | 2019-01-08 | 1 | -22/+22 |
| | | |||||
* | | remove duplication in tests | Aleksey Kladov | 2019-01-08 | 1 | -55/+33 |
|/ | |||||
* | ra_db is independent from editor | Aleksey Kladov | 2019-01-08 | 2 | -1/+1 |
| | |||||
* | move node at offset to aglo already | Aleksey Kladov | 2019-01-08 | 2 | -3/+2 |
| | |||||
* | move function to code_model_api | Aleksey Kladov | 2019-01-08 | 9 | -144/+153 |
| | |||||
* | remove FnSignatureInfo from hir | Aleksey Kladov | 2019-01-08 | 2 | -126/+3 |
| | |||||
* | Fix name resolution across source roots | Florian Diebold | 2019-01-08 | 3 | -19/+173 |
| | | | | It was using the wrong name in that case. | ||||
* | Fix use tree desugaring | Florian Diebold | 2019-01-08 | 2 | -1/+30 |
| | |||||
* | Merge #458 | bors[bot] | 2019-01-08 | 4 | -9/+13 |
|\ | | | | | | | | | | | | | | | 458: dont reexport module id r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | dont reexport module id | Aleksey Kladov | 2019-01-08 | 4 | -9/+13 |
| | | |||||
* | | switch interner to use arena | Aleksey Kladov | 2019-01-08 | 1 | -4/+4 |
|/ | |||||
* | minimize visibility | Aleksey Kladov | 2019-01-08 | 1 | -1/+1 |
| | |||||
* | move query impls to adt | Aleksey Kladov | 2019-01-08 | 3 | -25/+31 |
| | |||||
* | move variant public api to api | Aleksey Kladov | 2019-01-08 | 2 | -34/+28 |
| | |||||
* | move variants to API | Aleksey Kladov | 2019-01-08 | 3 | -29/+34 |
| | |||||
* | minor | Aleksey Kladov | 2019-01-08 | 1 | -4/+4 |
| | |||||
* | move enum to code_model_api | Aleksey Kladov | 2019-01-08 | 3 | -29/+26 |
| | |||||
* | move stuct to code_model_api | Aleksey Kladov | 2019-01-08 | 3 | -22/+27 |
| | |||||
* | Merge #455 | bors[bot] | 2019-01-08 | 2 | -16/+62 |
|\ | | | | | | | | | | | | | | | 455: Import fixpoint loop for name resolution r=matklad a=flodiebold This implements reexports, so only the glob import part of #231 remains. Co-authored-by: Florian Diebold <[email protected]> | ||||
| * | Import fixpoint loop for name resolution | Florian Diebold | 2019-01-08 | 2 | -16/+62 |
| | | |||||
* | | convert some if-lets to match | Aleksey Kladov | 2019-01-08 | 1 | -12/+9 |
| | | |||||
* | | itroduce trait for ast tokens | Aleksey Kladov | 2019-01-08 | 2 | -3/+3 |
| | | |||||
* | | migrate ra_analysis to new rowan | Aleksey Kladov | 2019-01-08 | 1 | -2/+2 |
| | | |||||
* | | migrate ra_hir to rowan 2.0 | Aleksey Kladov | 2019-01-08 | 17 | -192/+195 |
| | | |||||
* | | Process explicit type hints for str, bool and char | Marcus Klaas de Vries | 2019-01-07 | 4 | -5/+18 |
| | | |||||
* | | Tidy up binary operator type inference; add test file | Marcus Klaas de Vries | 2019-01-07 | 2 | -44/+87 |
| | | |||||
* | | Implement type inference for more binary operators | Marcus Klaas de Vries | 2019-01-07 | 3 | -47/+82 |
| | | | | | | | | | | Mostly just for primitive numeric types such as u32 and f64. Not yet a general solution using trait resolution. | ||||
* | | Add remaining binary operations to AST | Marcus Klaas de Vries | 2019-01-07 | 1 | -0/+1 |
|/ | |||||
* | Implement autoderef for field accesses | Florian Diebold | 2019-01-07 | 5 | -24/+147 |
| | |||||
* | if let -> match | Florian Diebold | 2019-01-07 | 1 | -8/+6 |
| | |||||
* | Improve types for node_expr / node_pat | Florian Diebold | 2019-01-06 | 1 | -5/+5 |
| | |||||
* | Introduce ArenaMap | Florian Diebold | 2019-01-06 | 3 | -25/+25 |
| | |||||
* | Sort ranges in type inference tests | Florian Diebold | 2019-01-06 | 9 | -92/+93 |
| | | | | | Also rename the files to remove the numbers (they don't serve a purpose now that there are only the data files). | ||||
* | Use HIR Expr for type inference | Florian Diebold | 2019-01-06 | 8 | -336/+291 |
| | | | | | Now we can reuse the type inference inside a function when typing whitespace etc. :) | ||||
* | Merge #440 | bors[bot] | 2019-01-06 | 3 | -2/+88 |
|\ | | | | | | | | | | | | | | | | | | | 440: Implement type inference for boolean operators r=flodiebold a=marcusklaas Tried implementing the easiest part of https://github.com/rust-analyzer/rust-analyzer/issues/390. Hope this is somewhat close to what the intent of the issue was. Found it surprisingly easy to find my way around the repository - it's well organized! Very grateful for any pointers. Co-authored-by: Marcus Klaas de Vries <[email protected]> | ||||
| * | Touch up type inference for boolean operators | Marcus Klaas de Vries | 2019-01-06 | 3 | -17/+67 |
| | | | | | | | | | | Also try to infer its subexpressions and set type expectations whenever possible. | ||||
| * | Implement type inference for boolean operators | Marcus Klaas de Vries | 2019-01-05 | 3 | -2/+38 |
| | | |||||
* | | kill module source | Aleksey Kladov | 2019-01-06 | 7 | -193/+155 |
| | | |||||
* | | move submodule computationt to module_tree | Aleksey Kladov | 2019-01-06 | 4 | -53/+39 |
| | | |||||
* | | fix the test | Aleksey Kladov | 2019-01-06 | 1 | -2/+2 |
| | | |||||
* | | fix after rebase | Aleksey Kladov | 2019-01-06 | 1 | -1/+2 |
| | | |||||
* | | flatten module structure | Aleksey Kladov | 2019-01-06 | 13 | -436/+431 |
| | | |||||
* | | adjust comments | Aleksey Kladov | 2019-01-06 | 1 | -5/+7 |
| | | |||||
* | | split module source into decl/defin | Aleksey Kladov | 2019-01-06 | 4 | -28/+102 |
| | |