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

Commit

Permalink
Fixed type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Nov 23, 2024
1 parent 087a363 commit 1afca3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import ListRelation;
import util::FileSystem;

bool validateBOMs(PathConfig pcfg){
lastModRSC = ();
lastModTPL = ();
map[str,datetime] lastModRSC = ();
map[str,datetime] lastModTPL = ();
nOudatedTPLs = 0;
for(srcdir <- pcfg.srcs){
for(loc mloc <- find(srcdir, "rsc")){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,5 @@ list[Message] compile(str qualifiedModuleName, RascalCompilerConfig compilerConf
comp_time = (cpuTime() - start_comp)/1000000;
if(compilerConfig.verbose) { println("Compiled ... <qualifiedModuleName> in <comp_time> ms [total]"); }
return ms.messages[qualifiedModuleName] ? [];
return toList(ms.messages[qualifiedModuleName] ? {});
}

0 comments on commit 1afca3e

Please sign in to comment.