mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-27 20:29:39 +02:00
Critical bug fixes and recall improvements (#68)
This commit is contained in:
parent
7d0e7320e2
commit
55247b7fcd
352 changed files with 60069 additions and 900 deletions
|
|
@ -347,6 +347,14 @@ pub struct SsaFuncSummary {
|
|||
/// on both vulnerable and patched code.
|
||||
#[serde(default, skip_serializing_if = "SmallVec::is_empty")]
|
||||
pub validated_params_to_return: SmallVec<[usize; 2]>,
|
||||
|
||||
/// Phase-10 Next.js entry-point classification. Mirrors
|
||||
/// [`crate::summary::FuncSummary::entry_kind`] — recorded on the
|
||||
/// SSA summary so cross-file consumers don't have to consult the
|
||||
/// coarse `FuncSummary` to know whether the callee is an entry
|
||||
/// point. `None` for ordinary helpers.
|
||||
#[serde(default, skip_serializing_if = "Option::is_none")]
|
||||
pub entry_kind: Option<crate::entry_points::EntryKind>,
|
||||
}
|
||||
|
||||
/// A per-return-path [`PathFact`] entry.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue