package styled-ppx

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Styled_ppx_css_parser.ParserSource

Sourcetype token =
  1. | WS
  2. | URL of string
  3. | UNICODE_RANGE of string
  4. | TAG of string
  5. | STRING of string
  6. | SEMI_COLON
  7. | RIGHT_PAREN
  8. | RIGHT_BRACKET
  9. | RIGHT_BRACE
  10. | PERCENT
  11. | OPERATOR of string
  12. | NUMBER of string
  13. | NTH_FUNCTION of string
  14. | LEFT_PAREN
  15. | LEFT_BRACKET
  16. | LEFT_BRACE
  17. | INTERPOLATION of string list
  18. | IMPORTANT
  19. | IDENT of string
  20. | HASH of string
  21. | FUNCTION of string
  22. | FLOAT_DIMENSION of string * string
  23. | EOF
  24. | DOUBLE_COLON
  25. | DOT
  26. | DIMENSION of string * string
  27. | DELIM of string
  28. | COMMA
  29. | COMBINATOR of string
  30. | COLON
  31. | BAD_URL
  32. | BAD_IDENT
  33. | AT_RULE_STATEMENT of string
  34. | AT_RULE of string
  35. | AT_KEYFRAMES of string
  36. | ASTERISK
  37. | AMPERSAND
Sourceexception Error
Sourceval declaration_list : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> Ast.rule_list