Sha256: d4b1010bab32ac4e2d786b7e556fb9bb2fd60f2535bfa9cdeebd0341d8db4fb0
Contents?: true
Size: 1.85 KB
Versions: 3
Compression:
Stored size: 1.85 KB
Contents
/* An EBNF grammar for EBNF */ [1] ebnf ::= (declaration | rule)* [2] declaration ::= '@terminals' | pass [3] rule ::= LHS expression # Use a terminal to match the identifier, rule name and assignment due to # confusion between the identifier ENUM [4] expression ::= alt [5] alt ::= seq ('|' seq)* [6] seq ::= diff+ [7] diff ::= postfix ('-' postfix)? [8] postfix ::= primary POSTFIX? [9] primary ::= HEX | SYMBOL | RANGE | ENUM | O_RANGE | O_ENUM | STRING1 | STRING2 | '(' expression ')' [10] pass ::= '@pass' expression @terminals [11] LHS ::= ENUM? SYMBOL "::=" [12] SYMBOL ::= ([a-z] | [A-Z] | [0-9] | "_" | ".")+ [13] HEX ::= '#x' ([0-9]|[a-f]|[A-F]) ([0-9]|[a-f]|[A-F]) [14] RANGE ::= '[' R_CHAR '-' R_CHAR ']' [15] ENUM ::= '[' R_CHAR+ ']' [16] O_RANGE ::= '[^' R_CHAR '-' R_CHAR ']' [17] O_ENUM ::= '[^' R_CHAR+ ']' [18] STRING1 ::= '"' ((CHAR - '"') | "\t")* '"' [19] STRING2 ::= "'" ((CHAR - "'") | "\t")* "'" [20] CHAR ::= HEX | ('\\' [\\trn"']) | [^\t\r\n] [21] R_CHAR ::= CHAR - "]" # Should be able to do this inline, but not until terminal regular expressions are created automatically [22] POSTFIX ::= [?*+] [23] PASS ::= ( [#x20\t\r\n] | ( '#' | '//' ) [^\r\n]* | '/*' (( '*' [^/] )? | [^*] )* '*/' )+ # Should be able to do this inline, but not until terminal regular expressions are created automatically @pass PASS
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ebnf-0.3.5 | etc/ebnf.ebnf |
ebnf-0.3.4 | etc/ebnf.ebnf |
ebnf-0.3.3 | etc/ebnf.ebnf |