intellij-haxe icon indicating copy to clipboard operation
intellij-haxe copied to clipboard

functions with @:overload signatures marked as error

Open CrazyFlasher opened this issue 3 years ago • 0 comments

package express;

typedef Application = {
...
        @:overload(function(port:Float, hostname:String, ?callback:() -> Void):node.http.Server { })
	@:overload(function(port:Float, ?callback:() -> Void):node.http.Server { })
	@:overload(function(?callback:() -> Void):node.http.Server { })
	@:overload(function(path:String, ?callback:() -> Void):node.http.Server { })
	@:overload(function(handle:Dynamic, ?listeningListener:() -> Void):node.http.Server { })
	function listen(port:Float, hostname:String, backlog:Float, ?callback:() -> Void):node.http.Server;

image

CrazyFlasher avatar Aug 01 '21 08:08 CrazyFlasher