(tagName, attributes, children)
| 2136 | } |
| 2137 | |
| 2138 | function freshElement(tagName, attributes, children) { |
| 2139 | var tag = htmlPaths.element(tagName, attributes, {fresh: true}); |
| 2140 | return elementWithTag(tag, children); |
| 2141 | } |
| 2142 | |
| 2143 | function elementWithTag(tag, children) { |
| 2144 | return { |
nothing calls this directly
no test coverage detected