This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

20 righe
437 B

  1. ?start: value
  2. ?value: object
  3. | array
  4. | string
  5. | SIGNED_NUMBER -> number
  6. | "true" -> true
  7. | "false" -> false
  8. | "null" -> null
  9. array : "[" _WS? [value ("," _WS? value)*] "]"
  10. object : "{" _WS? [pair ("," _WS? pair)*] "}"
  11. pair : string ":" _WS value
  12. string : ESCAPED_STRING
  13. %import common.ESCAPED_STRING
  14. %import common.SIGNED_NUMBER
  15. %import common.WS -> _WS