Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Implement type inference for literals (WIP) | Marcus Klaas de Vries | 2019-01-14 | 1 | -1/+32 | |
* | goto defenition works for type-inferred methods | Aleksey Kladov | 2019-01-13 | 1 | -3/+22 | |
* | Implement tuple inference | Hirokazu Hata | 2019-01-13 | 1 | -0/+8 | |
* | args -> params | Florian Diebold | 2019-01-12 | 1 | -6/+6 | |
* | Implement basic inherent method resolution | Florian Diebold | 2019-01-12 | 1 | -7/+32 | |
* | Fix assertion error in unification (hopefully) | Florian Diebold | 2019-01-11 | 1 | -7/+33 | |
* | actually produce missing def kinds | Aleksey Kladov | 2019-01-11 | 1 | -2/+6 | |
* | Implement type inference for enum variants | Marcus Klaas de Vries | 2019-01-10 | 1 | -6/+14 | |
* | nicer trailing comma handling in types | Aleksey Kladov | 2019-01-09 | 1 | -9/+13 | |
* | Fix typos in ARCHITECTURE.md and a number of crates | Marcus Klaas de Vries | 2019-01-09 | 1 | -2/+2 | |
* | ra_db is independent from editor | Aleksey Kladov | 2019-01-08 | 1 | -0/+1 | |
* | Process explicit type hints for str, bool and char | Marcus Klaas de Vries | 2019-01-07 | 1 | -1/+7 | |
* | Tidy up binary operator type inference; add test file | Marcus Klaas de Vries | 2019-01-07 | 1 | -44/+41 | |
* | Implement type inference for more binary operators | Marcus Klaas de Vries | 2019-01-07 | 1 | -11/+74 | |
* | 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 | 1 | -22/+50 | |
* | Introduce ArenaMap | Florian Diebold | 2019-01-06 | 1 | -12/+12 | |
* | Use HIR Expr for type inference | Florian Diebold | 2019-01-06 | 1 | -316/+228 | |
* | Merge #440 | bors[bot] | 2019-01-06 | 1 | -2/+33 | |
|\ | ||||||
| * | Touch up type inference for boolean operators | Marcus Klaas de Vries | 2019-01-06 | 1 | -7/+29 | |
| * | 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 | |
|/ | ||||||
* | 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 | |
* | 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 | |
* | 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 | |
* | 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 | |
* | 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 | |
* | 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 |