1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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;