ソースを参照

fixed run() return type.

Nicolas Cannasse 19 年 前
コミット
1736e21898
1 ファイル変更1 行追加1 行削除
  1. 1 1
      std/haxe/Unserializer.hx

+ 1 - 1
std/haxe/Unserializer.hx

@@ -276,7 +276,7 @@ class Unserializer {
 	/**
 		Unserialize a single value and return it.
 	**/
-	public static function run( v : String ) {
+	public static function run( v : String ) : Dynamic {
 		return new Unserializer(v).unserialize();
 	}