mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
test(css/parser): Move vendor tests (#6564)
This commit is contained in:
parent
974406a7c5
commit
4d422b6228
@ -622,7 +622,7 @@ where
|
||||
if !is_id {
|
||||
return Err(Error::new(
|
||||
span,
|
||||
ErrorKind::Expected("identifier in id selector"),
|
||||
ErrorKind::Unexpected("characters in ID selector"),
|
||||
));
|
||||
}
|
||||
|
||||
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-4j83DwgJa0nPQIjlb0RIA/input.css:1:1]
|
||||
1 | a { color: #112333 }
|
||||
: ^^^^^^^
|
||||
`----
|
@ -1,72 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-8o_H6sq86TDAHqF7YO0hg/input.css:1:1]
|
||||
1 | \2d {}
|
||||
: ^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-JoxoRcnA-zaaEC7RjXKvQ/input.css:1:1]
|
||||
1 | a { width: +.10; }
|
||||
: ^^^^
|
||||
`----
|
@ -1,66 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x IdSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-b4VODLSeaV93gwC2Ot2tw/input.css:1:1]
|
||||
1 | #h\61sh {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Percentage
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-edvtxlXMemv5jnGeyueBA/input.css:1:1]
|
||||
1 | a { width: -.10%; }
|
||||
: ^^^^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x NamespacePrefix
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x Namespace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AnyNamespace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/-shTP60AAG6a4mCJUpV1cQ/input.css:1:1]
|
||||
1 | [*|b]{}
|
||||
: ^
|
||||
`----
|
@ -1,150 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Integer
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Integer
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Integer
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Integer
|
||||
,-[$DIR/tests/fixture/esbuild/misc/07tvJxvZrgDeTmptOclErA/input.css:1:1]
|
||||
1 | a { margin: 0 1 0 1 }
|
||||
: ^
|
||||
`----
|
@ -1,132 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Dimension
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x UnknownDimension
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css:1:1]
|
||||
1 | a { value: 10p\32x }
|
||||
: ^^^^^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AttributeSelectorMatcher
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AttributeSelectorValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0Zlgi2sdsFfTrdnWOHUqeg/input.css:1:1]
|
||||
1 | [b="0c"] {}
|
||||
: ^
|
||||
`----
|
@ -1,66 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x IdSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0qqdP6EmNqzSa3h8c8lYUQ/input.css:1:1]
|
||||
1 | #id {}
|
||||
: ^
|
||||
`----
|
@ -1,72 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/0yo6flt6jo-UA8rUEFjrWA/input.css:1:1]
|
||||
1 | -\2d {}
|
||||
: ^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x IdSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/10VLLYwNo7xaTisP9r9Kfg/input.css:1:1]
|
||||
1 | div#id {}
|
||||
: ^
|
||||
`----
|
@ -1,66 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x IdSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1JQzQJ1QtQJ1onUzZx7BVg/input.css:1:1]
|
||||
1 | #-\2d {}
|
||||
: ^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/1naykwaIKZc6zuHRNIccLQ/input.css:1:1]
|
||||
1 | a { value: id\65nt }
|
||||
: ^^^^^^^
|
||||
`----
|
@ -1,132 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x PseudoClassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/2nNBhRWO2cNcBJf09zDxjw/input.css:1:1]
|
||||
1 | a:after { content: 'a\b' }
|
||||
: ^^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Function
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/36qnNuIUvbIrMnJKDxwE5A/input.css:1:1]
|
||||
1 | a { value: \66n() }
|
||||
: ^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/39pbt1sIeFh8WWhCalZS4g/input.css:1:1]
|
||||
1 | a { color: #ABCD }
|
||||
: ^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3EgMpLwjJNG0ht4U_r6cnw/input.css:1:1]
|
||||
1 | a { color: #ABBBCCDD }
|
||||
: ^^^^^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3JGye8AhworwNFoUL1gKbg/input.css:1:1]
|
||||
1 | a { color: #abcf }
|
||||
: ^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Percentage
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3OV2jH0hrt2_2jOv6t4wvA/input.css:1:1]
|
||||
1 | a { width: 0.1%; }
|
||||
: ^^^
|
||||
`----
|
@ -1,36 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3ZCwY2LzkuEPMyYIsA9KzQ/input.css:1:1]
|
||||
1 | @charset 'UTF-8';
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3ZCwY2LzkuEPMyYIsA9KzQ/input.css:1:1]
|
||||
1 | @charset 'UTF-8';
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3ZCwY2LzkuEPMyYIsA9KzQ/input.css:1:1]
|
||||
1 | @charset 'UTF-8';
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRuleName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3ZCwY2LzkuEPMyYIsA9KzQ/input.css:1:1]
|
||||
1 | @charset 'UTF-8';
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3ZCwY2LzkuEPMyYIsA9KzQ/input.css:1:1]
|
||||
1 | @charset 'UTF-8';
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3ZCwY2LzkuEPMyYIsA9KzQ/input.css:1:1]
|
||||
1 | @charset 'UTF-8';
|
||||
: ^^^^^^^
|
||||
`----
|
@ -1,48 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3qKvhk-8FQVONLpki0FoMA/input.css:1:1]
|
||||
1 | @keyframes name{}
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3qKvhk-8FQVONLpki0FoMA/input.css:1:1]
|
||||
1 | @keyframes name{}
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3qKvhk-8FQVONLpki0FoMA/input.css:1:1]
|
||||
1 | @keyframes name{}
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRuleName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3qKvhk-8FQVONLpki0FoMA/input.css:1:1]
|
||||
1 | @keyframes name{}
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3qKvhk-8FQVONLpki0FoMA/input.css:1:1]
|
||||
1 | @keyframes name{}
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CustomIdent
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3qKvhk-8FQVONLpki0FoMA/input.css:1:1]
|
||||
1 | @keyframes name{}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3qKvhk-8FQVONLpki0FoMA/input.css:1:1]
|
||||
1 | @keyframes name{}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/3qKvhk-8FQVONLpki0FoMA/input.css:1:1]
|
||||
1 | @keyframes name{}
|
||||
: ^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/485Ns9qQHa89OJU5Lhjx-Q/input.css:1:1]
|
||||
1 | a { value: \69 dent }
|
||||
: ^^^^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/486QvEO8dmLFsXYp6xgKVw/input.css:1:1]
|
||||
1 | a { value: #\30hash }
|
||||
: ^^^^^^^^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4Tjjgepnha63E4UiXXDNEA/input.css:1:1]
|
||||
1 | a { width: 0.0; }
|
||||
: ^^^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x ClassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4UaOTazLwrr9gd5xkBBlnw/input.css:1:1]
|
||||
1 | a/**/.b {}
|
||||
: ^
|
||||
`----
|
@ -1,186 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Integer
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Integer
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Dimension
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Length
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Dimension
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Length
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/4WSp4-HbKB-f1GLF00sf6A/input.css:1:1]
|
||||
1 | a { padding: 0 1 0px 1px }
|
||||
: ^^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x IdSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/52obp49U0CyYOskQAEoIJw/input.css:1:1]
|
||||
1 | div#--0 {}
|
||||
: ^
|
||||
`----
|
@ -1,132 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Dimension
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x UnknownDimension
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/53OltIbJ-YBXtSKedVvYwA/input.css:1:1]
|
||||
1 | a { value: 10\2cx }
|
||||
: ^^^^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelectorMatcher
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AttributeSelectorValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/54mhLGCwQMwsuiVkiTzAAQ/input.css:1:1]
|
||||
1 | [attr="-a"] {}
|
||||
: ^
|
||||
`----
|
@ -1,30 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5IxIPW9sKkvdZIzfV33AcA/input.css:1:1]
|
||||
1 | @u\,nknown;
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5IxIPW9sKkvdZIzfV33AcA/input.css:1:1]
|
||||
1 | @u\,nknown;
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5IxIPW9sKkvdZIzfV33AcA/input.css:1:1]
|
||||
1 | @u\,nknown;
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRuleName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5IxIPW9sKkvdZIzfV33AcA/input.css:1:1]
|
||||
1 | @u\,nknown;
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5IxIPW9sKkvdZIzfV33AcA/input.css:1:1]
|
||||
1 | @u\,nknown;
|
||||
: ^^^^^^^^^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5al65IRQbw_x4yG3ke74fQ/input.css:1:1]
|
||||
1 | a { width: +0.1; }
|
||||
: ^^^^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5cnGKjYPm1XBeqTmw3oCag/input.css:1:1]
|
||||
1 | a { value: x\, }
|
||||
: ^^^
|
||||
`----
|
@ -1,108 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Combinator
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5nNFwUYmVb5_MMMzIvIeQg/input.css:1:1]
|
||||
1 | a~/**/b {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/5yer6GUWydidDHrfgacUkA/input.css:1:1]
|
||||
1 | a { color: #1234 }
|
||||
: ^^^^^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelectorMatcher
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AttributeSelectorValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/62BQJI-uDjHXNJ7kyL8HiA/input.css:1:1]
|
||||
1 | [attr\7e=x] {}
|
||||
: ^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AttributeSelectorMatcher
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x AttributeSelectorValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6IWHWiWjsuGkPiPAp2KmoA/input.css:1:1]
|
||||
1 | [b $= "c"] {}
|
||||
: ^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6WYwXsqP1SJOa-6oDBobzQ/input.css:1:1]
|
||||
1 | a { color: white }
|
||||
: ^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Percentage
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6aNPFn_YOBL4koYvV-g8pQ/input.css:1:1]
|
||||
1 | a { width: .0%; }
|
||||
: ^^
|
||||
`----
|
@ -1,108 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Combinator
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6fufNZ3PA6_-pNwY-IP61Q/input.css:1:1]
|
||||
1 | a+b {}
|
||||
: ^
|
||||
`----
|
@ -1,132 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x PseudoClassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6kUhG0W7hwZxIuaCsZ7pHg/input.css:1:1]
|
||||
1 | a:after { content: 'a\62 c' }
|
||||
: ^^^^^^^^
|
||||
`----
|
@ -1,78 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x PseudoClassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x PseudoClassSelectorChildren
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Ident { value: Atom('cl,ss' type=inline), raw: "cl\\,ss" }
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/6s_VBuRPHbPiUrh1fWCR_Q/input.css:1:1]
|
||||
1 | :pseudo(cl\,ss) {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7CK6ZYt4CWz7Ge5KWLKBYg/input.css:1:1]
|
||||
1 | a { color: #aabbccef }
|
||||
: ^^^^^^^^^
|
||||
`----
|
@ -1,66 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x ClassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7S9dyZUmnJW4VKAa7gcKvw/input.css:1:1]
|
||||
1 | .\,class {}
|
||||
: ^
|
||||
`----
|
@ -1,108 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Combinator
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7Wto7epgdmJCos0XkrnMww/input.css:1:1]
|
||||
1 | a+/**/b {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Percentage
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7YGXOizztR38f8fGB1DRaQ/input.css:1:1]
|
||||
1 | a { width: -.00%; }
|
||||
: ^^^^
|
||||
`----
|
@ -1,30 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7q6h33W5r1sx-W3Q7DipjA/input.css:1:1]
|
||||
1 | @u\2cnknown;
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7q6h33W5r1sx-W3Q7DipjA/input.css:1:1]
|
||||
1 | @u\2cnknown;
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7q6h33W5r1sx-W3Q7DipjA/input.css:1:1]
|
||||
1 | @u\2cnknown;
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRuleName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7q6h33W5r1sx-W3Q7DipjA/input.css:1:1]
|
||||
1 | @u\2cnknown;
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/7q6h33W5r1sx-W3Q7DipjA/input.css:1:1]
|
||||
1 | @u\2cnknown;
|
||||
: ^^^^^^^^^^
|
||||
`----
|
@ -1,132 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Dimension
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x UnknownDimension
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/866Law8W0FQas7QMxFjUbw/input.css:1:1]
|
||||
1 | a { value: 10x\2c }
|
||||
: ^^^^^
|
||||
`----
|
@ -1,132 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Url
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x UrlValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x UrlValueRaw
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8Gs_Q4kYqijbgIQ6xIW8qw/input.css:1:1]
|
||||
1 | a { value: url(a\62c) }
|
||||
: ^^^^^
|
||||
`----
|
@ -1,66 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x IdSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/8R-UUShF-1EmQSj6_GQwrA/input.css:1:1]
|
||||
1 | #\-0 {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9IIa-42s3YQFw8ilk39GdQ/input.css:1:1]
|
||||
1 | a { color: #AABBCCFF }
|
||||
: ^^^^^^^^^
|
||||
`----
|
@ -1,96 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x NamespacePrefix
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Namespace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x NamedNamespace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/9aSeJQPn4WHMexejaMQQoQ/input.css:1:1]
|
||||
1 | [\2a|attr] {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Percentage
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/A3jvzrmJH_MIf_Uilsy4sg/input.css:1:1]
|
||||
1 | a { width: +0.1%; }
|
||||
: ^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Function
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AVaQlt9z0lhJC6bHHDPVeA/input.css:1:1]
|
||||
1 | a { value: x\2c() }
|
||||
: ^^^^
|
||||
`----
|
@ -1,66 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x IdSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Aby-BQPnUhIoK9wn-kUcDQ/input.css:1:1]
|
||||
1 | #\,hash {}
|
||||
: ^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AttributeSelectorMatcher
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AttributeSelectorValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ae5_auBp274oaSQ0kls9sw/input.css:1:1]
|
||||
1 | [b="c"] {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Afm91-TMNbzd52HsPrCCNA/input.css:1:1]
|
||||
1 | a { color: #abbbccff }
|
||||
: ^^^^^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AigZ338AGwCqF4M9a3Quqw/input.css:1:1]
|
||||
1 | a { color: #AABCCCDD }
|
||||
: ^^^^^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AocxkR5Gt30Hu6JV7J56Wg/input.css:1:1]
|
||||
1 | a { color: #aabccc }
|
||||
: ^^^^^^^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/AwZM5l5vBlyrbgG-Fk0_EQ/input.css:1:1]
|
||||
1 | a { value: x\2c }
|
||||
: ^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BKyQWW5j9vRP-kr41nqcjg/input.css:1:1]
|
||||
1 | a { value: #\68 ash }
|
||||
: ^^^^^^^^
|
||||
`----
|
@ -1,108 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Combinator
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/BltaGv1fY5VvJahyCRNxqQ/input.css:1:1]
|
||||
1 | a~b {}
|
||||
: ^
|
||||
`----
|
@ -1,108 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Combinator
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C419dJQ48QjmgKufnQhNVw/input.css:1:1]
|
||||
1 | a > b {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C4I0cdQcSbpaGOS-V8fwew/input.css:1:1]
|
||||
1 | a { value: #0h\61sh }
|
||||
: ^^^^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C6gS3Kl0KEwGsFaUUGXzFg/input.css:1:1]
|
||||
1 | a { color: #112234ff }
|
||||
: ^^^^^^^^^
|
||||
`----
|
@ -1,78 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x NestingSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/C9nXM9jBTT9WvCQHrwH24Q/input.css:1:1]
|
||||
1 | &[a] {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CQiowK9DjojqKtlpQifemA/input.css:1:1]
|
||||
1 | a { color: #ABBBCC }
|
||||
: ^^^^^^^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/CqrYlHva8qUNgSPb8EwWjg/input.css:1:1]
|
||||
1 | a { value: 'a\62 c' }
|
||||
: ^^^^^^^^
|
||||
`----
|
Binary file not shown.
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D5Oyf1ABeS8lie5Lg-5pqg/input.css:1:1]
|
||||
1 | a { value: x\0 }
|
||||
: ^^^^
|
||||
`----
|
@ -1,48 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D6tjKw383eOL-bbWEm1-4w/input.css:1:1]
|
||||
1 | @-moz-keyframes name {}
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D6tjKw383eOL-bbWEm1-4w/input.css:1:1]
|
||||
1 | @-moz-keyframes name {}
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D6tjKw383eOL-bbWEm1-4w/input.css:1:1]
|
||||
1 | @-moz-keyframes name {}
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRuleName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D6tjKw383eOL-bbWEm1-4w/input.css:1:1]
|
||||
1 | @-moz-keyframes name {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D6tjKw383eOL-bbWEm1-4w/input.css:1:1]
|
||||
1 | @-moz-keyframes name {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CustomIdent
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D6tjKw383eOL-bbWEm1-4w/input.css:1:1]
|
||||
1 | @-moz-keyframes name {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D6tjKw383eOL-bbWEm1-4w/input.css:1:1]
|
||||
1 | @-moz-keyframes name {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/D6tjKw383eOL-bbWEm1-4w/input.css:1:1]
|
||||
1 | @-moz-keyframes name {}
|
||||
: ^
|
||||
`----
|
@ -1,72 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x NestingSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x PseudoClassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Dl_KXhjnyR5RfRaNMKBEdw/input.css:1:1]
|
||||
1 | &:b {}
|
||||
: ^
|
||||
`----
|
@ -1,48 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DnbMqwUX5bMs8z9L-H6IOg/input.css:1:1]
|
||||
1 | @-ms-keyframes name {}
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DnbMqwUX5bMs8z9L-H6IOg/input.css:1:1]
|
||||
1 | @-ms-keyframes name {}
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DnbMqwUX5bMs8z9L-H6IOg/input.css:1:1]
|
||||
1 | @-ms-keyframes name {}
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRuleName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DnbMqwUX5bMs8z9L-H6IOg/input.css:1:1]
|
||||
1 | @-ms-keyframes name {}
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DnbMqwUX5bMs8z9L-H6IOg/input.css:1:1]
|
||||
1 | @-ms-keyframes name {}
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CustomIdent
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DnbMqwUX5bMs8z9L-H6IOg/input.css:1:1]
|
||||
1 | @-ms-keyframes name {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DnbMqwUX5bMs8z9L-H6IOg/input.css:1:1]
|
||||
1 | @-ms-keyframes name {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DnbMqwUX5bMs8z9L-H6IOg/input.css:1:1]
|
||||
1 | @-ms-keyframes name {}
|
||||
: ^
|
||||
`----
|
@ -1,102 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AttributeSelectorMatcher
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AttributeSelectorValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x AttributeSelectorModifier
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Drl1Excz8WEwlfIfA2oRQg/input.css:1:1]
|
||||
1 | [b = "c" i] {}
|
||||
: ^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DrlXteRB-ppLVxi4_N4dhA/input.css:1:1]
|
||||
1 | a { value: \2cx }
|
||||
: ^^^^
|
||||
`----
|
@ -1,78 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x NamespacePrefix
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/DstCRLR-k3tqe3B46li15Q/input.css:1:1]
|
||||
1 | [|b]{}
|
||||
: ^
|
||||
`----
|
@ -1,72 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EB1IJLfMRoP0XwlJOGLTPA/input.css:1:1]
|
||||
1 | div {}
|
||||
: ^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x IdSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EC04FJYJG-jwsR3Sbo9Rfg/input.css:1:1]
|
||||
1 | div#\-0 {}
|
||||
: ^
|
||||
`----
|
@ -1,72 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJ3xE2oHAiQiiAA6TOFfLA/input.css:1:1]
|
||||
1 | [\,attr] {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EJPa4WhTn_fRRrDiA2bczg/input.css:1:1]
|
||||
1 | a { color: #aabbcc }
|
||||
: ^^^^^^^
|
||||
`----
|
@ -1,108 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Combinator
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EX6W7U27ut-K7x8AfSlQSg/input.css:1:1]
|
||||
1 | a>b {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EYFn-trzBus37dDEvK1jUQ/input.css:1:1]
|
||||
1 | a { color: #122233 }
|
||||
: ^^^^^^^
|
||||
`----
|
@ -1,108 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Combinator
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/EmvZzoCy9JnSP70AqHmNNA/input.css:1:1]
|
||||
1 | a b {}
|
||||
: ^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/F-AbRDwG_3dGLhE7pzr5aA/input.css:1:1]
|
||||
1 | a { value: x\1 }
|
||||
: ^^^^
|
||||
`----
|
@ -1,54 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FU0reCXb694XEXwdM2wqsQ/input.css:1:1]
|
||||
1 | @import url(foo.css) ;
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FU0reCXb694XEXwdM2wqsQ/input.css:1:1]
|
||||
1 | @import url(foo.css) ;
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FU0reCXb694XEXwdM2wqsQ/input.css:1:1]
|
||||
1 | @import url(foo.css) ;
|
||||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AtRuleName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FU0reCXb694XEXwdM2wqsQ/input.css:1:1]
|
||||
1 | @import url(foo.css) ;
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FU0reCXb694XEXwdM2wqsQ/input.css:1:1]
|
||||
1 | @import url(foo.css) ;
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Url
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FU0reCXb694XEXwdM2wqsQ/input.css:1:1]
|
||||
1 | @import url(foo.css) ;
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FU0reCXb694XEXwdM2wqsQ/input.css:1:1]
|
||||
1 | @import url(foo.css) ;
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x UrlValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FU0reCXb694XEXwdM2wqsQ/input.css:1:1]
|
||||
1 | @import url(foo.css) ;
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x UrlValueRaw
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FU0reCXb694XEXwdM2wqsQ/input.css:1:1]
|
||||
1 | @import url(foo.css) ;
|
||||
: ^^^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/FlqjDLebWxQvNIxKppBllw/input.css:1:1]
|
||||
1 | a { color: #aabbcd }
|
||||
: ^^^^^^^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Fm7gvlx7uRyvrfzUC7rJxg/input.css:1:1]
|
||||
1 | a { value: #x\, }
|
||||
: ^^^^
|
||||
`----
|
@ -1,66 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x PseudoClassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Ft7g4H2gHwlEjiFMDwEkYQ/input.css:1:1]
|
||||
1 | :pseudo\,class {}
|
||||
: ^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GC0pcFQY1xSlq9QsgSvEVg/input.css:1:1]
|
||||
1 | a { width: -.0; }
|
||||
: ^^^
|
||||
`----
|
@ -1,114 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GI1rffTXev-78n9ei_53wQ/input.css:1:1]
|
||||
1 | a { value: '\1' }
|
||||
: ^^^^
|
||||
`----
|
@ -1,72 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GNiHtd4OPiZDQlN5KGAmRQ/input.css:1:1]
|
||||
1 | \2a {}
|
||||
: ^
|
||||
`----
|
@ -1,108 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Combinator
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GVqeF3thmlPBqLweHlqIJQ/input.css:1:1]
|
||||
1 | a/**/b {}
|
||||
: ^
|
||||
`----
|
@ -1,90 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^^^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x AttributeSelectorMatcher
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x AttributeSelectorValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Str
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GjvJfQVAaNQonYJwt8QRDQ/input.css:1:1]
|
||||
1 | [b*="c"] {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Function
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/GpePX8ZJM8IP14hXFTKKxQ/input.css:1:1]
|
||||
1 | a { value: x\,() }
|
||||
: ^^^
|
||||
`----
|
@ -1,150 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ClassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/Gt3Lw4L5Pe4aLLDPz9cxRg/input.css:1:1]
|
||||
1 | .decl { a: b; c: d }
|
||||
: ^
|
||||
`----
|
@ -1,96 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^^^^^^^
|
||||
`----
|
||||
|
||||
x NamespacePrefix
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x Namespace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x NamedNamespace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^^^^^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HBQJEriDrHgN_kXjKrVW9g/input.css:1:1]
|
||||
1 | [ns|\61ttr] {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Color
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x HexColor
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HDNE73X9waUrBkTAzz-20g/input.css:1:1]
|
||||
1 | a { value: #h\61sh }
|
||||
: ^^^^^^^
|
||||
`----
|
@ -1,96 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^^^^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SubclassSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x AttributeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^^^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HGH4crVp9Whp_G0PY6BaQA/input.css:1:1]
|
||||
1 | a[b] {}
|
||||
: ^
|
||||
`----
|
@ -1,120 +0,0 @@
|
||||
|
||||
x Stylesheet
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Rule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x QualifiedRule
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x SelectorList
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComplexSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x CompoundSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TypeSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x TagNameSelector
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x WqName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x SimpleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x LBrace
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x StyleBlock
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x Declaration
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^^^^^^^^
|
||||
`----
|
||||
|
||||
x DeclarationName
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Ident
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x ComponentValue
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Percentage
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^^
|
||||
`----
|
||||
|
||||
x Number
|
||||
,-[$DIR/tests/fixture/esbuild/misc/HWU09nmB9oZX7WY8zUbrnA/input.css:1:1]
|
||||
1 | a { width: -0.1%; }
|
||||
: ^^^^
|
||||
`----
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user