duby icon indicating copy to clipboard operation
duby copied to clipboard

Accessing nested classes

Open vito opened this issue 15 years ago • 0 comments

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.

vito avatar Apr 14 '10 20:04 vito