Skip to content

Commit

Permalink
Workaround for usethesource/rascal#2045
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurrump committed Oct 9, 2024
1 parent bf37f1e commit fa275e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/rascal/graph/CallEnvironment.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import graph::control::flow::CFConnector;
private set[loc] projectMethods;
// The set of all the methods that are called by the currently
// analysed method.
private set[loc] calledMethods;
private set[int] callSites;
private set[loc] calledMethods = {};
private set[int] callSites = {};

public void initializeCallEnvironment(M3 projectModel) {
projectMethods = methods(projectModel);
Expand Down

0 comments on commit fa275e2

Please sign in to comment.