BelgianDude
Programmer
I am looking for a tool to search through code, not on keywords but on certain types of expressions.
e.g. find a statement where two floats are compared
float x = getSomeFloatValue();
float y = getSomeOtherFloatValue();
// We want to search for the following comparison
if (x == y) { // do something }
Thanks,
BelgianDude
e.g. find a statement where two floats are compared
float x = getSomeFloatValue();
float y = getSomeOtherFloatValue();
// We want to search for the following comparison
if (x == y) { // do something }
Thanks,
BelgianDude