dox icon indicating copy to clipboard operation
dox copied to clipboard

Overloads only show one documention

Open ibilon opened this issue 5 years ago • 0 comments

Running dox on a class with an overloaded function, each version having its own documentation:

extern class Test {
	/** Test with String **/
	static inline overload function test(s:String):Void {};

	/** Test with Int **/
	static inline overload function test(i:Int):Void {};
}

show them grouped with only one documentation: Screenshot_20210218_155518

ibilon avatar Feb 18 '21 14:02 ibilon