(token: Token)
| 343 | } |
| 344 | |
| 345 | private processToken(token: Token): Action[] { |
| 346 | switch (token.type) { |
| 347 | case 'text': |
| 348 | return this.processText(token.value) |
| 349 | |
| 350 | case 'sequence': |
| 351 | return this.processSequence(token.value) |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | private processText(text: string): Action[] { |
| 356 | // Handle BEL characters embedded in text |
no test coverage detected