···1010 g = (1 + 2);
1111 h = ({ inherit i; });
12121313- # TODO: binary exprs, function args etc.
1313+ # LATER: binary exprs, function args etc.
1414in
1515 # parens around let body
1616 (null)
+1-1
bin/tests/snapshots/main__useless_parens_fix.snap
···2222+ g = 1 + 2;
2323+ h = { inherit i; };
24242525- # TODO: binary exprs, function args etc.
2525+ # LATER: binary exprs, function args etc.
2626 in
2727 # parens around let body
2828- (null)
+1-1
lib/src/make.rs
···8484 ast_from_text("")
8585}
86868787-// TODO: make `op` strongly typed here
8787+// LATER: make `op` strongly typed here
8888pub fn binary(lhs: &SyntaxNode, op: &str, rhs: &SyntaxNode) -> types::BinOp {
8989 ast_from_text(&format!("{lhs} {op} {rhs}"))
9090}