| 102 | } |
| 103 | |
| 104 | virtual std::string getString() const |
| 105 | { |
| 106 | std::string value; |
| 107 | value.reserve(getChildren().size() * 10); |
| 108 | |
| 109 | for (const auto& child : getChildren()) |
| 110 | { |
| 111 | value += child->getString(); |
| 112 | } |
| 113 | |
| 114 | return value; |
| 115 | } |
| 116 | }; |
| 117 | |
| 118 | class DefWhitespaceSyntax : |
no test coverage detected