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

Commit 884d5b0

Browse files
committed
Fixed type error
1 parent e162d76 commit 884d5b0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/org/rascalmpl/core/library/lang/rascalcore/check/Checker.rsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ bool otherModulesWithOutdatedTpls(list[loc] candidates, PathConfig pcfg){
490490
for(loc mloc <- find(srcdir, "rsc")){
491491
mname = getModuleName(mloc, pcfg);
492492
<found, tpl> = getTPLReadLoc(mname, pcfg);
493-
if(found && mname notin candidates && lastModified(mloc) > lastModified(tpl)){
493+
if(found && (mloc notin candidates) && (lastModified(mloc) > lastModified(tpl))){
494494
return true;
495495
}
496496
}

src/org/rascalmpl/core/library/lang/rascalcore/compile/Examples/Tst3.rsc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ tuple[PathConfig, RascalCompilerConfig] testConfigs(loc projectPath) {
1717
);
1818

1919
RascalCompilerConfig ccfg = rascalCompilerConfig(pcfg)
20-
//[forceCompilationTopModule = true]
2120
[verbose = false];
2221

2322
return <pcfg, ccfg>;

0 commit comments

Comments
 (0)