Skip to content

Commit

Permalink
Awesome oneliner fix: now XSD works smoothly as well
Browse files Browse the repository at this point in the history
  • Loading branch information
grammarware committed Jul 5, 2012
1 parent a41b3f3 commit 9c19872
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shared/rascal/src/converge/PureGuided.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ tuple[NameMatch,BGFProdList,BGFProdList]
}
truenm = {};
for (<a,b> <- nm-known)
if (a==b)
if ((a==b) && a in domain(known))
println("Reconfirmed <a>");
else
{
Expand Down Expand Up @@ -121,7 +121,7 @@ tuple[NameMatch,BGFProdList,BGFProdList]
}
truenm = {};
for (<a,b> <- nm-known)
if (a==b)
if ((a==b) && a in domain(known))
println("Reconfirmed <a>");
else
{
Expand Down

0 comments on commit 9c19872

Please sign in to comment.