Nicolas Cannasse 19 năm trước cách đây
mục cha
commit
2d36927f26
2 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 1 0
      doc/CHANGES.txt
  2. 4 0
      std/haxe/xml/Fast.hx

+ 1 - 0
doc/CHANGES.txt

@@ -18,6 +18,7 @@
 	improved Serializer speed
 	improved Serializer speed
 	added Serialization support for Date, Hash, IntHash, List
 	added Serialization support for Date, Hash, IntHash, List
 	added flash9 and JS IE/Opera class reflection
 	added flash9 and JS IE/Opera class reflection
+	added haxe.xml.Check and haxe.xml.Fast
 
 
 2006-08-16: 1.05
 2006-08-16: 1.05
 	moved Md5 to haxe package.
 	moved Md5 to haxe package.

+ 4 - 0
std/haxe/xml/Fast.hx

@@ -73,6 +73,10 @@ class Fast {
 		att = new AttribAccess(x);
 		att = new AttribAccess(x);
 	}
 	}
 
 
+	public function node() {
+		return __x;
+	}
+
 	function name() {
 	function name() {
 		return if( __x.nodeType == Xml.Document ) "Document" else __x.nodeName;
 		return if( __x.nodeType == Xml.Document ) "Document" else __x.nodeName;
 	}
 	}