Skip to content

Commit d8c92e2

Browse files
committed
Fix error
1 parent ea677b2 commit d8c92e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/org/rascalmpl/compiler/lang/rascalcore/compile

src/org/rascalmpl/compiler/lang/rascalcore/compile/Compile.rsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ list[Message] compile1(MODID moduleId, lang::rascal::\syntax::Rascal::Module M,
9090
imports = { imp | <m1, importPath(), imp> <- ms.paths, m1 == moduleId };
9191
extends = { ext | <m1, extendPath(), ext > <- ms.paths, m1 == moduleId };
9292
tmodels = ();
93-
for(m <- imports + extends, hasProperty(m, ms, tpl_uptodate()){
93+
for(m <- imports + extends, hasProperty(m, ms, tpl_uptodate())){
9494
if(m in transient_tms){
9595
tmodels[m] = transient_tms[m];
9696
} else {

0 commit comments

Comments
 (0)