Alias for `build()` for compatibility with the `interpreter()` pattern.
(self)
| 268 | |
| 269 | /// Alias for `build()` for compatibility with the `interpreter()` pattern. |
| 270 | pub fn interpreter(self) -> Interpreter { |
| 271 | self.build() |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | impl Default for InterpreterBuilder { |
no test coverage detected