As I was going through the tutorial, especially the part about all the ways of presenting the results, one feature that I started to wish for was to have a way to select a program feature in Eclipse, and bind it to a variable of a query. For example, suppose I have a query that returns a call graph:
from Callable caller, Callable callee
where caller.calls(callee)
select caller, callee
Now I'd like to be able to (right?-)click on a method in Eclipse, and select something from a context menu to bind that method to either caller (to get a list of all its callers) or to caller (to get a list of all its callees).