Split derive-impl and derive

This commit is contained in:
Noa 2022-12-19 18:48:07 -06:00
parent 5f4309c62c
commit a60c7b2fb2

View file

@ -1,5 +1,4 @@
use rustpython_codegen::{compile, symboltable};
use rustpython_compiler_core::CodeObject;
use rustpython_parser::{
ast::{fold::Fold, ConstantOptimizer},
error::ParseErrorType,
@ -7,6 +6,7 @@ use rustpython_parser::{
};
pub use rustpython_codegen::compile::CompileOpts;
pub use rustpython_compiler_core::CodeObject;
pub use rustpython_compiler_core::{BaseError as CompileErrorBody, Mode};
#[derive(Debug, thiserror::Error)]