| 1437 | |
| 1438 | #[derive(Debug, Clone)] |
| 1439 | struct Test { |
| 1440 | condition: Option<MyXPath>, |
| 1441 | then_part: Option<TestOrReplacements>, |
| 1442 | else_part: Option<TestOrReplacements>, |
| 1443 | } |
| 1444 | impl fmt::Display for Test { |
| 1445 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 1446 | write!(f, "test: [ ")?; |