// look for definitions within the current project code itself
ASVisitor visitor = new ASVisitor.Null() {
public void visit(ASPackage pkg) {
// TODO: will need to look for other top-level
// elements, once metaas has support for them
ASType type = pkg.getType();
ASQName name = new ASQName(pkg.getName(), type.getName());
visibleQNames.add(name);
if (seenLocalNames.contains(name.getLocalName())) {
possiblyAmbigLocalNames.add(name.getLocalName());
} else {
seenLocalNames.add(name.getLocalName());