| 94 | } |
| 95 | |
| 96 | void printAlias(std::ostream& s, Alias* alias, uintmax_t numIndent) |
| 97 | { |
| 98 | inprint(s, "Alias", numIndent + 1); |
| 99 | inprint(s, alias->name, numIndent + 2); |
| 100 | |
| 101 | if (alias->columns) { |
| 102 | for (char* column : *(alias->columns)) { |
| 103 | inprint(s, column, numIndent + 3); |
| 104 | } |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | void printOperatorExpression(std::ostream& s, const Expr* expr, uintmax_t numIndent) |
| 109 | { |
no test coverage detected