From 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 Mon Sep 17 00:00:00 2001 From: "Matth?us G. Chajdas" Date: Sun, 10 Nov 2019 13:56:53 +0100 Subject: Remove all files, redirect to GitHub. --- tests/examplefiles/test.ebnf | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 tests/examplefiles/test.ebnf (limited to 'tests/examplefiles/test.ebnf') diff --git a/tests/examplefiles/test.ebnf b/tests/examplefiles/test.ebnf deleted file mode 100644 index a96171b0..00000000 --- a/tests/examplefiles/test.ebnf +++ /dev/null @@ -1,31 +0,0 @@ -letter = "A" | "B" | "C" | "D" | "E" | "F" | "G" - | "H" | "I" | "J" | "K" | "L" | "M" | "N" - | "O" | "P" | "Q" | "R" | "S" | "T" | "U" - | "V" | "W" | "X" | "Y" | "Z" ; -digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ; -symbol = "[" | "]" | "{" | "}" | "(" | ")" | "<" | ">" - | "'" | '"' | "=" | "|" | "." | "," | ";" ; -character = letter | digit | symbol | " " ; - -identifier = letter , { letter | digit | " " } ; -terminal = "'" , character , { character } , "'" - | '"' , character , { character } , '"' ; - -special = "?" , any , "?" ; - -comment = (* this is a comment "" *) "(*" , any-symbol , "*)" ; -any-symbol = ? any visible character ? ; (* ? ... ? *) - -lhs = identifier ; -rhs = identifier - | terminal - | comment , rhs - | rhs , comment - | "[" , rhs , "]" - | "{" , rhs , "}" - | "(" , rhs , ")" - | rhs , "|" , rhs - | rhs , "," , rhs ; - -rule = lhs , "=" , rhs , ";" | comment ; -grammar = { rule } ; -- cgit v1.2.1