We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecff925 commit 1f23ce5Copy full SHA for 1f23ce5
packages/svelte/src/compiler/phases/2-analyze/css/Selector.js
@@ -152,13 +152,13 @@ export default class Selector {
152
153
/** @param {import('../../types.js').ComponentAnalysis} analysis */
154
validate(analysis) {
155
- this.validate_invalid_css_global_placement();
+ this.validate_global_placement();
156
this.validate_global_with_multiple_selectors();
157
this.validate_global_compound_selector();
158
this.validate_invalid_combinator_without_selector(analysis);
159
}
160
161
- validate_invalid_css_global_placement() {
+ validate_global_placement() {
162
for (let complex_selector of this.selector_list) {
163
let start = 0;
164
let end = complex_selector.length;
0 commit comments