(obj: RTTConsoleDecoderOpts)
| 178 | } |
| 179 | |
| 180 | private sanitizeEncodings(obj: RTTConsoleDecoderOpts) { |
| 181 | obj.encoding = getBinaryEncoding(obj.encoding); |
| 182 | obj.iencoding = getTextEncoding(obj.iencoding); |
| 183 | } |
| 184 | |
| 185 | // If all goes well, this will reset the terminal options. Label for the VSCode terminal has to match |
| 186 | // since there no way to rename it. If successful, tt will reset the Terminal options and mark it as |
no test coverage detected