Explorar el Código

rethrow returns Dynamic.

Nicolas Cannasse hace 19 años
padre
commit
1b17223db0
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      std/neko/Lib.hx

+ 2 - 2
std/neko/Lib.hx

@@ -38,8 +38,8 @@ class Lib {
 		untyped __dollar__print(v,"\n");
 		untyped __dollar__print(v,"\n");
 	}
 	}
 
 
-	public static function rethrow( e : Dynamic ) : Void {
-		untyped __dollar__rethrow(e);
+	public static function rethrow( e : Dynamic ) : Dynamic {
+		return untyped __dollar__rethrow(e);
 	}
 	}
 
 
 	public static function serialize( v : Dynamic ) : String {
 	public static function serialize( v : Dynamic ) : String {