Helper: open an element, configure, return nothing. Caller must close_element().
(&mut self, decl: &ElementDeclaration<CustomElementData>)
| 7224 | |
| 7225 | /// Helper: open an element, configure, return nothing. Caller must close_element(). |
| 7226 | fn debug_open(&mut self, decl: &ElementDeclaration<CustomElementData>) { |
| 7227 | self.open_element(); |
| 7228 | self.configure_open_element(decl); |
| 7229 | } |
| 7230 | |
| 7231 | /// Helper: open a named element, configure. Caller must close_element(). |
| 7232 | fn debug_open_id(&mut self, name: &str, decl: &ElementDeclaration<CustomElementData>) { |
no test coverage detected