(lambda *ast.LambdaExpr)
| 305 | } |
| 306 | |
| 307 | func (c *canon) lambda(lambda *ast.LambdaExpr) { |
| 308 | c.write("(lambda ") |
| 309 | c.ids(lambda.Params) |
| 310 | c.write(":") |
| 311 | c.expr(lambda.Expr, "") |
| 312 | c.write(")") |
| 313 | } |
| 314 | |
| 315 | func (c *canon) arrayElems(elems []ast.ArrayElem) { |
| 316 | for k, elem := range elems { |
no test coverage detected