Module Css_parser.Selector

type t =
  1. | Id of string * Css_parser_common.Hash_flag.t
  2. | Class of string
  3. | Attribute of Component_value.t with_loc list with_loc
  4. | Pseudoclass of Pseudoclass_element_selector.t
  5. | Pseudoelement of Pseudoclass_element_selector.t
  6. | Type of string * string option
  7. | Ampersand
val sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Equal.S with type t := t
val equal : t -> t -> bool