leptos/leptos_hot_reload/src
martin frances 10c0a2de65
chore: cleared clippy warnings (#1190)
The change in indentation makes the PR hard to review

so I will discuss the change in conversational language

Two "if"'s checks were merged into one "if"

this

-        if let Some(expr) = node.value() {
-            if let syn::Expr::Tuple(tuple) = expr {

becomes

+        if let Some(Tuple(tuple)) = node.value() {
2023-06-15 20:11:50 -04:00
..
diff.rs feat: support diffing inside component children in hot-reload (#690) 2023-03-17 13:53:53 -04:00
lib.rs feat: RSX parser with recovery after errors, and unquoted text (#1054) 2023-05-21 06:45:53 -04:00
node.rs chore: cargo clippy --fix. (#1136) 2023-06-03 11:35:33 -04:00
parsing.rs chore: cleared clippy warnings (#1190) 2023-06-15 20:11:50 -04:00
patch.js feat: support diffing inside component children in hot-reload (#690) 2023-03-17 13:53:53 -04:00