refactor(css/ast): Rename StyleRule to QualifiedRule (#2756)

This commit is contained in:
Alexander Akait 2021-11-18 00:27:39 +03:00 committed by GitHub
parent e5604c3e56
commit c50cec1533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
681 changed files with 1719 additions and 1719 deletions

View File

@ -19,14 +19,14 @@ pub struct Stylesheet {
#[ast_node] #[ast_node]
#[derive(Is)] #[derive(Is)]
pub enum Rule { pub enum Rule {
#[tag("StyleRule")] #[tag("QualifiedRule")]
Style(StyleRule), QualifiedRule(QualifiedRule),
#[tag("Tokens")]
Invalid(Tokens),
#[tag("*")] #[tag("*")]
AtRule(AtRule), AtRule(AtRule),
#[tag("Tokens")]
Invalid(Tokens),
} }
#[ast_node] #[ast_node]

View File

@ -1,10 +1,10 @@
use crate::{Ident, SelectorList, Tokens, Value}; use crate::{Ident, SelectorList, Tokens, Value};
use swc_common::{ast_node, Span}; use swc_common::{ast_node, Span};
#[ast_node("StyleRule")] #[ast_node("QualifiedRule")]
pub struct StyleRule { pub struct QualifiedRule {
pub span: Span, pub span: Span,
pub selectors: SelectorList, pub prelude: SelectorList,
pub block: Block, pub block: Block,
} }

View File

@ -47,15 +47,15 @@ where
#[emitter] #[emitter]
fn emit_rule(&mut self, n: &Rule) -> Result { fn emit_rule(&mut self, n: &Rule) -> Result {
match n { match n {
Rule::Style(n) => emit!(self, n), Rule::QualifiedRule(n) => emit!(self, n),
Rule::AtRule(n) => emit!(self, n), Rule::AtRule(n) => emit!(self, n),
Rule::Invalid(n) => emit!(self, n), Rule::Invalid(n) => emit!(self, n),
} }
} }
#[emitter] #[emitter]
fn emit_style_rule(&mut self, n: &StyleRule) -> Result { fn emit_qualified_rule(&mut self, n: &QualifiedRule) -> Result {
emit!(self, n.selectors); emit!(self, n.prelude);
space!(self); space!(self);
emit!(self, n.block); emit!(self, n.block);
} }

View File

@ -47,8 +47,8 @@ where
let start_pos = self.input.cur_span()?.lo; let start_pos = self.input.cur_span()?.lo;
let start_state = self.input.state(); let start_state = self.input.state();
let selectors = self.parse_selectors(); let prelude = self.parse_selectors();
let selectors = match selectors { let prelude = match prelude {
Ok(v) => v, Ok(v) => v,
Err(err) => { Err(err) => {
self.input.skip_ws()?; self.input.skip_ws()?;
@ -74,9 +74,9 @@ where
let block = self.parse_simple_block()?; let block = self.parse_simple_block()?;
let span = span!(self, start_pos); let span = span!(self, start_pos);
Ok(Rule::Style(StyleRule { Ok(Rule::QualifiedRule(QualifiedRule {
span, span,
selectors, prelude,
block, block,
})) }))
} }

View File

@ -343,7 +343,7 @@ impl Visit for SpanVisualizer<'_> {
mtd!(PseudoSelector, visit_pseudo_selector); mtd!(PseudoSelector, visit_pseudo_selector);
mtd!(Rule, visit_rule); mtd!(Rule, visit_rule);
mtd!(Str, visit_str); mtd!(Str, visit_str);
mtd!(StyleRule, visit_style_rule); mtd!(QualifiedRule, visit_qualified_rule);
mtd!(Stylesheet, visit_stylesheet); mtd!(Stylesheet, visit_stylesheet);
mtd!(SelectorList, visit_selector_list); mtd!(SelectorList, visit_selector_list);
mtd!(SubclassSelector, visit_subclass_selector); mtd!(SubclassSelector, visit_subclass_selector);

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 21, "end": 21,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -14,7 +14,7 @@ error: Rule
3 | | } 3 | | }
| |_^ | |_^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/bom/input.css:1:1 --> $DIR/tests/fixture/bom/input.css:1:1
| |
1 | / a { 1 | / a {

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 13, "start": 13,
"end": 94, "end": 94,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 13, "start": 13,
@ -105,13 +105,13 @@
} }
}, },
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 132, "start": 132,
"end": 227, "end": 227,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 132, "start": 132,
@ -234,13 +234,13 @@
} }
}, },
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 237, "start": 237,
"end": 272, "end": 272,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 237, "start": 237,

View File

@ -21,7 +21,7 @@ error: Rule
4 | | } 4 | | }
| |_^ | |_^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/comment/input.css:1:14 --> $DIR/tests/fixture/comment/input.css:1:14
| |
1 | /* comment */a/* comment */ 1 | /* comment */a/* comment */
@ -105,7 +105,7 @@ error: Rule
15 | | } 15 | | }
| |_^ | |_^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/comment/input.css:9:1 --> $DIR/tests/fixture/comment/input.css:9:1
| |
9 | / div { 9 | / div {
@ -217,7 +217,7 @@ error: Rule
21 | | } 21 | | }
| |_^ | |_^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/comment/input.css:18:1 --> $DIR/tests/fixture/comment/input.css:18:1
| |
18 | / a { 18 | / a {

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 41, "end": 41,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -16,7 +16,7 @@ error: Rule
4 | | } 4 | | }
| |_^ | |_^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/declaration-list/input.css:1:1 --> $DIR/tests/fixture/declaration-list/input.css:1:1
| |
1 | / a { 1 | / a {

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 32, "end": 32,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -14,7 +14,7 @@ error: Rule
3 | | } 3 | | }
| |_^ | |_^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/delim/backslash/input.css:1:1 --> $DIR/tests/fixture/delim/backslash/input.css:1:1
| |
1 | / a { 1 | / a {

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 131, "end": 131,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -22,7 +22,7 @@ error: Rule
9 | | } 9 | | }
| |_^ | |_^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/dimension/basic/input.css:1:1 --> $DIR/tests/fixture/dimension/basic/input.css:1:1
| |
1 | / a { 1 | / a {

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 20, "end": 20,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { color: #112333 } 1 | a { color: #112333 }
| ^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1
| |
1 | a { color: #112333 } 1 | a { color: #112333 }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 6, "end": 6,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | \2d {} 1 | \2d {}
| ^^^^^^ | ^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1
| |
1 | \2d {} 1 | \2d {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 67, "end": 67,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | div::before::after::selection::first-line::first-letter {color:red} 1 | div::before::after::selection::first-line::first-letter {color:red}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/-GZJfOA9TK6La2KGGNgCkg/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/-GZJfOA9TK6La2KGGNgCkg/input.css:1:1
| |
1 | div::before::after::selection::first-line::first-letter {color:red} 1 | div::before::after::selection::first-line::first-letter {color:red}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 18, "end": 18,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { width: +.10; } 1 | a { width: +.10; }
| ^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1
| |
1 | a { width: +.10; } 1 | a { width: +.10; }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 10, "end": 10,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | #h\61sh {} 1 | #h\61sh {}
| ^^^^^^^^^^ | ^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1
| |
1 | #h\61sh {} 1 | #h\61sh {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 19, "end": 19,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { width: -.10%; } 1 | a { width: -.10%; }
| ^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1
| |
1 | a { width: -.10%; } 1 | a { width: -.10%; }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 45, "end": 45,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { box-shadow: rgb(255, 0, 17) 0 0 1 inset } 1 | a { box-shadow: rgb(255, 0, 17) 0 0 1 inset }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/-gboAEi1zyjFW5mtEM24Rg/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/-gboAEi1zyjFW5mtEM24Rg/input.css:1:1
| |
1 | a { box-shadow: rgb(255, 0, 17) 0 0 1 inset } 1 | a { box-shadow: rgb(255, 0, 17) 0 0 1 inset }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 7, "end": 7,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | [*|b]{} 1 | [*|b]{}
| ^^^^^^^ | ^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1
| |
1 | [*|b]{} 1 | [*|b]{}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 21, "end": 21,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { margin: 0 1 0 1 } 1 | a { margin: 0 1 0 1 }
| ^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1
| |
1 | a { margin: 0 1 0 1 } 1 | a { margin: 0 1 0 1 }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 20, "end": 20,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { value: 10p\32x } 1 | a { value: 10p\32x }
| ^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1
| |
1 | a { value: 10p\32x } 1 | a { value: 10p\32x }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 11, "end": 11,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | [b="0c"] {} 1 | [b="0c"] {}
| ^^^^^^^^^^^ | ^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1
| |
1 | [b="0c"] {} 1 | [b="0c"] {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 6, "end": 6,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | #id {} 1 | #id {}
| ^^^^^^ | ^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1
| |
1 | #id {} 1 | #id {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 7, "end": 7,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | -\2d {} 1 | -\2d {}
| ^^^^^^^ | ^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1
| |
1 | -\2d {} 1 | -\2d {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 9, "end": 9,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | div#id {} 1 | div#id {}
| ^^^^^^^^^ | ^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1
| |
1 | div#id {} 1 | div#id {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 59, "end": 59,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { border-radius: 1 2 3 4; border-top-right-radius: 5 6; } 1 | a { border-radius: 1 2 3 4; border-top-right-radius: 5 6; }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/12EwJCu6DsfOEJubQW9jLg/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/12EwJCu6DsfOEJubQW9jLg/input.css:1:1
| |
1 | a { border-radius: 1 2 3 4; border-top-right-radius: 5 6; } 1 | a { border-radius: 1 2 3 4; border-top-right-radius: 5 6; }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 8, "end": 8,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | #-\2d {} 1 | #-\2d {}
| ^^^^^^^^ | ^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1
| |
1 | #-\2d {} 1 | #-\2d {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 20, "end": 20,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { value: id\65nt } 1 | a { value: id\65nt }
| ^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1
| |
1 | a { value: id\65nt } 1 | a { value: id\65nt }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 27, "end": 27,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a:after { content: 'a\ b' } 1 | a:after { content: 'a\ b' }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1
| |
1 | a:after { content: 'a\ b' } 1 | a:after { content: 'a\ b' }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 19, "end": 19,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { value: \66n() } 1 | a { value: \66n() }
| ^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1
| |
1 | a { value: \66n() } 1 | a { value: \66n() }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 18, "end": 18,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { color: #ABCD } 1 | a { color: #ABCD }
| ^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1
| |
1 | a { color: #ABCD } 1 | a { color: #ABCD }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 22, "end": 22,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { color: #ABBBCCDD } 1 | a { color: #ABBBCCDD }
| ^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1
| |
1 | a { color: #ABBBCCDD } 1 | a { color: #ABBBCCDD }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 18, "end": 18,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { color: #abcf } 1 | a { color: #abcf }
| ^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1
| |
1 | a { color: #abcf } 1 | a { color: #abcf }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 18, "end": 18,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { width: 0.1%; } 1 | a { width: 0.1%; }
| ^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1
| |
1 | a { width: 0.1%; } 1 | a { width: 0.1%; }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 24, "end": 24,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { value: @\6b eyword } 1 | a { value: @\6b eyword }
| ^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/4-S1C8qZOZ6Mm7WdRUH72Q/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/4-S1C8qZOZ6Mm7WdRUH72Q/input.css:1:1
| |
1 | a { value: @\6b eyword } 1 | a { value: @\6b eyword }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 21, "end": 21,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { value: \69 dent } 1 | a { value: \69 dent }
| ^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1
| |
1 | a { value: \69 dent } 1 | a { value: \69 dent }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 21, "end": 21,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { value: #\30hash } 1 | a { value: #\30hash }
| ^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1
| |
1 | a { value: #\30hash } 1 | a { value: #\30hash }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 17, "end": 17,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { width: 0.0; } 1 | a { width: 0.0; }
| ^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1
| |
1 | a { width: 0.0; } 1 | a { width: 0.0; }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 10, "end": 10,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a/**/.b {} 1 | a/**/.b {}
| ^^^^^^^^^^ | ^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1
| |
1 | a/**/.b {} 1 | a/**/.b {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 26, "end": 26,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { padding: 0 1 0px 1px } 1 | a { padding: 0 1 0px 1px }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1
| |
1 | a { padding: 0 1 0px 1px } 1 | a { padding: 0 1 0px 1px }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 10, "end": 10,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | div#--0 {} 1 | div#--0 {}
| ^^^^^^^^^^ | ^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1
| |
1 | div#--0 {} 1 | div#--0 {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 19, "end": 19,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { value: 10\2cx } 1 | a { value: 10\2cx }
| ^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1
| |
1 | a { value: 10\2cx } 1 | a { value: 10\2cx }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 14, "end": 14,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | [attr="-a"] {} 1 | [attr="-a"] {}
| ^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1
| |
1 | [attr="-a"] {} 1 | [attr="-a"] {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 18, "end": 18,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { width: +0.1; } 1 | a { width: +0.1; }
| ^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1
| |
1 | a { width: +0.1; } 1 | a { width: +0.1; }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 16, "end": 16,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { value: x\, } 1 | a { value: x\, }
| ^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1
| |
1 | a { value: x\, } 1 | a { value: x\, }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 10, "end": 10,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a~/**/b {} 1 | a~/**/b {}
| ^^^^^^^^^^ | ^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1
| |
1 | a~/**/b {} 1 | a~/**/b {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 18, "end": 18,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { color: #1234 } 1 | a { color: #1234 }
| ^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1
| |
1 | a { color: #1234 } 1 | a { color: #1234 }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 14, "end": 14,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | [attr\7e=x] {} 1 | [attr\7e=x] {}
| ^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1
| |
1 | [attr\7e=x] {} 1 | [attr\7e=x] {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 13, "end": 13,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | [b $= "c"] {} 1 | [b $= "c"] {}
| ^^^^^^^^^^^^^ | ^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1
| |
1 | [b $= "c"] {} 1 | [b $= "c"] {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 18, "end": 18,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { color: white } 1 | a { color: white }
| ^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1
| |
1 | a { color: white } 1 | a { color: white }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 17, "end": 17,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a { width: .0%; } 1 | a { width: .0%; }
| ^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1
| |
1 | a { width: .0%; } 1 | a { width: .0%; }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 6, "end": 6,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a+b {} 1 | a+b {}
| ^^^^^^ | ^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1
| |
1 | a+b {} 1 | a+b {}

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 29, "end": 29,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

View File

@ -10,7 +10,7 @@ error: Rule
1 | a:after { content: 'a\62 c' } 1 | a:after { content: 'a\62 c' }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: StyleRule error: QualifiedRule
--> $DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1 --> $DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1
| |
1 | a:after { content: 'a\62 c' } 1 | a:after { content: 'a\62 c' }

View File

@ -7,13 +7,13 @@
}, },
"rules": [ "rules": [
{ {
"type": "StyleRule", "type": "QualifiedRule",
"span": { "span": {
"start": 0, "start": 0,
"end": 18, "end": 18,
"ctxt": 0 "ctxt": 0
}, },
"selectors": { "prelude": {
"type": "SelectorList", "type": "SelectorList",
"span": { "span": {
"start": 0, "start": 0,

Some files were not shown because too many files have changed in this diff Show More