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
I've added code to build the parameter dictionary in #26
I've made use of ReExes to extract the parameters from the source code and used Julia's meta programming to convert them into julia objects.
Please verify the working of the code and suggest if there is any better way to do it.
I wasn't able to get the RE for extracting the params whenever nested () where there (I wasn't quite able to write recursive REs to do the same), so I used a rudimentary way to extract it.
FYI, in python we make use of inspect.
The text was updated successfully, but these errors were encountered:
I've added code to build the parameter dictionary in #26
I've made use of ReExes to extract the parameters from the source code and used Julia's meta programming to convert them into julia objects.
Please verify the working of the code and suggest if there is any better way to do it.
I wasn't able to get the RE for extracting the params whenever nested () where there (I wasn't quite able to write recursive REs to do the same), so I used a rudimentary way to extract it.
FYI, in python we make use of
inspect
.The text was updated successfully, but these errors were encountered: