diff --git a/src/compile.rs b/src/compile.rs index 09897d8..91781a2 100644 --- a/src/compile.rs +++ b/src/compile.rs @@ -2,8 +2,8 @@ //! Take an AST and transform it into bytecode //! //! Inspirational code: -//! https://github.com/python/cpython/blob/main/Python/compile.c -//! https://github.com/micropython/micropython/blob/master/py/compile.c +//! +//! use crate::ir::{self, CodeInfo}; pub use crate::mode::Mode;