(tagName, attributes)
| 3317 | } |
| 3318 | |
| 3319 | function selfClosing(tagName, attributes) { |
| 3320 | indent(); |
| 3321 | writer.selfClosing(tagName, attributes); |
| 3322 | } |
| 3323 | |
| 3324 | function insideIndentedElement() { |
| 3325 | return stack.length === 0 || indentedElements[stack[stack.length - 1]]; |
nothing calls this directly
no test coverage detected