(parser)
| 422 | } |
| 423 | |
| 424 | static parseSource(parser) { |
| 425 | if (!parser.matchAnyToken("of", "from")) { |
| 426 | parser.raiseExpected('of', 'from'); |
| 427 | } |
| 428 | return parser.requireElement("expression"); |
| 429 | } |
| 430 | |
| 431 | static parse(parser) { |
| 432 | if (!parser.matchToken("pick")) return; |
no test coverage detected