type github.com/andybalholm/cascadia.idSelector

8 uses

	github.com/andybalholm/cascadia (current package)
		parser.go#L310: func (p *parser) parseIDSelector() (idSelector, error) {
		parser.go#L312: 		return idSelector{}, fmt.Errorf("expected id selector (#id), found EOF instead")
		parser.go#L315: 		return idSelector{}, fmt.Errorf("expected id selector (#id), found '%c' instead", p.s[p.i])
		parser.go#L321: 		return idSelector{}, err
		parser.go#L324: 	return idSelector{id: id}, nil
		selector.go#L200: type idSelector struct {
		selector.go#L205: func (t idSelector) Match(n *html.Node) bool {
		selector.go#L211: func (c idSelector) Specificity() Specificity {