| 30 | |
| 31 | template <typename XSL> |
| 32 | XSL XSLChild( const XSL& parent, size_t childIndex ) |
| 33 | { |
| 34 | return XSL{ parent.node->GetChild( childIndex ), parent.symbolTable }; |
| 35 | } |
| 36 | |
| 37 | template <typename XSL> |
| 38 | CodeStream& operator<<( CodeStream& os, const Children<XSL>& children ) |