Browse Source

[doc] disable failing doc gen for haxe.atomic.AtomicInt for now

See https://github.com/HaxeFoundation/haxe/issues/10947
k 2 years ago
parent
commit
9ea808467e

+ 1 - 0
std/cpp/_std/haxe/atomic/AtomicInt.hx

@@ -3,6 +3,7 @@ package haxe.atomic;
 #if cppia
 #if cppia
 extern
 extern
 #end
 #end
+@:noDoc
 abstract AtomicInt(cpp.Pointer<Int>) {
 abstract AtomicInt(cpp.Pointer<Int>) {
 	public #if !(scriptable || cppia) inline #end function new(value:Int) {
 	public #if !(scriptable || cppia) inline #end function new(value:Int) {
 		this = cpp.Pointer.ofArray([value]);
 		this = cpp.Pointer.ofArray([value]);

+ 1 - 0
std/cs/_std/haxe/atomic/AtomicInt.hx

@@ -8,6 +8,7 @@ private class IntWrapper {
 	}
 	}
 }
 }
 
 
+@:noDoc
 abstract AtomicInt(IntWrapper) to IntWrapper {
 abstract AtomicInt(IntWrapper) to IntWrapper {
 	public inline function new(value:Int) {
 	public inline function new(value:Int) {
 		this = new IntWrapper(value);
 		this = new IntWrapper(value);

+ 1 - 0
std/haxe/atomic/AtomicInt.hx

@@ -8,6 +8,7 @@ package haxe.atomic;
 	Atomic integer.
 	Atomic integer.
 	(js) The Atomics and SharedArrayBuffer objects need to be available. Errors will be thrown if this is not the case.
 	(js) The Atomics and SharedArrayBuffer objects need to be available. Errors will be thrown if this is not the case.
 **/
 **/
+@:noDoc
 @:coreType
 @:coreType
 abstract AtomicInt {
 abstract AtomicInt {
 	public function new(value:Int):Void;
 	public function new(value:Int):Void;

+ 1 - 0
std/hl/_std/haxe/atomic/AtomicInt.hx

@@ -5,6 +5,7 @@ package haxe.atomic;
 #end
 #end
 import hl.Atomics;
 import hl.Atomics;
 
 
+@:noDoc
 abstract AtomicInt(hl.NativeArray<Int>) {
 abstract AtomicInt(hl.NativeArray<Int>) {
 	public inline function new(value:Int):Void {
 	public inline function new(value:Int):Void {
 		this = new hl.NativeArray(1);
 		this = new hl.NativeArray(1);

+ 1 - 0
std/java/_std/haxe/atomic/AtomicInt.hx

@@ -2,6 +2,7 @@ package haxe.atomic;
 
 
 import java.util.concurrent.atomic.AtomicInteger;
 import java.util.concurrent.atomic.AtomicInteger;
 
 
+@:noDoc
 abstract AtomicInt(AtomicInteger) {
 abstract AtomicInt(AtomicInteger) {
 	public inline function new(value:Int) {
 	public inline function new(value:Int) {
 		this = new AtomicInteger(value);
 		this = new AtomicInteger(value);

+ 1 - 0
std/js/_std/haxe/atomic/AtomicInt.hx

@@ -2,6 +2,7 @@ package haxe.atomic;
 
 
 import js.lib.Atomics;
 import js.lib.Atomics;
 
 
+@:noDoc
 abstract AtomicInt(js.lib.Int32Array) to js.lib.Int32Array {
 abstract AtomicInt(js.lib.Int32Array) to js.lib.Int32Array {
 	public inline function new(value:Int) {
 	public inline function new(value:Int) {
 		this = new js.lib.Int32Array(new js.lib.SharedArrayBuffer(js.lib.Int32Array.BYTES_PER_ELEMENT));
 		this = new js.lib.Int32Array(new js.lib.SharedArrayBuffer(js.lib.Int32Array.BYTES_PER_ELEMENT));