// Next check if the base is an imported class
if (this.children[0] instanceof AstIdentifier) {
String name = ((AstIdentifier) this.children[0]).image;
ImportHandler importHandler = ctx.getImportHandler();
if (importHandler != null) {
Class<?> c = importHandler.resolveClass(name);
if (c != null) {
return new ELClass(c);
}
}
}