Skip to content

Track multiple variables with the same query #27

@tomkurtz

Description

@tomkurtz

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions