Nicolas Cannasse 19 years ago
parent
commit
2d36927f26
2 changed files with 5 additions and 0 deletions
  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
 	added Serialization support for Date, Hash, IntHash, List
 	added flash9 and JS IE/Opera class reflection
+	added haxe.xml.Check and haxe.xml.Fast
 
 2006-08-16: 1.05
 	moved Md5 to haxe package.

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

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