a little more trace output

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2132 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
dolby-oss 2007-12-10 04:27:53 +00:00
parent 8e46277e51
commit 35c2b24881
1 changed files with 2 additions and 1 deletions

View File

@ -144,7 +144,8 @@ public abstract class TestCAstTranslator extends WalaTestCase {
IMethod mth = (IMethod) mths.next();
if (mth.isStatic())
Trace.print("static ");
Trace.println("method " + mth);
Trace.println("method " + mth + " with " +
mth.getNumberOfParameters() + " parameters");
for (int i = 0; i < mth.getNumberOfParameters(); i++) {
Trace.println("param " + i + ": " + mth.getParameterType(i));
}