瀏覽代碼

Fix JS tests.

Bruno Garcia 11 年之前
父節點
當前提交
48acf328f6
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      std/js/_std/Math.hx

+ 4 - 0
std/js/_std/Math.hx

@@ -80,4 +80,8 @@ extern class Math
 	static inline function isNaN( f : Float ) : Bool {
 		return (untyped __js__("isNaN"))(f);
 	}
+
+	static function __init__() : Void {
+		untyped __feature__("Type.resolveClass", $hxClasses["Math"] = Math);
+	}
 }