You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so that the AST doesn't just contain tokens. Previously the arguments
were something like
```
[(ident-token "div"),
(comma-token),
(whitespace-token " "),
(ident-token "span"),
(delim-token "."),
(ident-token "wide"),
(comma-token),
(whitespace-token " "),
(delim-token "."),
(ident-token "hidden")]
```
Now those tokens will be represented in the AST as
```
[(type-selector (wqname (ident-token "div"))),
(compound-selector
(type (type-selector (wqname (ident-token "span"))))
(subclasses
(class-selector (ident-token "wide"))
)
(pseudo-elements)
),
(class-selector (ident-token "hidden"))]
```
0 commit comments