Reputation: 58786
Is there a way to trace through a program given only the class files (not the debug version of the class files)?
Upvotes: 1
Views: 235
Reputation: 6743
I guess that's possible. I just made a simple Fibonacci code, compiled it using "-g:none" (so no debugging info generated), then trace using this.
You can see the invocation tree there.
Upvotes: 4