(&mut self, style: &Style)
| 51 | } |
| 52 | |
| 53 | fn begin_group(&mut self, style: &Style) { |
| 54 | let size = self.get_platform_size(); |
| 55 | // TODO: Implement begin_group with style and size |
| 56 | let _ = (style, size); // Temporarily silence warnings |
| 57 | } |
| 58 | |
| 59 | fn end_group(&mut self) { |
| 60 | // Implementation coming soon |
nothing calls this directly
no test coverage detected