Skip to content

Commit

Permalink
Exclude locations in messages from conversion to logical locations
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulKlint committed Oct 16, 2024
1 parent e810dfb commit ef23231
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/analysis/typepal/Collector.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ TModel convertLocs(TModel tm, map[loc,loc] locMap){
tm.facts = visit(tm.facts){ case loc l => locMap[l] ? l };
tm.specializedFacts = visit(tm.specializedFacts){ case loc l => locMap[l] ? l };
tm.useDef = { < locMap[f] ? f, locMap[t] ? t > | <f, t> <- tm.useDef };
tm.messages = visit(tm.messages){ case loc l => locMap[l] ? l };
//tm.messages = visit(tm.messages){ case loc l => locMap[l] ? l };
tm.store = visit(tm.store){ case loc l => locMap[l] ? l };
tm.config = visit(tm.config){ case loc l => locMap[l] ? l };
return tm;
Expand Down

0 comments on commit ef23231

Please sign in to comment.