Module Css_parser_common.Context

Semantic CSS context at an arbitrary position in the parse tree

type t =
  1. | Interpolation
  2. | Declaration of {
    1. property_name : string;
    }
  3. | Block
  4. | Rules
  5. | Ambiguous of t list
val sexp_of_t : t -> Sexplib0.Sexp.t