haxe icon indicating copy to clipboard operation
haxe copied to clipboard

Compilation server(haxe 5.0.0-preview.1): Context.unify() returns wrong result

Open dja-in-space opened this issue 4 months ago • 0 comments

Stuff: haxe 5.0.0-preview.1 I have a macro function which calls the code below:

trace("TYPES: ", type1, type2);
final unified = Context.unify(type1, type2);
trace("UNIFIED: ", unified);

Compilation server gives error result of unify function after any source code editing:

Image

After restarting haxe server the result is correct:

Image

P.S. haxe 4.3.7 compilation server works fine.

dja-in-space avatar Aug 22 '25 15:08 dja-in-space