duby
duby copied to clipboard
Accessing nested classes
Accessing nested classes currently tries to call the nested class as a method on the parent, rather than just getting that class.
Current workaround is to import the nested class itself, via this syntax:
import "Child", "com.example.Parent$Child"
And then just use Child.