(token: Token)
| 297 | } |
| 298 | |
| 299 | private processToken(token: Token): Action[] { |
| 300 | switch (token.type) { |
| 301 | case 'text': |
| 302 | return this.processText(token.value) |
| 303 | |
| 304 | case 'sequence': |
| 305 | return this.processSequence(token.value) |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | private processText(text: string): Action[] { |
| 310 | // Handle BEL characters embedded in text |
no test coverage detected