* Parse an event selector string. * Returns an array of event stream definitions.
(selector, source, marks)
| 150013 | * Parse an event selector string. |
| 150014 | * Returns an array of event stream definitions. |
| 150015 | */ function eventSelector(selector, source, marks) { |
| 150016 | DEFAULT_SOURCE = source || VIEW; |
| 150017 | MARKS = marks || DEFAULT_MARKS; |
| 150018 | return parseMerge(selector.trim()).map(parseSelector); |
| 150019 | } |
| 150020 | function isMarkType(type) { |
| 150021 | return MARKS[type]; |
| 150022 | } |
nothing calls this directly
no test coverage detected