Module Css_parser.Component_value

type t =
  1. | Paren_block of t with_loc list
  2. | Bracket_block of t with_loc list
  3. | Brace_block of t with_loc list
  4. | Percentage of num_with_exponent
  5. | At_keyword of string
  6. | Ident of string with_loc
  7. | String of Css_parser_common.String_token.t
  8. | Url of string
  9. | Delim of string
  10. | Ampersand
  11. | Comment of comment
  12. | Ocaml_code of (string * Interpolation_sigil.t) with_loc
  13. | Function of string with_loc * t with_loc list
  14. | Hash of string * Css_parser_common.Hash_flag.t
  15. | Number of num_with_exponent
  16. | Dimension of dimension_with_exponent
  17. | Whitespace of string
  18. | Semicolon
  19. | Colon
  20. | Comma
  21. | Cdo
  22. | Cdc
  23. | Bad_string of string
  24. | Bad_url of string
  25. | Right_brace
  26. | Right_paren
  27. | Right_bracket
val sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Equal.S with type t := t
val equal : t -> t -> bool