Skip to content

Commit 6fb5a3b

Browse files
committed
Update MethodStack.java
1 parent 141c7a7 commit 6fb5a3b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/gr/gousiosg/javacg/dyn/MethodStack.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ public static void push(String callname, Object [] argM) throws IOException {//
102102
if (!stack.isEmpty()) { sb.append(stack.peek()); }
103103
sb.append(" --- ").append(callname).append("=").append(System.nanoTime()).append("\n");// added in stack peek so it will also print the calling class
104104

105+
sb.append("Formal Param Types: ");
106+
105107
for(Object ob : argM)
106108
{
107109
sb.append(" ").append(ob.getClass().getName()); // GET THE PARAMETERS AND PRINT THE TYPE.

0 commit comments

Comments
 (0)