Hello,
Is it possible to create a query that will track two variables?
For example:
void main() {
foo();
bar();
}
void foo() {
queryTarget("a1", "b1");
}
void bar() {
queryTarget("a2", "b2");
}
void queryTarget(String x, String y) {}
Given that my entry point is main, if I query x, I would get a1 and a2. Then if I query y, I would get b1 and b2. Obviously the results I expect are the sets (a1,b1) and (a2,b2), and NOT (a1,b2) or (a2,b1).
How can this be done?
Thanks,
Tom