(parser)
| 6006 | return rv; |
| 6007 | } |
| 6008 | static parseSource(parser) { |
| 6009 | if (!parser.matchAnyToken("of", "from")) { |
| 6010 | parser.raiseExpected("of", "from"); |
| 6011 | } |
| 6012 | return parser.requireElement("expression"); |
| 6013 | } |
| 6014 | static parse(parser) { |
| 6015 | if (!parser.matchToken("pick")) return; |
| 6016 | parser.matchToken("the"); |
no test coverage detected