(parser)
| 404 | } |
| 405 | |
| 406 | #syncToFeature(parser) { |
| 407 | parser.tokens.clearFollows(); |
| 408 | while (parser.hasMore() && |
| 409 | !parser.featureStart(parser.currentToken()) && |
| 410 | parser.currentToken().value !== "end" && |
| 411 | parser.currentToken().type !== "EOF") { |
| 412 | parser.tokens.consumeToken(); |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | #syncToCommand(parser) { |
| 417 | parser.tokens.clearFollows(); |
no test coverage detected