(element)
| 1408 | |
| 1409 | function createCommentsReader(bodyReader) { |
| 1410 | function readCommentsXml(element) { |
| 1411 | return Result.combine(element.getElementsByTagName("w:comment") |
| 1412 | .map(readCommentElement)); |
| 1413 | } |
| 1414 | |
| 1415 | function readCommentElement(element) { |
| 1416 | var id = element.attributes["w:id"]; |
nothing calls this directly
no outgoing calls
no test coverage detected