```haxe extern class A { function new(args:haxe.extern.Rest<Dynamic>); } class B extends A {} ``` will generate (JS, but also other targets, actually discovered on Flash): ```js var B = function(args) { A.call(this,args); }; ```
will generate (JS, but also other targets, actually discovered on Flash):