瀏覽代碼

bugfix int64

Nicolas Cannasse 8 年之前
父節點
當前提交
f0215f0267
共有 1 個文件被更改,包括 16 次插入15 次删除
  1. 16 15
      std/hl/Type.hx

+ 16 - 15
std/hl/Type.hx

@@ -27,21 +27,22 @@ abstract TypeKind(Int) {
 	public var HUI8 = 1;
 	public var HUI16 = 2;
 	public var HI32 = 3;
-	public var HF32 = 4;
-	public var HF64 = 5;
-	public var HBool = 6;
-	public var HBytes = 7;
-	public var HDyn = 8;
-	public var HFun = 9;
-	public var HObj = 10;
-	public var HArray = 11;
-	public var HType = 12;
-	public var HRef = 13;
-	public var HVirtual = 14;
-	public var HDynObj = 15;
-	public var HAbstract = 16;
-	public var HEnum = 17;
-	public var HNull = 18;
+	public var HI64 = 4;
+	public var HF32 = 5;
+	public var HF64 = 6;
+	public var HBool = 7;
+	public var HBytes = 8;
+	public var HDyn = 9;
+	public var HFun = 10;
+	public var HObj = 11;
+	public var HArray = 12;
+	public var HType = 13;
+	public var HRef = 14;
+	public var HVirtual = 15;
+	public var HDynObj = 16;
+	public var HAbstract = 17;
+	public var HEnum = 18;
+	public var HNull = 19;
 }
 
 @:coreType abstract Type {