Browse Source

minor : allow "f" id

Nicolas Cannasse 18 years ago
parent
commit
e99703d8c6
1 changed files with 3 additions and 3 deletions
  1. 3 3
      std/haxe/xml/Proxy.hx

+ 3 - 3
std/haxe/xml/Proxy.hx

@@ -44,14 +44,14 @@ package haxe.xml;
 **/
 **/
 class Proxy<Const,T> {
 class Proxy<Const,T> {
 
 
-	var f : String -> T;
+	var __f : String -> T;
 
 
 	public function new(f) {
 	public function new(f) {
-		this.f = f;
+		this.__f = f;
 	}
 	}
 
 
 	function __resolve(k) {
 	function __resolve(k) {
-		return f(k);
+		return __f(k);
 	}
 	}
 
 
 }
 }