(ctx any, iterRange ast.Expr, iterVar, accuVar string, accuInit ast.Expr, condition ast.Expr, step ast.Expr, result ast.Expr)
| 118 | } |
| 119 | |
| 120 | func (p *parserHelper) newComprehension(ctx any, |
| 121 | iterRange ast.Expr, |
| 122 | iterVar, |
| 123 | accuVar string, |
| 124 | accuInit ast.Expr, |
| 125 | condition ast.Expr, |
| 126 | step ast.Expr, |
| 127 | result ast.Expr) ast.Expr { |
| 128 | return p.exprFactory.NewComprehension( |
| 129 | p.newID(ctx), iterRange, iterVar, accuVar, accuInit, condition, step, result) |
| 130 | } |
| 131 | |
| 132 | func (p *parserHelper) newComprehensionTwoVar(ctx any, |
| 133 | iterRange ast.Expr, |
nothing calls this directly
no test coverage detected