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