I'd love to see a feature to generate constructors for classes and structs. I'm constantly using structs and I have to manually write out my constructors. A feature like this would save me so much more time on top of the time that VAX already saves me. :) (thanks for an amazing tool)
For example: (generation of constructors for the members also - however, maybe a setting that would determine the depth of constructors and even a setting for default values of types?)
struct Test
{
int32 prop;
uint8 test;
bool bcool;
Test() : prop(0), test(0), bcool(false) {}
Test(int32 p, uint8 t) : prop(p), test(t), bcool(false) {}
Test(int32 p, uint8 t, bool b) : prop(p), test(t), bcool(b) {}
};