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
417 changes: 11 additions & 406 deletions crates/plotnik-lib/src/analyze/dependencies.rs

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions crates/plotnik-lib/src/analyze/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
pub mod dependencies;
mod invariants;
pub mod link;
mod recursion;
pub mod refs;
pub mod symbol_table;
pub mod type_check;
Expand All @@ -26,6 +27,7 @@ mod symbol_table_tests;

pub use dependencies::DependencyAnalysis;
pub use link::LinkOutput;
pub use recursion::validate_recursion;
pub use symbol_table::{SymbolTable, UNNAMED_DEF};
pub use type_check::{TypeContext, infer_types, primary_def_name};
pub use validation::{validate_alt_kinds, validate_anchors};
Expand Down
Loading