| 153 | } |
| 154 | |
| 155 | pub struct TokenIter { |
| 156 | pub toks: Vec<Token>, |
| 157 | pub ranges: Vec<u128>, |
| 158 | indices: Vec<usize>, |
| 159 | preallocated_string: String, |
| 160 | pub current_index: u128, |
| 161 | pub end_index: u128, |
| 162 | } |
| 163 | |
| 164 | impl Display for TokenIter { |
| 165 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected