Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Add a hir::TypeRef as an intermediate between ast::TypeRef and ty::Ty | Florian Diebold | 2018-12-25 | 10 | -95/+219 | |
| | | | ||||||
| * | | Implement reference / pointer types | Florian Diebold | 2018-12-25 | 7 | -23/+173 | |
| | | | | | | | | | | | | | | | - parse them - infer types of & and * expressions | |||||
| * | | Handle structs/enums with missing names a bit better | Florian Diebold | 2018-12-25 | 2 | -20/+22 | |
| | | | ||||||
| * | | Determine receiver for completion in a more robust way | Florian Diebold | 2018-12-25 | 2 | -21/+31 | |
| | | | | | | | | | | | | Also rename a parameter. | |||||
| * | | Cleanup | Florian Diebold | 2018-12-25 | 1 | -125/+37 | |
| | | | ||||||
| * | | Add . to trigger characters | Florian Diebold | 2018-12-25 | 1 | -1/+1 | |
| | | | ||||||
| * | | Implement basic completion for fields | Florian Diebold | 2018-12-25 | 10 | -12/+156 | |
| | | | ||||||
| * | | Improve parsing of incomplete field accesses in preparation for field completion | Florian Diebold | 2018-12-25 | 3 | -9/+45 | |
| | | | | | | | | | | | | | | | We need to be able to get the receiver even if there is no field name yet, and currently "a." wouldn't get parsed as a field name at all. This seems to help. | |||||
| * | | Type field accesses | Florian Diebold | 2018-12-25 | 5 | -5/+54 | |
| | | | ||||||
| * | | Collect field data for structs/enum variants | Florian Diebold | 2018-12-25 | 5 | -12/+87 | |
| | | | ||||||
| * | | Add AST definitions for struct/variant fields etc. | Florian Diebold | 2018-12-25 | 3 | -12/+256 | |
| | | | | | | | | | | | | Fixes #117 | |||||
| * | | Infer result of struct literals, and recurse into their child expressions | Florian Diebold | 2018-12-25 | 6 | -49/+143 | |
| | | | ||||||
| * | | Do name resolution by namespace (types/values) | Florian Diebold | 2018-12-25 | 10 | -84/+212 | |
| | | | ||||||
| * | | Add basic HIR and types for structs/enums | Florian Diebold | 2018-12-25 | 9 | -29/+244 | |
| |/ | ||||||
* | | Merge #336 | bors[bot] | 2018-12-27 | 5 | -15/+92 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 336: add cancelation module & cancelation backtraces r=matklad a=matklad This is primaraly to debug semengly spurious canceled requests Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | add cancelation module & cancelation backtraces | Aleksey Kladov | 2018-12-27 | 5 | -15/+92 | |
|/ / | ||||||
* | | fix the test | Aleksey Kladov | 2018-12-27 | 1 | -2/+2 | |
| | | ||||||
* | | expose make_pub_crate action | Aleksey Kladov | 2018-12-27 | 1 | -0/+1 | |
| | | ||||||
* | | Merge #334 | bors[bot] | 2018-12-27 | 3 | -13/+43 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 334: use a::b::{self} should be fixed as use a::b instead of use a::b::self r=matklad a=gfreezy Co-authored-by: gfreezy <[email protected]> | |||||
| * | | fix use std::{self} | gfreezy | 2018-12-26 | 3 | -13/+43 | |
| | | | ||||||
* | | | Merge #333 | bors[bot] | 2018-12-26 | 5 | -61/+68 | |
|\| | | |/ |/| | | | | | | | | | | | | | | | | | | | | | 333: Fix unnecessary braces r=matklad a=gfreezy ![image](https://user-images.githubusercontent.com/510012/50425015-c8086780-08a9-11e9-995f-d107d6880fa3.png) don't know why the underscore line is not covering the whole braces. fix #324 Co-authored-by: gfreezy <[email protected]> | |||||
| * | fix tests | gfreezy | 2018-12-25 | 1 | -1/+1 | |
| | | ||||||
| * | add fix for removing unnecessary braces in use statements | gfreezy | 2018-12-25 | 5 | -61/+68 | |
|/ | ||||||
* | Merge #331 | bors[bot] | 2018-12-25 | 1 | -1/+1 | |
|\ | | | | | | | | | | | | | | | 331: Cancelled is not Copy r=matklad a=matklad I'd love to have a backtrace in `Cancelled` to be able to debug "completion is always cancelled" problem. So it probably is a good idea to make `Cancelled` non Copy type, even if it is a ZST in prod. Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | cancelled is not Copy | Aleksey Kladov | 2018-12-25 | 1 | -1/+1 | |
|/ | ||||||
* | Merge #328 | bors[bot] | 2018-12-24 | 1 | -3/+1 | |
|\ | | | | | | | | | | | | | | | 328: fix warning conversion r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | fix warning conversion | Aleksey Kladov | 2018-12-24 | 1 | -3/+1 | |
|/ | ||||||
* | Merge #326 | bors[bot] | 2018-12-24 | 7 | -12/+79 | |
|\ | | | | | | | | | | | | | | | 326: resolved #324: remove unnecessary braces in use statement. r=matklad a=gfreezy Add inspection for unnecessary braces in use statement Co-authored-by: gfreezy <[email protected]> | |||||
| * | fix tests | gfreezy | 2018-12-24 | 1 | -1/+1 | |
| | | ||||||
| * | remove option from Diagnostic | gfreezy | 2018-12-24 | 4 | -7/+7 | |
| | | ||||||
| * | keep severity to Error & WeakWarning | gfreezy | 2018-12-24 | 2 | -10/+8 | |
| | | ||||||
| * | remove unnecessary braces in use statments | gfreezy | 2018-12-23 | 2 | -4/+2 | |
| | | ||||||
| * | add serverity to vscode diagnostics | gfreezy | 2018-12-23 | 5 | -12/+32 | |
| | | ||||||
| * | resolved #324: remove unnecessary braces in use statement. | gfreezy | 2018-12-23 | 1 | -2/+53 | |
| | | ||||||
* | | Merge #327 | bors[bot] | 2018-12-24 | 22 | -148/+1189 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 327: Beginnings of type inference r=flodiebold a=flodiebold I was a bit bored, so I thought I'd try to start implementing the type system and see how far I come :wink: This is obviously still extremely WIP, only very basic stuff working, but I thought I'd post this now to get some feedback as to whether this approach makes sense at all. There's no user-visible effect yet, but the type inference has tests similar to the ones for the parser. My next step will probably be to implement struct types, after which this could probably be used to complete fields. I realize this may all get thrown away when/if the compiler query system gets usable, but I feel like there are lots of IDE features that could be implemented with somewhat working type inference in the meantime :smile: Co-authored-by: Florian Diebold <[email protected]> | |||||
| * | | Change inference tests to have one per file | Florian Diebold | 2018-12-24 | 6 | -55/+92 | |
| | | | ||||||
| * | | Rename a variable for consistency | Florian Diebold | 2018-12-24 | 2 | -10/+10 | |
| | | | ||||||
| * | | 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 | 2 | -5/+13 | |
| | | | ||||||
| * | | Resolve paths to defs (functions currently) during type inference | Florian Diebold | 2018-12-23 | 17 | -87/+215 | |
| | | | ||||||
| * | | Make let statements kind of work | Florian Diebold | 2018-12-23 | 5 | -8/+53 | |
| | | | ||||||
| * | | 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 | 4 | -108/+110 | |
| | | | ||||||
| * | | Add testing infrastructure for type inference | Florian Diebold | 2018-12-23 | 9 | -124/+222 | |
| | | | | | | | | | | | | - move dir_tests to test_utils for that. | |||||
| * | | Parse integer / float types | Florian Diebold | 2018-12-23 | 4 | -4/+58 | |
| | | | ||||||
| * | | Add beginnings of type infrastructure | Florian Diebold | 2018-12-23 | 11 | -15/+689 | |
| |/ | ||||||
* | | Merge #278 | bors[bot] | 2018-12-24 | 2 | -2/+74 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 278: Add make_pub_crate code action to ra_editor r=matklad a=h-michael implement #170 Co-authored-by: Hirokazu Hata <[email protected]> | |||||
| * | | Add make_pub_crate code action to ra_editor | Hirokazu Hata | 2018-12-24 | 2 | -2/+74 | |
| |/ |