You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we do not take in any command line arguments and flags other than the class file to parse and report on. We also as of #5 have the capability to have the executable not include the code references in the program output.
It would be nice to try to have some flags similar to those provided by javap to configure the output of the executable. A good flag to start with would be the -verbose flag.
For example:
$ javap classes/Dummy.class
Compiled from "Dummy.java"
public class Dummy {
public Dummy();
}
Currently we do not take in any command line arguments and flags other than the class file to parse and report on. We also as of #5 have the capability to have the executable not include the code references in the program output.
It would be nice to try to have some flags similar to those provided by
javap
to configure the output of the executable. A good flag to start with would be the-verbose
flag.For example:
The text was updated successfully, but these errors were encountered: