Object ret = super.visitImportFrom(node);
//the import from will generate the tokens that go into the module namespace, but still, it needs to
//create tokens that will not be used in code-analysis, but will be used in matching tokens
//regarding its module.
NameTok tokModName = (NameTok) node.module;
for (String m : new FullRepIterable(tokModName.id)) {
if (m.indexOf(".") == -1) {
aliasType[] names = new aliasType[1];
NameTok importNameTok = new NameTok(m, NameTok.ImportModule);
importNameTok.beginLine = tokModName.beginLine;