only accept DEBUG=true

This commit is contained in:
simon 2024-07-01 18:18:09 +02:00
parent 12466e91f5
commit a7760df684
2 changed files with 2 additions and 4 deletions

View File

@ -90,7 +90,7 @@ public class Compiler {
options.addOption("d", "debug", false, "Enable debug logging");
CommandLineParser parser = new DefaultParser();
CommandLine cmd = null;
CommandLine cmd;
try {
cmd = parser.parse(options, args);
} catch (ParseException e) {

View File

@ -28,8 +28,7 @@ public class MethodContext {
private final Deque<Label> continueLabels = new ArrayDeque<>();
public MethodContext(ClassContext classContext, MethodVisitor mv, Type returnType) {
// if DEBUG env variable is set, log all method calls
if (System.getenv("DEBUG") != null) {
if (Objects.equals(System.getenv("DEBUG"), "true")) {
this.mv = new LoggingMethodVisitor(mv);
} else {
this.mv = mv;
@ -85,7 +84,6 @@ public class MethodContext {
}
public void wrapUp() {
//if return type is void, add return instruction
if (returnType.getKind() == Type.Kind.VOID) {
mv.visitInsn(Opcodes.RETURN);
}