mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-12 19:55:14 +02:00
docs: Enhance module documentation across various files for clarity a… (#62)
* docs: Enhance module documentation across various files for clarity and completeness * fix: Remove unnecessary blank line in build.rs for cleaner code * docs: Update documentation to improve clarity and consistency in code comments
This commit is contained in:
parent
40995e45e7
commit
1f2bfe76c1
44 changed files with 721 additions and 366 deletions
|
|
@ -1,3 +1,13 @@
|
|||
//! Explicit cross-language call-graph bridge edges.
|
||||
//!
|
||||
//! Without an [`InteropEdge`], the call graph resolver never attempts
|
||||
//! cross-language resolution. This prevents false positives from functions
|
||||
//! in different languages that happen to share a name.
|
||||
//!
|
||||
//! An [`InteropEdge`] maps a [`CallSiteKey`] (caller language, file, function,
|
||||
//! callee symbol, call ordinal) to a [`FuncKey`] in another language. Ordinal
|
||||
//! `0` acts as a wildcard matching any call of that name from the given caller.
|
||||
|
||||
use crate::symbol::{FuncKey, Lang};
|
||||
|
||||
/// Identifies a specific call site within a caller function.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue