(parser)
| 5664 | return rv; |
| 5665 | } |
| 5666 | static parseSource(parser) { |
| 5667 | if (!parser.matchAnyToken("of", "from")) { |
| 5668 | parser.raiseExpected("of", "from"); |
| 5669 | } |
| 5670 | return parser.requireElement("expression"); |
| 5671 | } |
| 5672 | static parse(parser) { |
| 5673 | if (!parser.matchToken("pick")) return; |
| 5674 | parser.matchToken("the"); |
no test coverage detected