package styled-ppx

  1. Overview
  2. Docs
Type-safe styled components for ReScript and Melange

Install

dune-project
 Dependency

Authors

Maintainers

Sources

styled-ppx-0.61.0.tbz
sha256=c6eba770e9e9bb9002bf3f759f99ebcec6d7b4132c6c2ad562886c88b6839bab
sha512=8a1776181f6ef292518a0b96b1fae7927cf5767dee75dc04bc05d99d297866e45a5943455bea9ce500a04a635bd179d2b2bec8bccebc55dc1e696a23b3efad69

doc/styled-ppx.css-parser/Styled_ppx_css_parser/Parser/index.html

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