File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
crates/biome_css_parser/src/syntax/selector/pseudo_class Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,7 @@ use biome_parser::{Parser, SyntaxFeature};
1818
1919/// Checks if the current parser position is at a pseudo-class function selector for CSS Modules and SFC Vue.
2020///
21- /// This function determines if the parser is currently positioned at the start of a
22- /// `:local`, `:global`, `:slotted` or `:deep`
23- /// pseudo-class function selector, which is part of the CSS Modules syntax.
21+ /// This function determines if the parser is currently positioned at the start of a `:local` or `:global`.
2422#[ inline]
2523pub ( crate ) fn is_at_pseudo_class_function_selector ( p : & mut CssParser ) -> bool {
2624 p. at_ts ( CSS_MODULES_SCOPE_SET ) && p. nth_at ( 1 , T ! [ '(' ] )
You can’t perform that action at this time.
0 commit comments