Example #1
0
        public static string print(Bytecode decomp, bool interp)
        {
            PrettyPrinter printer = new PrettyPrinter();

            printer.interp      = interp;
            printer.indentLevel = 0;
            decomp.dump(printer);
            return(printer.dump);
        }