Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -476,6 +476,7 @@ tuple[TModel, ModuleStatus] rascalTModelComponent(set[MODID] moduleIds, ModuleSt
// ms.messages[mid] += error("Cannot get parse tree for module `<mid>`", ms.moduleLocs[mid]);
//}
}

if(!isEmpty(idTrees)){
if(compilerConfig.verbose) { println("Checking ... <modelName>"); }

Expand Down
5 changes: 4 additions & 1 deletion src/org/rascalmpl/compiler/lang/rascalcore/check/Import.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ ModuleStatus reportCycles(rel[MODID, PathRole, MODID]paths, rel[MODID,MODID] ext
//- by checking circular dependencies
// TODO: reuse enhancePathRelation from RascalConfig here
ModuleStatus completeModuleStatus(ModuleStatus ms){
paths = ms.paths;
pcfg = ms.pathConfig;
paths = visit(ms.paths){
case loc mloc => moduleName2moduleId(getRascalModuleName(mloc, pcfg)) when !isModuleId(mloc)
};

ms = reportSelfImport(paths, ms);

Expand Down
Loading