(&mut self, chars: Vec<u8>)
| 118 | } |
| 119 | |
| 120 | pub fn append_char_vars(&mut self, chars: Vec<u8>) { |
| 121 | for char in chars { |
| 122 | self.append_char_var(char); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | fn append_uchar_var(&mut self, char: u8) { |
| 127 | let var = format!( |
nothing calls this directly
no test coverage detected