Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Parse boolean literals in assignment targets | René Kijewski | 2021-08-25 | 2 | -3/+27 |
| | | | | | | | | 268d825 introduced a regression that made matching against boolean literals impossible. E.g. "true" was interpreted as the variable "r#true". This PR fixes the problem. The bug was reported by @Restioson in issue #531. | ||||
* | Upgrade to nom 7 | Dirkjan Ochtman | 2021-08-21 | 1 | -5/+9 |
| | |||||
* | Better error messages using cuts | René Kijewski | 2021-07-30 | 1 | -131/+186 |
| | |||||
* | Use "target()" to parse "when" block | René Kijewski | 2021-07-30 | 3 | -253/+83 |
| | | | | | | | | | | | | `target()` as used in parsing "let" and "if let" implements parsing nested tuples and structs. But it does not implement parsing literals. The functions `match_variant()` and `with_parameters()` as used in parsing "when" blocks do not implement parsing nested structs, but it implements parsing literals. This PR combines `match_variant()` and `with_parameters()` into `target()`, so that all `{%when%}` support nested structs, too. | ||||
* | Allow omitting "with" keyword in match blocks | René Kijewski | 2021-07-30 | 1 | -1/+1 |
| | | | | | | | | | Askama uses the syntax `{% when Variant with (parameters) %}` in `{% match %}` blocks. This is done because Askama does not implement the whole pattern matching of Rust's `match` statements. This PR wants to bring Askama a step closer Rust's matching, so the "with" keyword should not be needed anymore. | ||||
* | Allow using "with" keyword in "let" statements | René Kijewski | 2021-07-30 | 1 | -0/+1 |
| | | | | | | | | 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. | ||||
* | Silence clippy warning from Rust 1.54 | Dirkjan Ochtman | 2021-07-30 | 1 | -0/+1 |
| | |||||
* | Implement destructoring of structs | René Kijewski | 2021-07-05 | 2 | -8/+59 |
| | | | | | This PR implements the destructoring of structs on the lhs of "let" and "for" statements. | ||||
* | Parse nested tuples in "let" statement lhs | René Kijewski | 2021-07-05 | 2 | -17/+35 |
| | |||||
* | Reduce code duplication for writing targets | René Kijewski | 2021-07-05 | 1 | -22/+9 |
| | | | | | This change also fixes a bug in the loop generator, which failed for shadowed variables. | ||||
* | Move logic where target shadows or declares a variable into method | René Kijewski | 2021-07-05 | 1 | -23/+33 |
| | |||||
* | Remove needless deref, only to ref it a few lines down | René Kijewski | 2021-07-05 | 1 | -4/+4 |
| | |||||
* | Remove duplicated code in generator | René Kijewski | 2021-07-05 | 1 | -17/+1 |
| | |||||
* | Prepare generator::visit_target() for nested targets | René Kijewski | 2021-07-05 | 1 | -4/+2 |
| | | | | | | | | By now only non-nested tuples are accepted by the parser, but this will change. This change makes visit_target() call itself for items in a tuple. So enable the function to call itself, I needed to fix the lifetime annotation, because the references inside a Target instance may outlife a reference to instance itself. | ||||
* | Stop eliding lifetimes in paths | Dirkjan Ochtman | 2021-07-01 | 5 | -102/+122 |
| | |||||
* | Implement "if let" statement | René Kijewski | 2021-07-01 | 2 | -17/+54 |
| | |||||
* | Use "if let Some(_)" instead of match | René Kijewski | 2021-07-01 | 1 | -21/+18 |
| | |||||
* | Move visit_match_params into its own method | René Kijewski | 2021-07-01 | 1 | -38/+42 |
| | |||||
* | Fix a clippy::needless-borrow warning in askama_shared | René Kijewski | 2021-07-01 | 1 | -1/+1 |
| | |||||
* | Fixed loop generator when accessing field (fixes 494) | vallentin | 2021-06-23 | 1 | -0/+6 |
| | |||||
* | Fix code generation for macro calls that store args in variables. | Ryan Kelly | 2021-06-22 | 1 | -1/+4 |
| | |||||
* | Support rocket 0.5.0-rc.1 based on @flo-l's PR (#495) | Shritesh Bhattarai | 2021-06-15 | 1 | -4/+2 |
| | | | See #412 for earlier iteration. | ||||
* | Fix needless borrowing | Dirkjan Ochtman | 2021-06-14 | 1 | -5/+5 |
| | |||||
* | Fixed not found in scope error | vallentin | 2021-04-29 | 1 | -1/+1 |
| | |||||
* | Use raw identifiers for identifiers which collide with Rust keywords (#476) | SciStarterOwner | 2021-04-21 | 1 | -4/+84 |
| | | | Co-authored-by: Daniel Arbuckle <djarb@highenergymagic.org> | ||||
* | Eliminate common tails from branches | Dirkjan Ochtman | 2021-04-13 | 2 | -8/+4 |
| | |||||
* | askama_tide: suppress clippy::from-over-into lint | Dirkjan Ochtman | 2021-03-30 | 1 | -0/+2 |
| | |||||
* | Use mem::take() where applicable | Dirkjan Ochtman | 2021-03-30 | 1 | -2/+2 |
| | |||||
* | added paragraphbreaks function | mbuscemi | 2021-03-22 | 1 | -1/+30 |
| | |||||
* | fix typo in docstring | technic93 | 2021-03-14 | 1 | -1/+1 |
| | |||||
* | Changed to allow both path and ext | vallentin | 2021-03-10 | 1 | -5/+2 |
| | |||||
* | Added extension tests | vallentin | 2021-03-10 | 1 | -0/+48 |
| | |||||
* | Fixed extension to ignore common jinja extensions (fixes #457) | vallentin | 2021-03-10 | 1 | -1/+11 |
| | |||||
* | Refactored getting path extension | vallentin | 2021-03-10 | 2 | -36/+17 |
| | |||||
* | Fix style suggestion per nightly clippy | Dirkjan Ochtman | 2021-02-28 | 1 | -1/+1 |
| | |||||
* | Reworked constants to be parsed as paths | vallentin | 2021-02-23 | 2 | -11/+26 |
| | |||||
* | Added var and path parser tests | vallentin | 2021-02-22 | 1 | -1/+72 |
| | |||||
* | Fixed path parser to account for single identifier type names | vallentin | 2021-02-22 | 1 | -7/+23 |
| | |||||
* | Removed needless borrow of range | vallentin | 2021-02-22 | 1 | -0/+1 |
| | |||||
* | Rename askama_actix trait method as suggested by clippy | Dirkjan Ochtman | 2021-02-15 | 1 | -2/+2 |
| | | | | | By bumping the dependency versions for askama and askama_shared, this should be safe. | ||||
* | Fix formatting for rust 1.50.0 | Dirkjan Ochtman | 2021-02-15 | 1 | -4/+6 |
| | |||||
* | Bring Ws type name in line with API guidelines | Dirkjan Ochtman | 2021-02-01 | 2 | -84/+84 |
| | |||||
* | Apply suggestions from nightly clippy | Dirkjan Ochtman | 2021-01-22 | 1 | -4/+2 |
| | |||||
* | Fixed constants (fixes #291) | vallentin | 2021-01-13 | 1 | -2/+5 |
| | |||||
* | Added urlencode filter to book | vallentin | 2021-01-06 | 1 | -5/+5 |
| | |||||
* | Improved comment parsing test | vallentin | 2021-01-06 | 1 | -0/+18 |
| | |||||
* | Fixed comment parsing | vallentin | 2021-01-06 | 1 | -7/+1 |
| | |||||
* | Removed implicit borrowing of literals, calls, and more (fixes #404) | vallentin | 2021-01-05 | 5 | -55/+105 |
| | |||||
* | Added numbers parser test | vallentin | 2021-01-05 | 1 | -0/+13 |
| | |||||
* | Fixed parsing floats | vallentin | 2021-01-05 | 1 | -2/+4 |
| |