NewComprehension creates a new one-variable comprehension instruction. - iterRange represents the expression that resolves to a list or map where the elements or keys (respectively) will be iterated over. - iterVar is the variable name for the list element value, or the map key, depending on the ra
(iterRange ast.Expr, iterVar, accuVar string, accuInit, condition, step, result ast.Expr)
| 234 | // environment in the step and condition expressions. Presently, the name __result__ is commonly |
| 235 | // used by built-in macros but this may change in the future. |
| 236 | NewComprehension(iterRange ast.Expr, |
| 237 | iterVar, |
| 238 | accuVar string, |
| 239 | accuInit, |
no outgoing calls
no test coverage detected