(token)
| 267 | } |
| 268 | |
| 269 | commandBoundary(token) { |
| 270 | if ( |
| 271 | token.value == "end" || |
| 272 | token.value == "then" || |
| 273 | token.value == "else" || |
| 274 | token.value == "otherwise" || |
| 275 | token.value == ")" || |
| 276 | this.commandStart(token) || |
| 277 | this.featureStart(token) || |
| 278 | token.type == "EOF" |
| 279 | ) { |
| 280 | return true; |
| 281 | } |
| 282 | return false; |
| 283 | } |
| 284 | |
| 285 | commandStart(token) { |
| 286 | return this.#kernel.commandStart(token); |
no test coverage detected