Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Mark MismatchedArgCount as experimental | Jonas Schievink | 2020-07-24 | 1 | -0/+3 |
| | |||||
* | Add a builder for DiagnosticSink | Jonas Schievink | 2020-07-24 | 1 | -2/+2 |
| | |||||
* | Support `Trait as _` imports | Jonas Schievink | 2020-07-21 | 1 | -0/+22 |
| | |||||
* | Remove insta dep | Laurențiu Nicola | 2020-07-21 | 1 | -2/+2 |
| | |||||
* | Replace remaining insta uses | Laurențiu Nicola | 2020-07-21 | 6 | -5365/+5366 |
| | |||||
*---. | Merge #5451 #5463 #5465 #5466 | bors[bot] | 2020-07-21 | 1 | -3/+19 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5451: Highlight more cases of SyntaxKind when it is a punctuation r=matklad a=GrayJack This maybe closes #5406 Closes #5453 Separate what one expect to be a punctuation semantic token (like `,`, `;`, `(`, etc), and what is not (`&`, `::`, `+`, etc) 5463: Bump lexer r=matklad a=kjeremy Since we're now on rust 1.45 5465: Bump chalk r=matklad a=kjeremy 5466: Do not show default types in function and closure return values r=matklad a=SomeoneToIgnore Avoid things like <img width="522" alt="image" src="https://user-images.githubusercontent.com/2690773/87985936-1bbe4f80-cae5-11ea-9b8a-5383d896c296.png"> Co-authored-by: GrayJack <[email protected]> Co-authored-by: kjeremy <[email protected]> Co-authored-by: Kirill Bulatov <[email protected]> | ||||
| | | * | Do not show default types in closures | Kirill Bulatov | 2020-07-20 | 1 | -3/+19 |
| | |/ | |||||
* | | | Merge #5458 | bors[bot] | 2020-07-21 | 3 | -849/+896 |
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | 5458: Use expect in some ra_hir_ty tests r=flodiebold a=lnicola Co-authored-by: Laurențiu Nicola <[email protected]> | ||||
| * | | Inline lang items in coercion tests | Laurențiu Nicola | 2020-07-20 | 2 | -27/+65 |
| | | | |||||
| * | | Use expect in never_type tests | Laurențiu Nicola | 2020-07-20 | 3 | -186/+185 |
| | | | |||||
| * | | Use expect in coercion tests | Laurențiu Nicola | 2020-07-20 | 1 | -674/+684 |
| | | | |||||
* | | | Minor perf tweaks per clippy | Jeremy Kolb | 2020-07-19 | 1 | -1/+1 |
| |/ |/| | |||||
* | | Specify default adt representation for chalk integration | Wilco Kusee | 2020-07-19 | 1 | -1/+1 |
|/ | |||||
* | call_info works with closures | Aleksey Kladov | 2020-07-17 | 1 | -10/+1 |
| | |||||
* | Mismatched arg count works for lambdas | Aleksey Kladov | 2020-07-17 | 2 | -10/+30 |
| | |||||
* | Align CallableDefId naming with other ids | Aleksey Kladov | 2020-07-16 | 9 | -47/+49 |
| | |||||
* | Rename CallableDefId -> InternedCallabelDefid | Aleksey Kladov | 2020-07-16 | 3 | -11/+11 |
| | |||||
* | Remove TypeCtor interning | Florian Diebold | 2020-07-15 | 5 | -30/+21 |
| | | | | Our TypeCtor and Chalk's TypeName match now! | ||||
* | Use Chalk closure support | Florian Diebold | 2020-07-15 | 6 | -350/+83 |
| | |||||
* | Add FIXME | Jonas Schievink | 2020-07-14 | 1 | -0/+1 |
| | |||||
* | Thread varargs through r-a | Jonas Schievink | 2020-07-14 | 7 | -19/+65 |
| | |||||
* | ItemTree: Lower tuple types despite invalid type | Jonas Schievink | 2020-07-14 | 1 | -0/+23 |
| | |||||
* | Refactor the test of diagnostic tests | Aleksey Kladov | 2020-07-14 | 6 | -474/+278 |
| | |||||
* | Allow multiline annotations | Aleksey Kladov | 2020-07-14 | 2 | -2/+3 |
| | |||||
* | Compress match checking tests | Aleksey Kladov | 2020-07-14 | 3 | -1168/+419 |
| | |||||
* | Data-driven diagnostics tests | Aleksey Kladov | 2020-07-14 | 3 | -100/+93 |
| | |||||
* | Reduce visibility | Aleksey Kladov | 2020-07-14 | 1 | -85/+83 |
| | |||||
* | Cleanup visibility | Aleksey Kladov | 2020-07-14 | 2 | -7/+11 |
| | |||||
* | Cleanup hir diagnostics API | Aleksey Kladov | 2020-07-14 | 5 | -40/+48 |
| | |||||
* | Consolidate hir diagnostics code in one place | Aleksey Kladov | 2020-07-14 | 6 | -13/+14 |
| | |||||
* | Don't copy-paste `impl_froms` into every crate | Aleksey Kladov | 2020-07-13 | 3 | -30/+9 |
| | |||||
* | Reorder imports | Aleksey Kladov | 2020-07-13 | 3 | -8/+7 |
| | |||||
* | Merge #5331 | bors[bot] | 2020-07-12 | 2 | -2/+63 |
|\ | | | | | | | | | | | | | | | | | | | 5331: Fix #4966 r=flodiebold a=flodiebold We add a level of binders when converting our function pointer to Chalk's; we need to remove it again on the way back. Fixes #4966. Co-authored-by: Florian Diebold <[email protected]> | ||||
| * | Fix #4966 | Florian Diebold | 2020-07-12 | 2 | -2/+63 |
| | | | | | | | | | | We add a level of binders when converting our function pointer to Chalk's; we need to remove it again on the way back. | ||||
* | | Remove some unnecessary file names | Florian Diebold | 2020-07-12 | 1 | -3/+0 |
| | | |||||
* | | Add test for #4281 | Florian Diebold | 2020-07-12 | 1 | -0/+23 |
| | | | | | | | | Fixes #4281. | ||||
* | | Search more efficiently for int/float impls | Florian Diebold | 2020-07-12 | 3 | -18/+118 |
| | | |||||
* | | Adapt trait object coercion tests to the status quo | Florian Diebold | 2020-07-12 | 1 | -4/+51 |
| | | |||||
* | | Use Chalk built-in representation for array types | Florian Diebold | 2020-07-12 | 1 | -7/+36 |
| | | |||||
* | | Remove built-in Unsize impls | Florian Diebold | 2020-07-12 | 4 | -235/+6 |
| | | | | | | | | They exist in Chalk now. | ||||
* | | Enable Chalk tracing in hir_ty tests | Florian Diebold | 2020-07-12 | 4 | -66/+52 |
| | | |||||
* | | Upgrade Chalk | Florian Diebold | 2020-07-12 | 5 | -13/+63 |
|/ | |||||
* | infer: Add type inference support for Union types | Otavio Salvador | 2020-07-11 | 2 | -2/+32 |
| | | | | | | | | This adds the type inference to Union types and add a small test case for it, ensuring it keeps working in future. Fixes: #5277 Signed-off-by: Otavio Salvador <[email protected]> | ||||
* | arg count mismatch: handle tuple ctors | Jonas Schievink | 2020-07-09 | 1 | -17/+34 |
| | |||||
* | Address review comments | Jonas Schievink | 2020-07-09 | 1 | -40/+27 |
| | |||||
* | Add tests | Jonas Schievink | 2020-07-09 | 1 | -0/+129 |
| | |||||
* | Fix diagnostic for method calls | Jonas Schievink | 2020-07-09 | 1 | -3/+12 |
| | |||||
* | Correctly pluralize message | Jonas Schievink | 2020-07-09 | 1 | -1/+2 |
| | |||||
* | Don't emit diagnostic if there are type errors | Jonas Schievink | 2020-07-09 | 1 | -0/+7 |
| | |||||
* | Add argument count mismatch diagnostic | Jonas Schievink | 2020-07-09 | 2 | -5/+92 |
| |