From 3fc0321064ac73d77a85c0983e3ea9f1f99491c3 Mon Sep 17 00:00:00 2001 From: jochen Date: Thu, 4 Mar 1999 18:01:18 +0000 Subject: [PATCH] added nolvt option git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@297 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/Decompiler.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jode/jode/Decompiler.java b/jode/jode/Decompiler.java index 6ed4a85..89bc81b 100644 --- a/jode/jode/Decompiler.java +++ b/jode/jode/Decompiler.java @@ -40,6 +40,7 @@ public class Decompiler { public static boolean debugInOut = false; public static boolean debugAnalyze = false; public static boolean showLVT = false; + public static boolean useLVT = true; public static boolean doChecks = false; public static boolean prettyLocals = false; public static boolean immediateOutput = false; @@ -54,6 +55,7 @@ public class Decompiler { err.println("use: jode [-v][--dest ]" +"[--imm][--pretty]" +"[--cp ]" + +"[--nolvt]" +"[--import ]" +"[--debug][--analyze][--flow]" +"[--type][--inout][--lvt][--check]" @@ -68,6 +70,8 @@ public class Decompiler { "use `pretty' names for local variables."); err.println("\t--cp "+ "search for classes in specified classpath."); + err.println("\t--nolvt "+ + "don't use the local variable table."); err.println("\t--style {sun|gnu}"+ " specifies indentation style"); err.println("\t--import "); @@ -114,6 +118,8 @@ public class Decompiler { isFlowDebugging = true; else if (params[i].equals("--inout")) debugInOut = true; + else if (params[i].equals("--nolvt")) + useLVT = false; else if (params[i].equals("--lvt")) showLVT = true; else if (params[i].equals("--check"))