1 2 3 4 5 6 7 8 9 10 11
//! Go parser integration //! //! Parses Go source code and populates the type universe. pub mod ast; pub mod converter; pub mod importer; pub use ast::GoAst; pub use converter::TypeConverter; pub use importer::{ImportResult, PackageImporter};