Closed as not planned
Description
Hi, I would like to use scip to create normalized function names that contain their argument types. For example, the function
foo(int a, double b)
would look something like foo_int_double
. I've tried looking at many different fields in the index.scip result (SymbolInformation.signature_documentation looked promising) but the fields I look at either don't contain relevant information or are blank. However, variable type resolution seems like something that could be found with scip. For instance, I'm thinking of when you hover over a variable in an IDE and it gives you the variable type or you hover over a function and it gives you the function declaration. How can I find the types of variables or function arguments in a scip file?