aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/let_destructoring.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Allow using "with" keyword in "let" statementsLibravatar René Kijewski2021-07-301-0/+14
| | | | | | | | Askama uses the syntax `{% when Variant with (parameters) %}` in `{% match %}` blocks. This change allows the optional use of the keyword "with" in "let" and "if let" statements, too.
* Implement destructoring of structsLibravatar René Kijewski2021-07-051-0/+107
This PR implements the destructoring of structs on the lhs of "let" and "for" statements.