Skip to content

Instruction "new" doesn't work for classes with empty package #59

Open
@kmatveev

Description

@kmatveev

Here is a minimal self-contained example. If we have a following class:

public class Test {
  public static void main(String[] args) {
    Test test = new Test();
  }
}

After a compilation and disassembly there will be a following JASM code:

public class Test {
    public <init>()V {
        label0:
        aload 0
        invokespecial java/lang/Object.<init>()V
        return
    }

    public static main([java/lang/String)V {
        label0:
        new Test
        dup
        invokespecial Test.<init>()V
        astore 1
        
        label1:
        return
    }

}

An attempt to assembly this code will fail with

Test.jasm : Cannot invoke "org.antlr.v4.runtime.tree.TerminalNode.getText()" because the return value of "com.roscopeco.jasm.antlr.JasmParser$Insn_newContext.QNAME()" is null

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions