2019-04-11 15:23:14 -07:00
|
|
|
use crate::common::*;
|
2017-11-16 23:30:08 -08:00
|
|
|
|
2021-06-08 01:01:27 -07:00
|
|
|
#[derive(PartialEq, Debug, Clone)]
|
2019-11-07 10:55:15 -08:00
|
|
|
pub(crate) struct StringLiteral<'src> {
|
2021-04-05 21:28:37 -07:00
|
|
|
pub(crate) kind: StringKind,
|
2020-02-10 20:07:06 -08:00
|
|
|
pub(crate) raw: &'src str,
|
2021-04-05 21:28:37 -07:00
|
|
|
pub(crate) cooked: String,
|
2017-11-16 23:30:08 -08:00
|
|
|
}
|
|
|
|
|
2019-11-07 10:55:15 -08:00
|
|
|
impl Display for StringLiteral<'_> {
|
2019-04-11 23:58:08 -07:00
|
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
2021-04-05 21:28:37 -07:00
|
|
|
write!(
|
|
|
|
f,
|
|
|
|
"{}{}{}",
|
|
|
|
self.kind.delimiter(),
|
|
|
|
self.raw,
|
|
|
|
self.kind.delimiter()
|
|
|
|
)
|
2019-04-11 23:58:08 -07:00
|
|
|
}
|
|
|
|
}
|