Closed

Description
I'm trying to integrate zig with dart. Dart supports ffi with C. For the purposes of my project, zig would be a better choice than C. I need only 1-way calling : dart -> zig.
To make this possible, I have to generate a bit of glue code for dart. It would be enough for me to be able to get @typeInfo
for my zig functions that includes the argument names and argument types. Currently, @typeInfo
does not seem to provide this information.
Is there any workaround?