Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Use fuel branch for Chalk | Florian Diebold | 2019-05-21 | 2 | -4/+4 | |
| | | | | This makes sure we don't take too long in trait solving. | |||||
* | re-enable chalk | Aleksey Kladov | 2019-05-21 | 1 | -17/+16 | |
| | ||||||
* | publish gen_lsp_server 0.2 | Aleksey Kladov | 2019-05-21 | 1 | -16/+17 | |
| | ||||||
* | profile type inference | Aleksey Kladov | 2019-05-21 | 3 | -3/+5 | |
| | ||||||
* | profile implements query | Aleksey Kladov | 2019-05-21 | 1 | -0/+2 | |
| | ||||||
* | fix odrer-of-iteration bug in tests | Aleksey Kladov | 2019-05-21 | 2 | -7/+15 | |
| | ||||||
* | sort hash maps for tests | Aleksey Kladov | 2019-05-21 | 4 | -211/+195 | |
| | ||||||
* | Merge #1296 | bors[bot] | 2019-05-21 | 1 | -1/+1 | |
|\ | | | | | | | | | | | | | | | 1296: :arrow_up: insta r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | :arrow_up: insta | Aleksey Kladov | 2019-05-21 | 1 | -1/+1 | |
| | | ||||||
* | | add _query to query functions | Aleksey Kladov | 2019-05-21 | 2 | -6/+6 | |
|/ | ||||||
* | remove minor code duplication | Aleksey Kladov | 2019-05-20 | 2 | -20/+16 | |
| | ||||||
* | simplify | Aleksey Kladov | 2019-05-20 | 1 | -38/+39 | |
| | ||||||
* | Use normal iteration instead of walk_mut | Edwin Cheng | 2019-05-20 | 1 | -8/+5 | |
| | ||||||
* | Add infer for generic default type | Edwin Cheng | 2019-05-19 | 4 | -15/+80 | |
| | ||||||
* | Add default type to GenericParam | Edwin Cheng | 2019-05-19 | 1 | -3/+10 | |
| | ||||||
* | allow expanding expressions | Aleksey Kladov | 2019-05-14 | 2 | -7/+8 | |
| | ||||||
* | expand to syntax node | Aleksey Kladov | 2019-05-14 | 5 | -25/+32 | |
| | ||||||
* | store macro kind in HirFileId | Aleksey Kladov | 2019-05-14 | 4 | -21/+38 | |
| | ||||||
* | Merge #1271 | bors[bot] | 2019-05-13 | 6 | -11/+15 | |
|\ | | | | | | | | | | | | | | | 1271: make AstId untyped r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | make AstId untyped | Aleksey Kladov | 2019-05-13 | 6 | -11/+15 | |
| | | ||||||
* | | Increase Chalk solver max_size back to 4 | Florian Diebold | 2019-05-13 | 1 | -1/+1 | |
|/ | | | | | | Reducing it to 2 was just a failed attempt to see whether that would help fix some slow cases; in fact, it can create new slow cases by replacing concrete types by variables. | |||||
* | simplify | Aleksey Kladov | 2019-05-12 | 4 | -33/+11 | |
| | ||||||
* | simplify | Aleksey Kladov | 2019-05-12 | 2 | -8/+7 | |
| | ||||||
* | Use traits from prelude for method resolution | Florian Diebold | 2019-05-12 | 3 | -14/+42 | |
| | ||||||
* | Blacklist some traits from being considered in where clauses | Florian Diebold | 2019-05-12 | 2 | -7/+34 | |
| | | | | | | | For Send/Sync/Sized, we don't handle auto traits correctly yet and because they have a lot of impls, they can easily lead to slowdowns. In the case of Fn/FnMut/FnOnce, we don't parse the special Fn notation correctly yet and don't handle closures yet, so we are very unlikely to find an impl. | |||||
* | Fix impl blocks with unresolved target trait being treated as inherent impls | Florian Diebold | 2019-05-12 | 1 | -5/+7 | |
| | ||||||
* | Add support for inline bounds | Florian Diebold | 2019-05-11 | 2 | -16/+60 | |
| | | | | E.g. impl<T: Clone> Foo for T. | |||||
* | Handle auto traits & negative impls | Florian Diebold | 2019-05-11 | 4 | -7/+37 | |
| | | | | | We don't pass field types to Chalk yet though, so the auto trait inference won't be correct. | |||||
* | Reduce Chalk max_size parameter, add test for slow case | Florian Diebold | 2019-05-11 | 3 | -3/+42 | |
| | ||||||
* | Handle Chalk conversion for FnDef | Florian Diebold | 2019-05-11 | 3 | -2/+39 | |
| | ||||||
* | Handle resolution errors in where clauses | Florian Diebold | 2019-05-11 | 2 | -15/+56 | |
| | | | | | This is slightly hacky, but maybe more elegant than alternative solutions: We just use a hardcoded Chalk trait ID which we special-case to have no impls. | |||||
* | Handle where clauses in trait solving | Florian Diebold | 2019-05-11 | 6 | -29/+188 | |
| | ||||||
* | Deduplicate impls in impls_for_trait | Florian Diebold | 2019-05-07 | 1 | -2/+3 | |
| | | | | This was duplicating impls in dependencies a lot... | |||||
* | Add a HirDisplay implementation for TraitRef | Florian Diebold | 2019-05-07 | 1 | -0/+17 | |
| | ||||||
* | Turn `implements` into a query again | Florian Diebold | 2019-05-07 | 5 | -8/+13 | |
| | ||||||
* | fill struct fields diagnostic | Sergey Parilin | 2019-05-06 | 5 | -11/+133 | |
| | ||||||
* | Merge #1208 | bors[bot] | 2019-05-04 | 2 | -5/+42 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1208: [WIP] Goto for Macro's r=matklad a=Lapz Adds goto definition for macros. Currently only works for macros in the current crate ~~otherwise it panics~~. Proper macro resolution needs to be added for it to resolve macros in other crates. Todo - [X] Allow goto from macro calls - [X] Fix panics - [x] Add tests ![Screen Recording 2019-04-25 at 18 00 24](https://user-images.githubusercontent.com/19998186/56754499-1dd01c00-6785-11e9-9e9a-1e36de70cfa3.gif) Co-authored-by: Lenard Pratt <[email protected]> | |||||
| * | Added local macro goto | Lenard Pratt | 2019-05-04 | 2 | -5/+42 | |
| | | ||||||
* | | Differentiate Tuple / FnPtr type constructors by cardinality | Florian Diebold | 2019-05-04 | 4 | -14/+24 | |
| | | | | | | | | | | This is necessary because Chalk (reasonably) expects each 'struct' to know how many type parameters it takes. | |||||
* | | Simplify subst / subst_bound_vars a bit | Florian Diebold | 2019-05-04 | 1 | -12/+2 | |
| | | ||||||
* | | Handle recursive types in canonicalization | Florian Diebold | 2019-05-04 | 3 | -5/+15 | |
| | | ||||||
* | | Remove ToChalk implementation for ApplicationTy | Florian Diebold | 2019-05-04 | 1 | -29/+16 | |
| | | ||||||
* | | Make canonicalization API a bit nicer | Florian Diebold | 2019-05-04 | 2 | -31/+56 | |
| | | ||||||
* | | Update Chalk | Florian Diebold | 2019-05-04 | 3 | -11/+16 | |
| | | ||||||
* | | Turn eprintln!s into debug!s | Florian Diebold | 2019-05-04 | 2 | -8/+12 | |
| | | ||||||
* | | Handle Ty::Unknown in Chalk conversion | Florian Diebold | 2019-05-04 | 1 | -1/+5 | |
| | | | | | | | | Badly, but at least it doesn't crash. | |||||
* | | Canonicalize before doing method resolution | Florian Diebold | 2019-05-04 | 7 | -133/+165 | |
| | | ||||||
* | | Document the peculiarity of the solver query a bit | Florian Diebold | 2019-05-04 | 2 | -3/+10 | |
| | | | | | | | | | | Also remove the only remaining mention of chalk outside of the ty::traits module. | |||||
* | | Move Chalk conversion code to its own module | Florian Diebold | 2019-05-04 | 3 | -321/+339 | |
| | | ||||||
* | | Implement Deref<Target=[Ty]> for Substs | Florian Diebold | 2019-05-04 | 2 | -18/+18 | |
| | |