Is there a way in Haxe to get the equivalent of abstract Java methods and abstract classes?
I want to
The closest I could get the definition of Process as an interface and implement it with the conceptually abstract class ProcessA , which defines both methods; the go implementation in ProcessA just crashes. Then I can extend my conceptually specific classes from ProcessA.
source share