This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- //
- // Numbers
- //
-
- DIGIT: "0".."9"
-
- INT: DIGIT+
- DECIMAL: INT ("." INT)?
-
- // float = /-?\d+(\.\d+)?([eE][+-]?\d+)?/
- FLOAT: "-"? DECIMAL (("e"|"E")("+"|"-")? INT)?
-
-
- //
- // Strings
- //
- ESCAPED_STRING: /".*?(?<!\\)"/
-
-
- //
- // Names (Variables)
- //
- LCASE_LETTER: "a".."z"
- UCASE_LETTER: "A".."Z"
-
- LETTER: UCASE_LETTER | LCASE_LETTER
-
- CNAME: ("_"|LETTER) ("_"|LETTER|DIGIT)*
-
-
- //
- // Whitespace
- //
- WS_INLINE: (" "|/\t/)+
- WS: /[ \t\f\r\n]/+
|