Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions crates/fbuild-header-scan/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@
mod scanner;
mod walker;

pub use scanner::{IncludeKind, IncludeRef, Span, active_defines, scan, scan_active};
pub use scanner::{
IncludeKind, IncludeRef, Span, active_defines, defined_macro_names, scan, scan_active,
scan_active_with_known,
};
pub use walker::{
WalkResult, WalkState, walk, walk_active, walk_with_state, walk_with_state_active,
WalkResult, WalkState, collect_defined_macro_names, walk, walk_active, walk_with_state,
walk_with_state_active, walk_with_state_active_known,
};

/// Bumped whenever the scanner output shape changes. Mixed into cache keys so a
Expand Down
677 changes: 284 additions & 393 deletions crates/fbuild-header-scan/src/scanner.rs

Large diffs are not rendered by default.

Loading
Loading