remove unused grammar file

since we're moving to lark
This commit is contained in:
Luna 2019-03-09 16:58:46 -03:00
parent fe507437ea
commit 09f230985e
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ;
integer = ['-' | '+'] "0" digit {digit} ;
hex_letters = "a" | "b" | "c" | "d" | "e" | "f"
hex_integer = "0x", {hex_letters | digit} ;
oct_digits = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" ;
octal_integer = "0o", {oct_digits} ;
program =