This commit is contained in:
2023-08-11 10:45:20 +08:00
commit 161ca982f3
31850 changed files with 2706500 additions and 0 deletions

View File

@ -0,0 +1,9 @@
var DISALLOW_OF_CLAUSE = false;
module.exports = {
parse: function nth() {
return this.createSingleNodeList(
this.Nth(DISALLOW_OF_CLAUSE)
);
}
};

View File

@ -0,0 +1,9 @@
var ALLOW_OF_CLAUSE = true;
module.exports = {
parse: function nthWithOfClause() {
return this.createSingleNodeList(
this.Nth(ALLOW_OF_CLAUSE)
);
}
};

View File

@ -0,0 +1,7 @@
module.exports = {
parse: function selectorList() {
return this.createSingleNodeList(
this.SelectorList()
);
}
};

7
node_modules/css-tree/lib/syntax/pseudo/dir.js generated vendored Normal file
View File

@ -0,0 +1,7 @@
module.exports = {
parse: function() {
return this.createSingleNodeList(
this.Identifier()
);
}
};

7
node_modules/css-tree/lib/syntax/pseudo/has.js generated vendored Normal file
View File

@ -0,0 +1,7 @@
module.exports = {
parse: function() {
return this.createSingleNodeList(
this.SelectorList()
);
}
};

12
node_modules/css-tree/lib/syntax/pseudo/index.js generated vendored Normal file
View File

@ -0,0 +1,12 @@
module.exports = {
'dir': require('./dir'),
'has': require('./has'),
'lang': require('./lang'),
'matches': require('./matches'),
'not': require('./not'),
'nth-child': require('./nth-child'),
'nth-last-child': require('./nth-last-child'),
'nth-last-of-type': require('./nth-last-of-type'),
'nth-of-type': require('./nth-of-type'),
'slotted': require('./slotted')
};

7
node_modules/css-tree/lib/syntax/pseudo/lang.js generated vendored Normal file
View File

@ -0,0 +1,7 @@
module.exports = {
parse: function() {
return this.createSingleNodeList(
this.Identifier()
);
}
};

1
node_modules/css-tree/lib/syntax/pseudo/matches.js generated vendored Normal file
View File

@ -0,0 +1 @@
module.exports = require('./common/selectorList');

1
node_modules/css-tree/lib/syntax/pseudo/not.js generated vendored Normal file
View File

@ -0,0 +1 @@
module.exports = require('./common/selectorList');

1
node_modules/css-tree/lib/syntax/pseudo/nth-child.js generated vendored Normal file
View File

@ -0,0 +1 @@
module.exports = require('./common/nthWithOfClause');

View File

@ -0,0 +1 @@
module.exports = require('./common/nthWithOfClause');

View File

@ -0,0 +1 @@
module.exports = require('./common/nth');

View File

@ -0,0 +1 @@
module.exports = require('./common/nth');

7
node_modules/css-tree/lib/syntax/pseudo/slotted.js generated vendored Normal file
View File

@ -0,0 +1,7 @@
module.exports = {
parse: function compoundSelector() {
return this.createSingleNodeList(
this.Selector()
);
}
};