Changeset 3682
- Timestamp:
- 06/27/08 21:41:51 (2 months ago)
- Files:
-
- trunk/tango/text/xml/Document.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/text/xml/Document.d
r3568 r3682 821 821 } 822 822 823 /*************************************************************** 824 825 Patch the serialization text, causing DocPrinter 826 to ignore the subtree of this node, and instead 827 emit the provided text as raw XML output. 828 829 Warning: this function does *not* copy the provided 830 text, and may be removed from future revisions 831 832 ***************************************************************/ 833 834 Node patch (T[] text) 835 { 836 end = text.ptr + text.length; 837 start = text.ptr; 838 return this; 839 } 840 823 841 /*************************************************************** 824 842 … … 1014 1032 1015 1033 /*************************************************************** 1016 1017 Patch the serialization text1018 1019 ***************************************************************/1020 1021 private Node patch (T[] text)1022 {1023 end = text.ptr + text.length;1024 start = text.ptr;1025 return this;1026 }1027 1028 /***************************************************************1029 1034 1030 1035 Duplicate a single node












