(options)
| 799 | var uris = require("./uris"); |
| 800 | |
| 801 | function createBodyReader(options) { |
| 802 | return { |
| 803 | readXmlElement: function(element) { |
| 804 | return new BodyReader(options).readXmlElement(element); |
| 805 | }, |
| 806 | readXmlElements: function(elements) { |
| 807 | return new BodyReader(options).readXmlElements(elements); |
| 808 | } |
| 809 | }; |
| 810 | } |
| 811 | |
| 812 | function BodyReader(options) { |
| 813 | var complexFieldStack = []; |
nothing calls this directly
no outgoing calls
no test coverage detected