On Friday, 15 April 2022 at 18:11:11 UTC, BoQsc wrote:
Let's say I have this example program.
I want to get the arguments of all the `some_function();` in
the whole program.
**Even if the scope of the function call is never executed.**
(Ex. due to IF statement being negative.)
You can't do th
Let's say I have this example program.
I want to get the arguments of all the `some_function();` in the
whole program.
**Even if the scope of the function call is never executed.**
(Ex. due to IF statement being negative.)
I tried to use `__traits` but it seems to not gather any
information a