You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
628 B
35 lines
628 B
2 years ago
|
import { Comma } from '../../tokenizer/index.js';
|
||
|
|
||
|
export const name = 'MediaQueryList';
|
||
|
export const structure = {
|
||
|
children: [[
|
||
|
'MediaQuery'
|
||
|
]]
|
||
|
};
|
||
|
|
||
|
export function parse() {
|
||
|
const children = this.createList();
|
||
|
|
||
|
this.skipSC();
|
||
|
|
||
|
while (!this.eof) {
|
||
|
children.push(this.MediaQuery());
|
||
|
|
||
|
if (this.tokenType !== Comma) {
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
this.next();
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
type: 'MediaQueryList',
|
||
|
loc: this.getLocationFromList(children),
|
||
|
children
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export function generate(node) {
|
||
|
this.children(node, () => this.token(Comma, ','));
|
||
|
}
|