diff options
Diffstat (limited to 'lib/compilers/java.ts')
-rw-r--r-- | lib/compilers/java.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compilers/java.ts b/lib/compilers/java.ts index bfcc19e76..5b6dac29e 100644 --- a/lib/compilers/java.ts +++ b/lib/compilers/java.ts @@ -70,6 +70,7 @@ export class JavaCompiler extends BaseCompiler { .filter(f => f.endsWith('.class')) .map(async classFile => { const args = [ + ...this.compiler.objdumperArgs, // Prints out disassembled code, i.e., the instructions that comprise the Java bytecodes, // for each of the methods in the class. '-c', |