(token)
| 1272 | return returnArr; |
| 1273 | } |
| 1274 | commandBoundary(token) { |
| 1275 | if (token.value == "end" || token.value == "then" || token.value == "else" || token.value == "otherwise" || token.value == ")" || this.commandStart(token) || this.featureStart(token) || token.type == "EOF") { |
| 1276 | return true; |
| 1277 | } |
| 1278 | return false; |
| 1279 | } |
| 1280 | commandStart(token) { |
| 1281 | return this.#kernel.commandStart(token); |
| 1282 | } |
no test coverage detected