(self)
| 56 | |
| 57 | #[inline] |
| 58 | pub(crate) const fn middle_token(self) -> TokenKind { |
| 59 | match self { |
| 60 | InterpolatedStringKind::FString => TokenKind::FStringMiddle, |
| 61 | InterpolatedStringKind::TString => TokenKind::TStringMiddle, |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | #[inline] |
| 66 | pub(crate) const fn end_token(self) -> TokenKind { |
no outgoing calls
no test coverage detected