(result: string)
| 116 | } |
| 117 | |
| 118 | private addResult(result: string) { |
| 119 | if (this.results[this.position] === undefined) { |
| 120 | this.results[this.position] = result; |
| 121 | } else { |
| 122 | this.results[this.position] += result; |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | private handleEscapeCharacter() { |
| 127 | if (this.rest.length < 2) { |
no outgoing calls
no test coverage detected