yazz.com
yazz.com

Reputation: 58786

How can I trace through a JVM program given only the class files?

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

Answers (1)

anta40
anta40

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

Related Questions