[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools.jdt] resolve type binding for argument list?

If I have parsed source code for: a.foo(b, c, d) in AST tree --

and I implement visit(MethodInvocation) to examine invocations of foo().

it's easy enough to resolve the method binding for foo() and get the 
argument list { b, c, d },

...but how do I then resolve the type binding for b, c & d ?