(token)
| 1282 | return returnArr; |
| 1283 | } |
| 1284 | commandBoundary(token) { |
| 1285 | if (token.value == "end" || token.value == "then" || token.value == "else" || token.value == "otherwise" || token.value == ")" || this.commandStart(token) || this.featureStart(token) || token.type == "EOF") { |
| 1286 | return true; |
| 1287 | } |
| 1288 | return false; |
| 1289 | } |
| 1290 | commandStart(token) { |
| 1291 | return this.#kernel.commandStart(token); |
| 1292 | } |
no test coverage detected