Share location between compiler crates

This commit is contained in:
Jeong YunWon 2022-08-22 07:40:15 +09:00
parent c16e650071
commit bfac0355dc
4 changed files with 71 additions and 65 deletions

View file

@ -1,8 +1,10 @@
#![doc(html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/main/logo.png")]
#![doc(html_root_url = "https://docs.rs/rustpython-compiler-core/")]
pub mod bytecode;
mod bytecode;
mod location;
mod mode;
pub use bytecode::*;
pub use location::Location;
pub use mode::Mode;