Closed Menduist closed 1 year ago
class ClassA { public: static void test(); };
Now becomes
proc test*(_: `type` ClassA) {.importcpp: "ClassA::test(@)", header: "cppstatic.hpp".}
(notice the added type ClassA parameter) which can be used by doing ClassA.test()
type ClassA
Awesome, but it needs a switch so that it can be enabled. Backwards compat is important.
Now becomes
(notice the added
type ClassA
parameter) which can be used by doing ClassA.test()