first commit
This commit is contained in:
32
node_modules/stylelint/lib/utils/parseSelector.cjs
generated
vendored
Normal file
32
node_modules/stylelint/lib/utils/parseSelector.cjs
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// NOTICE: This file is generated by Rollup. To modify it,
|
||||
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
||||
'use strict';
|
||||
|
||||
const selectorParser = require('postcss-selector-parser');
|
||||
|
||||
/**
|
||||
* @param {string} selector
|
||||
* @param {import('stylelint').PostcssResult} result
|
||||
* @param {import('postcss').Node} node
|
||||
* @param {(root: import('postcss-selector-parser').Root) => void} [callback] - Deprecated. It will be removed in the future.
|
||||
* @returns {import('postcss-selector-parser').Root | undefined}
|
||||
*/
|
||||
function parseSelector(selector, result, node, callback) {
|
||||
if (!selector) return undefined;
|
||||
|
||||
try {
|
||||
// TODO: Remove `callback` in the future. See #7647.
|
||||
if (callback) {
|
||||
// @ts-expect-error -- TS2322: Type 'string' is not assignable to type 'Root'.
|
||||
return selectorParser(callback).processSync(selector);
|
||||
}
|
||||
|
||||
return selectorParser().astSync(selector);
|
||||
} catch (err) {
|
||||
result.warn(`Cannot parse selector (${err})`, { node, stylelintType: 'parseError' });
|
||||
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = parseSelector;
|
||||
Reference in New Issue
Block a user