feat(ssa): optimize branch condition handling via constant folding, enhance precision for taint analysis, and expand OWASP Benchmark support

This commit is contained in:
elipeter 2026-06-02 13:41:45 -05:00
parent ec76c9e08f
commit 9c99f6c6a9
22 changed files with 1020 additions and 17 deletions

View file

@ -1202,6 +1202,8 @@ fn type_kind_tag(k: &TypeKind) -> String {
TypeKind::GormDb => "GormDb".into(),
TypeKind::SqlxDb => "SqlxDb".into(),
TypeKind::HibernateSession => "HibernateSession".into(),
TypeKind::ProcessBuilder => "ProcessBuilder".into(),
TypeKind::Runtime => "Runtime".into(),
}
}