Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Introduce ArenaMap | Florian Diebold | 2019-01-06 | 1 | -12/+12 |
| | |||||
* | Use HIR Expr for type inference | Florian Diebold | 2019-01-06 | 1 | -316/+228 |
| | | | | | Now we can reuse the type inference inside a function when typing whitespace etc. :) | ||||
* | Merge #440 | bors[bot] | 2019-01-06 | 1 | -2/+33 |
|\ | | | | | | | | | | | | | | | | | | | 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 | 1 | -7/+29 |
| | | | | | | | | | | 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 | 1 | -2/+11 |
| | | |||||
* | | Make FnScopes use hir::Expr | Florian Diebold | 2019-01-05 | 1 | -13/+6 |
|/ | | | | | | This was a bit complicated. I've added a wrapper type for now that does the LocalSyntaxPtr <-> ExprId translation; we might want to get rid of that or give it a nicer interface. | ||||
* | Rename ImplBlock::target -> target_type, and add target_trait already | Florian Diebold | 2019-01-04 | 1 | -2/+2 |
| | |||||
* | Refactor a bit | Florian Diebold | 2019-01-04 | 1 | -58/+62 |
| | |||||
* | Resolve the Self type | Florian Diebold | 2019-01-04 | 1 | -21/+65 |
| | |||||
* | Resolve the self parameter during type inference | Florian Diebold | 2019-01-04 | 1 | -2/+12 |
| | |||||
* | Type the self parameter | Florian Diebold | 2019-01-04 | 1 | -7/+31 |
| | |||||
* | Add more docs in ty.rs | Florian Diebold | 2018-12-29 | 1 | -19/+58 |
| | | | | | Also get rid of the indirection through query_definitions for the type-related queries. | ||||
* | Missing return type means unit, not unknown | Florian Diebold | 2018-12-29 | 1 | -1/+5 |
| | |||||
* | Implement type variables | Florian Diebold | 2018-12-29 | 1 | -111/+336 |
| | | | | | | | | | This will really become necessary when we implement generics, but even now, it allows us to reason 'backwards' to infer types of expressions that we didn't understand for some reason. We use ena, the union-find implementation extracted from rustc, to keep track of type variables. | ||||
* | nameify structs&enums | Aleksey Kladov | 2018-12-28 | 1 | -17/+7 |
| | |||||
* | introduce known names | Aleksey Kladov | 2018-12-27 | 1 | -5/+4 |
| | |||||
* | introduce hir::Name | Aleksey Kladov | 2018-12-27 | 1 | -5/+5 |
| | |||||
* | Resolve field types lazily | Florian Diebold | 2018-12-25 | 1 | -8/+28 |
| | | | | I.e. not already when getting the HIR for the struct. | ||||
* | Add a hir::TypeRef as an intermediate between ast::TypeRef and ty::Ty | Florian Diebold | 2018-12-25 | 1 | -77/+62 |
| | |||||
* | Implement reference / pointer types | Florian Diebold | 2018-12-25 | 1 | -15/+69 |
| | | | | | - parse them - infer types of & and * expressions | ||||
* | Handle structs/enums with missing names a bit better | Florian Diebold | 2018-12-25 | 1 | -6/+14 |
| | |||||
* | Cleanup | Florian Diebold | 2018-12-25 | 1 | -125/+37 |
| | |||||
* | Implement basic completion for fields | Florian Diebold | 2018-12-25 | 1 | -2/+3 |
| | |||||
* | Type field accesses | Florian Diebold | 2018-12-25 | 1 | -1/+31 |
| | |||||
* | Collect field data for structs/enum variants | Florian Diebold | 2018-12-25 | 1 | -1/+10 |
| | |||||
* | Infer result of struct literals, and recurse into their child expressions | Florian Diebold | 2018-12-25 | 1 | -36/+83 |
| | |||||
* | Do name resolution by namespace (types/values) | Florian Diebold | 2018-12-25 | 1 | -7/+15 |
| | |||||
* | Add basic HIR and types for structs/enums | Florian Diebold | 2018-12-25 | 1 | -26/+46 |
| | |||||
* | Rename a variable for consistency | Florian Diebold | 2018-12-24 | 1 | -9/+9 |
| | |||||
* | Clean up Ty a bit | Florian Diebold | 2018-12-24 | 1 | -38/+22 |
| | | | | Removing irrelevant comments copied from rustc etc. | ||||
* | Prepare Ty::new for resolution | Florian Diebold | 2018-12-23 | 1 | -14/+24 |
| | |||||
* | Type the return values of call expressions | Florian Diebold | 2018-12-23 | 1 | -3/+11 |
| | |||||
* | Resolve paths to defs (functions currently) during type inference | Florian Diebold | 2018-12-23 | 1 | -68/+127 |
| | |||||
* | Make let statements kind of work | Florian Diebold | 2018-12-23 | 1 | -8/+36 |
| | |||||
* | Remove unwraps | Florian Diebold | 2018-12-23 | 1 | -6/+19 |
| | |||||
* | Get rid of the terrible nesting in PathExpr inference | Florian Diebold | 2018-12-23 | 1 | -26/+14 |
| | |||||
* | Cleanup | Florian Diebold | 2018-12-23 | 1 | -64/+49 |
| | |||||
* | Add testing infrastructure for type inference | Florian Diebold | 2018-12-23 | 1 | -0/+30 |
| | | | | - move dir_tests to test_utils for that. | ||||
* | Parse integer / float types | Florian Diebold | 2018-12-23 | 1 | -2/+20 |
| | |||||
* | Add beginnings of type infrastructure | Florian Diebold | 2018-12-23 | 1 | -0/+478 |