//! Bytecode emission from compiled queries.
//!
//! Converts the compiled IR into the binary bytecode format. This module handles:
//! - String table construction and interning
//! - Type table building with field resolution
//! - Cache-aligned instruction layout
//! - Section assembly and header generation
pub use emit;
pub use EmitError;
pub use ;
pub use StringTableBuilder;
pub use TypeTableBuilder;