fix: not #cfg

This commit is contained in:
Mathieu Lala 2022-12-30 20:45:26 +01:00
parent c5002801c8
commit af2e331b0f
No known key found for this signature in database
GPG Key ID: C5D308ABEB84866F

View File

@ -214,7 +214,7 @@ type InclusiveRange = std::ops::RangeInclusive<INT>;
pub use api::build_type::{CustomType, TypeBuilder};
#[cfg(not(feature = "no_custom_syntax"))]
pub use api::custom_syntax::Expression;
#[cfg(all(not(feature = "no_std"), target_family = "wasm"))]
#[cfg(all(not(feature = "no_std"), not(target_family = "wasm")))]
pub use api::files::{eval_file, run_file};
pub use api::{eval::eval, events::VarDefInfo, run::run};
pub use ast::{FnAccess, AST};