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 importer; pub mod converter; pub use ast::GoAst; pub use importer::{PackageImporter, ImportResult}; pub use converter::TypeConverter;