(&self, scope: Scope<'_>)
| 67 | } |
| 68 | |
| 69 | async fn async_exec(&self, scope: Scope<'_>) -> CallResult<()> { |
| 70 | debug_assert_eq!(0, scope.nargs()); |
| 71 | self.console.borrow_mut().beep().await?; |
| 72 | Ok(()) |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | /// The `SOUND` command. |
nothing calls this directly
no test coverage detected