Skip to content

Commit

Permalink
filter out pseudo sets
Browse files Browse the repository at this point in the history
  • Loading branch information
SichangHe committed Feb 1, 2024
1 parent e07bb08 commit 8f0f00c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ fn object_referred_in_rules(query: QueryIr) {
as_set_list: query
.as_sets
.par_keys()
.filter(|name| !name.contains('#'))
.map(|name| (name.clone(), Appearance::recorded()))
.collect(),
rs_list: query
Expand Down

0 comments on commit 8f0f00c

Please sign in to comment.