(&self, scope: Scope<'_>)
| 54 | } |
| 55 | |
| 56 | fn exec(&self, scope: Scope<'_>) -> CallResult<()> { |
| 57 | let mut output = self.output.borrow_mut(); |
| 58 | output.push_str(&format_arg(&scope, 0, ExprType::Integer)); |
| 59 | output.push('\n'); |
| 60 | Ok(()) |
| 61 | } |
| 62 | } |
nothing calls this directly
no test coverage detected