(context: MatchMediaContext)
| 337 | constructor(public readonly list: ReadonlyArray<ParsedMediaInParens>) {} |
| 338 | |
| 339 | matches(context: MatchMediaContext) { |
| 340 | return this.list.some((m) => m.matches(context)); |
| 341 | } |
| 342 | |
| 343 | static *Parser() { |
| 344 | const list: Array<ParsedMediaInParens> = []; |