Registers that the file has been modified.
(mut self)
| 687 | |
| 688 | /// Registers that the file has been modified. |
| 689 | fn set_dirty(mut self) -> Self { |
| 690 | self.dirty = true; |
| 691 | self |
| 692 | } |
| 693 | |
| 694 | /// Finalizes the list of expected side-effects on the console. |
| 695 | fn build(self) -> Vec<CapturedOut> { |
no outgoing calls