1
2
3
4
5
6
7
8
/// A compilation flag.
#[derive(PartialEq, Eq, Debug)]
pub enum Flag {
    /// Whether automatically add `withdraw_gas` calls in code cycles.
    /// Default is true - automatically add.
    AddWithdrawGas(bool),
    NumericMatchOptimizationMinArmsThreshold(usize),
}