Browse Source

added rethrow.

Nicolas Cannasse 19 years ago
parent
commit
d65b7e3406
1 changed files with 4 additions and 0 deletions
  1. 4 0
      std/neko/Lib.hx

+ 4 - 0
std/neko/Lib.hx

@@ -34,4 +34,8 @@ class Lib {
 		untyped __dollar__print(v);
 	}
 
+	public static function rethrow( e : Dynamic ) : Void {
+		untyped __dollar__rethrow(e);
+	}
+
 }