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