blob: 6394b0ed567bb0de24439e6a17bd0bf8c1b9b3b1 [file] [log] [blame]
use std::fmt;
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct JsonNumberLit(pub(crate) String);
impl fmt::Display for JsonNumberLit {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(&self.0, f)
}
}