is it possible to break if any variable in the program gets a certain value? e.g. I want to break if any string variable gets assigned the value "Green Tree", so I know the value I'm looking for but not the actual variable it is stored in. Is this somehow possible?
the problem is, that I don't even know where this variable exists, so I'm not able to set a breakpoint there. My question is more like "Find the variable (and the location) which gets set to the value "Green Tree" somewhere in the program code.