1 2 3 4 5 6
/// Internal enum used by the numeric_literal parser #[derive(Debug, PartialEq)] pub(crate) enum Numeric { Integer(isize), Float(f64), }