This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

22 rader
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