read_fonts/tables/glyf/bytecode.rs
1//! TrueType hinting bytecode.
2
3mod decode;
4mod instruction;
5mod opcode;
6
7pub use decode::{decode_all, DecodeError, Decoder};
8pub use instruction::{InlineOperands, Instruction};
9pub use opcode::Opcode;
10
11// Exported publicly for use by skrifa when the scaler_test feature is
12// enabled.
13#[cfg(any(test, feature = "scaler_test"))]
14pub use instruction::MockInlineOperands;