tree-sitter / tree-sitter-css

CSS grammar for Tree-sitter
MIT License
85 stars 34 forks source link

Fix universal selector in descendant selector #37

Closed Shraymonks closed 1 year ago

Shraymonks commented 1 year ago

Fix parsing of descendant selector when the right selector is the universal selector.

Shraymonks commented 1 year ago

@maxbrunsfeld Can this get looked at?

amaanq commented 1 year ago

@Shraymonks what about this?

example|* {
  color: blue;
}

Found it here https://developer.mozilla.org/en-US/docs/Web/CSS/Universal_selectors

Shraymonks commented 1 year ago

That would be a separate issue; see #33.

amaanq commented 1 year ago

Thanks for the ref link, not too familiar with css