refactor(ast): put assert_layouts.rs behind debug_assertions (#4621)

#4615 was showing as green on all checks, but failed CI on main once merged because of errors in "Test wasm32-wasip1-threads" job, which only runs on main. This change will make sure any such problem gets caught at the PR stage in future.
This commit is contained in:
rzvxa 2024-08-03 15:25:02 +00:00
parent 61e8b8c6c5
commit ba7000107e

View file

@ -37,7 +37,7 @@ pub mod syntax_directed_operations;
mod trivia;
mod generated {
#[cfg(test)]
#[cfg(debug_assertions)]
pub mod assert_layouts;
pub mod ast_builder;
pub mod ast_kind;