Roman Mikhailov
Results
1
comments of
Roman Mikhailov
Minimal reproducible example without maps and generics (using the same `build.hxml`): `Main.hx` ```haxe package; interface IInterface { function interfaceMethod1():Void; function interfaceMethod2():Void; } class InterfaceImplementation implements IInterface { public function new()...