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