From 387959675cd53b3c75ad9b6215b07843f8c8f1d8 Mon Sep 17 00:00:00 2001 From: Greg Brown Date: Tue, 11 May 2021 13:53:56 +0100 Subject: Rename autochomp to autonibble. --- autochomp/benches/parse/data/774.nb | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 autochomp/benches/parse/data/774.nb (limited to 'autochomp/benches/parse/data/774.nb') 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"; -- cgit v1.2.3