You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to get a nice textual representation of the code generated by @wrapmodule? My use case is that I'd like to be able to see how types and wrapped functions are actually constructed and possibly add docstrings to them that point to actual code (instead of attaching docstrings only to symbol name).
The text was updated successfully, but these errors were encountered:
This would be interesting to have, most of the generated code is in the output of build_function_expression, which gets called for each wrapped function. It's pretty ugly in its bare form, but maybe there are already some Julia metaprogramming tools that can help in making it readable and then store it somewhere.
Is it possible to get a nice textual representation of the code generated by
@wrapmodule
? My use case is that I'd like to be able to see how types and wrapped functions are actually constructed and possibly add docstrings to them that point to actual code (instead of attaching docstrings only to symbol name).The text was updated successfully, but these errors were encountered: