소스 검색

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