| 138 | |
| 139 | template<class S> |
| 140 | void |
| 141 | Print<S>::inspect(const Space& node) { |
| 142 | init(); |
| 143 | addHtml("<pre>\n"); |
| 144 | dynamic_cast<const S&>(node).print(getStream()); |
| 145 | flush(); |
| 146 | addHtml("</pre><hr />"); |
| 147 | } |
| 148 | |
| 149 | template<class S> |
| 150 | std::string |
no test coverage detected