Adds all symbols provided by this module to the given `machine`.
(machine: &mut MachineBuilder)
| 204 | |
| 205 | /// Adds all symbols provided by this module to the given `machine`. |
| 206 | pub fn add_all(machine: &mut MachineBuilder) { |
| 207 | machine.add_callable(LboundFunction::new()); |
| 208 | machine.add_callable(UboundFunction::new()); |
| 209 | } |
| 210 | |
| 211 | #[cfg(test)] |
| 212 | mod tests { |
nothing calls this directly
no test coverage detected