pub(crate) trait LitExt<'ast> {
// Required method
fn is_str_concatenation(&self) -> bool;
}
Required Methods§
fn is_str_concatenation(&self) -> bool
Implementations on Foreign Types§
Source§impl<'ast> LitExt<'ast> for Lit<'ast>
impl<'ast> LitExt<'ast> for Lit<'ast>
Source§fn is_str_concatenation(&self) -> bool
fn is_str_concatenation(&self) -> bool
Checks if a the input literal is a string literal with multiple parts.