Browse Source

[xml] fix docgen for PHP's haxe.Rest

k 2 years ago
parent
commit
c3fbfa1d97
1 changed files with 1 additions and 0 deletions
  1. 1 0
      std/php/_std/haxe/Rest.hx

+ 1 - 0
std/php/_std/haxe/Rest.hx

@@ -17,6 +17,7 @@ abstract Rest<T>(NativeRest<T>) {
 	static public inline function of<T>(array:Array<T>):Rest<T>
 	static public inline function of<T>(array:Array<T>):Rest<T>
 		return new Rest(@:privateAccess array.arr);
 		return new Rest(@:privateAccess array.arr);
 
 
+	@:noDoc
 	@:from
 	@:from
 	static inline function ofNative<T>(array:NativeIndexedArray<T>):Rest<T>
 	static inline function ofNative<T>(array:NativeIndexedArray<T>):Rest<T>
 		return new Rest(array);
 		return new Rest(array);