This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

22 linhas
430 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 : "[" [value ("," value)*] "]"
  10. object : "{" [pair ("," pair)*] "}"
  11. pair : string ":" value
  12. string : ESCAPED_STRING
  13. %import common.ESCAPED_STRING
  14. %import common.SIGNED_NUMBER
  15. %import common.WS
  16. %ignore WS