(expr *exprpb.Expr)
| 562 | } |
| 563 | |
| 564 | func (con *converter) visitComprehension(expr *exprpb.Expr) error { |
| 565 | // TODO: introduce a macro expansion map between the top-level comprehension id and the |
| 566 | // function call that the macro replaces. |
| 567 | return fmt.Errorf("unimplemented : %v", expr) |
| 568 | } |
| 569 | |
| 570 | func (con *converter) visitConst(expr *exprpb.Expr) error { |
| 571 | c := expr.GetConstExpr() |