Extends the machine with interactive (REPL) features.
(self)
| 417 | |
| 418 | /// Extends the machine with interactive (REPL) features. |
| 419 | pub fn make_interactive(self) -> InteractiveMachineBuilder { |
| 420 | InteractiveMachineBuilder::from(self) |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | /// Builder pattern to construct an interpreter for REPL operation. |
no outgoing calls