swc/css/parser/tests/fixture/esbuild/misc/cpoL0JfVO7TLrlcAga939A/output.json
강동윤 7381644f6b
feat(css): Implement codegen for css (#2115)
swc_css_ast:
 - Remove unused tokens.
 - `SubclassSelector::PseudoClass` => `SubclassSelector::Pseudo`.
 - Fix `AttrSelectorOp`
 - `AttrSelector.value`: `Option<Text>` => `Option<Str>`.

swc_css_codegen:
 - Implement a code generator.

swc_css_parser:
 - Implement `Parse<Stylesheet>` for the parser.
 - Fix parsing of pseudo selectors.
 - Fix parsing of unknown at-rules.
2021-08-20 12:38:15 +00:00

90 lines
2.1 KiB
JSON

{
"type": "Stylesheet",
"span": {
"start": 0,
"end": 11,
"ctxt": 0
},
"rules": [
{
"type": "StyleRule",
"span": {
"start": 0,
"end": 11,
"ctxt": 0
},
"selectors": [
{
"type": "ComplexSelector",
"span": {
"start": 0,
"end": 8,
"ctxt": 0
},
"selectors": [
{
"type": "CompoundSelector",
"span": {
"start": 0,
"end": 8,
"ctxt": 0
},
"hasNestPrefix": false,
"combinator": null,
"typeSelector": null,
"subclassSelectors": [
{
"type": "AttrributeSelector",
"span": {
"start": 0,
"end": 8,
"ctxt": 0
},
"name": {
"type": "NamespacedName",
"span": {
"start": 1,
"end": 2,
"ctxt": 0
},
"prefix": null,
"name": {
"type": "Text",
"span": {
"start": 1,
"end": 2,
"ctxt": 0
},
"value": "b"
}
},
"op": "^=",
"value": {
"type": "String",
"span": {
"start": 4,
"end": 7,
"ctxt": 0
},
"value": "c"
},
"modifier": null
}
]
}
]
}
],
"block": {
"type": "DeclBlock",
"span": {
"start": 9,
"end": 11,
"ctxt": 0
},
"properties": []
}
}
]
}