layout: Split LineItem layout into a new file (#31039)

This is just a bit of code movement that trims down the size of the
`inline.rs` file in order to make it a bit more manageable. It leads the
way to more refactoring and cleanup in the future.
This commit is contained in:
Martin Robinson 2024-01-10 06:42:11 +01:00 committed by GitHub
parent bfa853a1cc
commit 3555671864
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 658 additions and 603 deletions

View file

@ -36,6 +36,7 @@ use crate::ContainingBlock;
mod construct;
pub mod float;
pub mod inline;
mod line;
mod root;
pub(crate) use construct::BlockContainerBuilder;