Skip to content

Commit 70112d8

Browse files
authored
checker: minor cleanup of commented code in lambda_expr.v (#22844)
1 parent f4d3c7e commit 70112d8

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

vlib/v/checker/lambda_expr.v

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ module checker
33
import v.ast
44

55
pub fn (mut c Checker) lambda_expr(mut node ast.LambdaExpr, exp_typ ast.Type) ast.Type {
6-
// defer { eprintln('> line: ${@LINE} | exp_typ: $exp_typ | node: ${voidptr(node)} | node.typ: ${node.typ}') }
76
if node.is_checked {
87
return node.typ
98
}
@@ -56,8 +55,6 @@ pub fn (mut c Checker) lambda_expr(mut node ast.LambdaExpr, exp_typ ast.Type) as
5655
}
5756
}
5857
}
59-
// dump(generic_types)
60-
// dump(generic_names)
6158

6259
mut stmts := []ast.Stmt{}
6360
mut has_return := false

0 commit comments

Comments
 (0)