summaryrefslogtreecommitdiff
path: root/autochomp/benches/parse/data/774.nb
diff options
context:
space:
mode:
authorGreg Brown <gmb60@cam.ac.uk>2021-05-11 13:53:56 +0100
committerGreg Brown <gmb60@cam.ac.uk>2021-05-11 13:53:56 +0100
commit387959675cd53b3c75ad9b6215b07843f8c8f1d8 (patch)
treebc972c31a0b48f8fd8c9240465c8bd83e16f5258 /autochomp/benches/parse/data/774.nb
parentdfc08ff2c6580bbeb3951b223e0332546ba3b0d9 (diff)
Rename autochomp to autonibble.
Diffstat (limited to 'autochomp/benches/parse/data/774.nb')
-rw-r--r--autochomp/benches/parse/data/774.nb21
1 files changed, 0 insertions, 21 deletions
diff --git a/autochomp/benches/parse/data/774.nb b/autochomp/benches/parse/data/774.nb
deleted file mode 100644
index 89c22ca..0000000
--- a/autochomp/benches/parse/data/774.nb
+++ /dev/null
@@ -1,21 +0,0 @@
-let bot = !(/rec/ "a" . rec);
-let zero = /zero suc/ zero;
-let suc n = /zero suc/ suc (n zero suc);
-
-let opt some = _ : None | some;
-let plus iter = !(/plus/ iter . (opt plus));
-let star iter = opt (plus iter);
-
-let up_to x n = n bot (/rec/ x . opt rec);
-
-let Pattern_Whitespace = "\t"|"\n"|"\x0B"|"\x0c"|"\r"|" "|"\u{85}"|"\u{200e}"|"\u{200f}"|"\u{2028}"|"\u{2029}";
-
-let oct_digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" ;
-let digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9";
-let hex_digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" |
- "a" | "b" | "c" | "d" | "e" | "f" |
- "A" | "B" | "C" | "D" | "E" | "F" ;
-
-match
- "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" |
- "i" | "j" | "k" | "l";