| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-04-11 | Fix tests broken by deaggregation change | Jakob Degen | -0/+2 | |
| 2022-02-22 | change `mir::Constant` in mir dumps | lcnr | -2/+2 | |
| 2021-09-01 | Fix drop handling for `if let` expressions | Matthew Jasper | -15/+15 | |
| MIR lowering for `if let` expressions is now more complicated now that `if let` exists in HIR. This PR adds a scope for the variables bound in an `if let` expression and then uses an approach similar to how we handle loops to ensure that we reliably drop the correct variables. | ||||
| 2021-08-25 | Fix debugger stepping behavior around `match` expressions | Wesley Wiser | -3/+3 | |
| Previously, we would set up the source lines for `match` expressions so that the code generated to perform the test of the scrutinee was matched to the line of the arm that required the test and then jump from the arm block to the "next" block was matched to all of the lines in the `match` expression. While that makes sense, it has the side effect of causing strange stepping behavior in debuggers. I've changed the source information so that all of the generated tests are sourced to `match {scrutinee}` and the jumps are sourced to the last line of the block they are inside. This resolves the weird stepping behavior in all debuggers and resolves some instances of "ambiguous symbol" errors in WinDbg preventing the user from setting breakpoints at `match` expressions. | ||||
| 2021-08-15 | Introduce hir::ExprKind::Let - Take 2 | Caio | -9/+9 | |
| 2021-07-27 | Update tests | Jacob Pratt | -39/+39 | |
| 2021-03-19 | update tests | mark | -39/+39 | |
| 2020-09-04 | Add test for checking if-let or-patterns | kadmin | -0/+87 | |
