浏览代码

Fix Int64 low / high accessors showing up in API docs

These should not be public.
Jens Fischer 5 年之前
父节点
当前提交
4c3ff6e9e9
共有 2 个文件被更改,包括 4 次插入4 次删除
  1. 2 2
      std/cs/_std/haxe/Int64.hx
  2. 2 2
      std/java/_std/haxe/Int64.hx

+ 2 - 2
std/cs/_std/haxe/Int64.hx

@@ -46,12 +46,12 @@ abstract Int64(__Int64) from __Int64 to __Int64 {
 
 	public var high(get, never):Int32;
 
-	public inline function get_high():Int32
+	inline function get_high():Int32
 		return cast(this >> 32);
 
 	public var low(get, never):Int32;
 
-	public inline function get_low():Int32
+	inline function get_low():Int32
 		return cast this;
 
 	public inline function copy():Int64

+ 2 - 2
std/java/_std/haxe/Int64.hx

@@ -50,12 +50,12 @@ abstract Int64(__Int64) from __Int64 to __Int64 {
 
 	public var high(get, never):Int32;
 
-	public inline function get_high():Int32
+	inline function get_high():Int32
 		return cast(this >> 32);
 
 	public var low(get, never):Int32;
 
-	public inline function get_low():Int32
+	inline function get_low():Int32
 		return cast this;
 
 	public inline function copy():Int64