Allow function arguments in config syntax
The config syntax treats function arguments called func
in a special way. Currently we always try to build a lambda function from the values passed to the func
parameters, which leads to failures and we ar not able to map the API call
qc.flagByStatLowPass(func="std")
to the configuration. This MR fixes this issue.