(parent, text)
| 31687 | extend(XMLRaw, superClass); |
| 31688 | |
| 31689 | function XMLRaw(parent, text) { |
| 31690 | XMLRaw.__super__.constructor.call(this, parent); |
| 31691 | if (text == null) { |
| 31692 | throw new Error("Missing raw text. " + this.debugInfo()); |
| 31693 | } |
| 31694 | this.value = this.stringify.raw(text); |
| 31695 | } |
| 31696 | |
| 31697 | XMLRaw.prototype.clone = function() { |
| 31698 | return Object.create(this); |
nothing calls this directly
no outgoing calls
no test coverage detected