sqry_classpath/stub/mod.rs
1//! Stub data model for parsed bytecode.
2//!
3//! Defines the intermediate representation produced by bytecode parsing:
4//! `ClassStub`, `MethodStub`, `FieldStub`, `AnnotationStub`, and associated types.
5//! These stubs are cached per-JAR and merged into the `ClasspathIndex`.
6
7pub mod cache;
8pub mod index;
9pub mod model;