I've a requirement to get information about a function and it's arguments.
For e.g. age(customer.dob, 'Male')
Here I wanted to identify above something like
{
"func_o": "age",
"arguments": [
{"argument": "customer.dob","type": "variable"},
{"argument": "'Male'","type": "constant"}
]
}