The emit_pts_alias_edges function in crates/codegraph-core/src/domain/graph/builder/stages/build_edges.rs currently takes 14 parameters and is suppressed with #[allow(clippy::too_many_arguments)]. This is a follow-up to PR #1465 (pts solver port).
Proposal: group the parameters into a logical struct (e.g. PtsAliasCtx) to clean up the suppression.
Related: PR #1465 review.
The
emit_pts_alias_edgesfunction incrates/codegraph-core/src/domain/graph/builder/stages/build_edges.rscurrently takes 14 parameters and is suppressed with#[allow(clippy::too_many_arguments)]. This is a follow-up to PR #1465 (pts solver port).Proposal: group the parameters into a logical struct (e.g.
PtsAliasCtx) to clean up the suppression.Related: PR #1465 review.