|
| 1 | +//! Yet another version of owned string, backed by a syntax tree token. |
| 2 | +
|
| 3 | +use std::{cmp::Ordering, fmt, ops}; |
| 4 | + |
| 5 | +pub struct TokenText(pub(crate) rowan::GreenToken); |
| 6 | + |
| 7 | +impl TokenText { |
| 8 | + pub fn as_str(&self) -> &str { |
| 9 | + self.0.text() |
| 10 | + } |
| 11 | +} |
| 12 | + |
| 13 | +impl ops::Deref for TokenText { |
| 14 | + type Target = str; |
| 15 | + |
| 16 | + fn deref(&self) -> &str { |
| 17 | + self.as_str() |
| 18 | + } |
| 19 | +} |
| 20 | +impl AsRef<str> for TokenText { |
| 21 | + fn as_ref(&self) -> &str { |
| 22 | + self.as_str() |
| 23 | + } |
| 24 | +} |
| 25 | + |
| 26 | +impl From<TokenText> for String { |
| 27 | + fn from(token_text: TokenText) -> Self { |
| 28 | + token_text.as_str().into() |
| 29 | + } |
| 30 | +} |
| 31 | + |
| 32 | +impl PartialEq<&'_ str> for TokenText { |
| 33 | + fn eq(&self, other: &&str) -> bool { |
| 34 | + self.as_str() == *other |
| 35 | + } |
| 36 | +} |
| 37 | +impl PartialEq<TokenText> for &'_ str { |
| 38 | + fn eq(&self, other: &TokenText) -> bool { |
| 39 | + other == self |
| 40 | + } |
| 41 | +} |
| 42 | +impl PartialEq<String> for TokenText { |
| 43 | + fn eq(&self, other: &String) -> bool { |
| 44 | + self.as_str() == other.as_str() |
| 45 | + } |
| 46 | +} |
| 47 | +impl PartialEq<TokenText> for String { |
| 48 | + fn eq(&self, other: &TokenText) -> bool { |
| 49 | + other == self |
| 50 | + } |
| 51 | +} |
| 52 | +impl PartialEq for TokenText { |
| 53 | + fn eq(&self, other: &TokenText) -> bool { |
| 54 | + self.as_str() == other.as_str() |
| 55 | + } |
| 56 | +} |
| 57 | +impl Eq for TokenText {} |
| 58 | +impl Ord for TokenText { |
| 59 | + fn cmp(&self, other: &Self) -> Ordering { |
| 60 | + self.as_str().cmp(other.as_str()) |
| 61 | + } |
| 62 | +} |
| 63 | +impl PartialOrd for TokenText { |
| 64 | + fn partial_cmp(&self, other: &Self) -> Option<Ordering> { |
| 65 | + Some(self.cmp(other)) |
| 66 | + } |
| 67 | +} |
| 68 | +impl fmt::Display for TokenText { |
| 69 | + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 70 | + fmt::Display::fmt(self.as_str(), f) |
| 71 | + } |
| 72 | +} |
| 73 | +impl fmt::Debug for TokenText { |
| 74 | + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 75 | + fmt::Debug::fmt(self.as_str(), f) |
| 76 | + } |
| 77 | +} |
0 commit comments