Struct budvm::lexer_util::StringLiteral
source · pub struct StringLiteral {
pub contents: String,
pub end_quote_offset: usize,
}Expand description
The result of decoding a string literal’s contents.
Fields§
§contents: StringThe decoded contents of the literal.
end_quote_offset: usizeThe offset of the end quote in the original string.