I'm designing a compiler by hand (don't ask).
A source file for this new language can import a class T in package P that it wishes to use with
import P.T;
or it can use import-on-demand access to all classes in package P using the statement
import P.*;
An identifier appearing in a ClassType declaration (i.e. the identifier MyClass in the declaration MyClass x = ... ) is resolved by the following rules:
- it can be a class declared in the current package
- it can be an explicitly imported class
- it can be an implicitly imported class (import on demand)
I don't know how real compilers handle this situation. I'm looking for a way to implement identification for ClassTypes in miniJava programs with import statements.