rustfmt
This commit is contained in:
parent
e6120a0f59
commit
a4cd8ae02c
@ -38,7 +38,9 @@ impl Add for Value {
|
||||
Self::Ident(s, QuoteKind::Double) | Self::Ident(s, QuoteKind::Single) => {
|
||||
Value::Ident(format!("{}{}", c, s), QuoteKind::Double)
|
||||
}
|
||||
Self::Ident(s, QuoteKind::None) => Value::Ident(format!("{}{}", c, s), QuoteKind::None),
|
||||
Self::Ident(s, QuoteKind::None) => {
|
||||
Value::Ident(format!("{}{}", c, s), QuoteKind::None)
|
||||
}
|
||||
Self::Null => Value::Ident(c.to_string(), QuoteKind::None),
|
||||
_ => return Err(format!("Undefined operation \"{} + {}\".", c, other).into()),
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user