chromium/third_party/rust/chromium_crates_io/vendor/read-fonts-0.20.0/src/tables/glyf/bytecode.rs

//! TrueType hinting bytecode.

mod decode;
mod instruction;
mod opcode;

pub use decode::{decode_all, DecodeError, Decoder};
pub use instruction::{InlineOperands, Instruction};
pub use opcode::Opcode;

// Exported publicly for use by skrifa when the scaler_test feature is
// enabled.
#[cfg(any(test, feature = "scaler_test"))]
pub use instruction::MockInlineOperands;