cairo_lang_filesystem/flag.rs
/// A compilation flag.
#[derive(PartialEq, Eq, Debug)]
pub enum Flag {
/// Whether automatically add `withdraw_gas` calls in code cycles.
/// Default is true - automatically add.
///
/// Additionally controls addition of `redeposit_gas` which happens on default.
AddWithdrawGas(bool),
NumericMatchOptimizationMinArmsThreshold(usize),
}