2
0
Nicolas Cannasse 18 жил өмнө
parent
commit
e99703d8c6
1 өөрчлөгдсөн 3 нэмэгдсэн , 3 устгасан
  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> {
 
-	var f : String -> T;
+	var __f : String -> T;
 
 	public function new(f) {
-		this.f = f;
+		this.__f = f;
 	}
 
 	function __resolve(k) {
-		return f(k);
+		return __f(k);
 	}
 
 }