Nicolas Cannasse 19 năm trước cách đây
mục cha
commit
bbc4e49880
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      std/Std.hx

+ 1 - 1
std/Std.hx

@@ -133,7 +133,7 @@ class Std {
 	public static function chr( x : Int ) : String {
 		return untyped
 		#if flash
-		String.fromCharCode(x);
+		String["fromCharCode"](x);
 		#else neko
 		{
 			var s = __dollar__smake(1);