(options)
| 30631 | extend(XMLDocument, superClass); |
| 30632 | |
| 30633 | function XMLDocument(options) { |
| 30634 | XMLDocument.__super__.constructor.call(this, null); |
| 30635 | this.name = "?xml"; |
| 30636 | options || (options = {}); |
| 30637 | if (!options.writer) { |
| 30638 | options.writer = new XMLStringWriter(); |
| 30639 | } |
| 30640 | this.options = options; |
| 30641 | this.stringify = new XMLStringifier(options); |
| 30642 | this.isDocument = true; |
| 30643 | } |
| 30644 | |
| 30645 | XMLDocument.prototype.end = function(writer) { |
| 30646 | var writerOptions; |
nothing calls this directly
no outgoing calls
no test coverage detected