(element)
| 1756 | |
| 1757 | function createReader(noteType, bodyReader) { |
| 1758 | function readNotesXml(element) { |
| 1759 | return Result.combine(element.getElementsByTagName("w:" + noteType) |
| 1760 | .filter(isFootnoteElement) |
| 1761 | .map(readFootnoteElement)); |
| 1762 | } |
| 1763 | |
| 1764 | function isFootnoteElement(element) { |
| 1765 | var type = element.attributes["w:type"]; |
nothing calls this directly
no outgoing calls
no test coverage detected