Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit

Permalink
Removed debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Dec 13, 2024
1 parent d725379 commit a50fccc
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,6 @@ str getModuleName(loc moduleLoc, PathConfig pcfg){
if(!( rscFile || tplFile )){
throw "Not a Rascal .src or .tpl file: <moduleLoc>";
}

if(contains(modulePath, "Content")){
println("Content");
}

// Find matching .rsc file in source directories
if(rscFile){
Expand Down Expand Up @@ -158,10 +154,6 @@ str getModuleName(loc moduleLoc, PathConfig pcfg){
for(loc file <- find(dir, "tpl")){
candidate = replaceFirst(file.path, dpath, "");
<candidate, ext> = splitFileExtension(candidate);

if(contains(candidate, "Content")){
println("Content");
}
while(candidate[0] == "/"){
candidate = candidate[1..];
}
Expand Down Expand Up @@ -461,9 +453,6 @@ ModuleStatus clearTModelCache(ModuleStatus ms){
todo -= candidate;
}
for(candidate <- todo){
// if(candidate == "analysis::grammar::Ambiguity"){
// println("clearTModelCache");
// }
ms = removeTModel(candidate, ms, updateBOMneeded=true);
ms.status[candidate] -= bom_update_needed();
}
Expand Down

0 comments on commit a50fccc

Please sign in to comment.