(lists [][]pcast.ExprNode)
| 520 | } |
| 521 | |
| 522 | func (c *cc) convertLists(lists [][]pcast.ExprNode) *ast.List { |
| 523 | list := &ast.List{Items: []ast.Node{}} |
| 524 | for _, exprs := range lists { |
| 525 | inner := &ast.List{Items: []ast.Node{}} |
| 526 | for _, expr := range exprs { |
| 527 | inner.Items = append(inner.Items, c.convert(expr)) |
| 528 | } |
| 529 | list.Items = append(list.Items, inner) |
| 530 | } |
| 531 | return list |
| 532 | } |
| 533 | |
| 534 | func (c *cc) convertParamMarkerExpr(n *driver.ParamMarkerExpr) *ast.ParamRef { |
| 535 | // Parameter numbers start at one |
no test coverage detected