From 12ccc075d724f9985be488b162b243f46dff871a Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Wed, 1 Sep 2021 18:33:26 +0200 Subject: Made all tests pass --- src/lib/parser.mly | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/lib/parser.mly') diff --git a/src/lib/parser.mly b/src/lib/parser.mly index 92a8750..20a9a84 100644 --- a/src/lib/parser.mly +++ b/src/lib/parser.mly @@ -47,6 +47,7 @@ obstruent: liquid: | L { T.l } + | L L { T.l } | R { T.r } nasal: @@ -78,7 +79,8 @@ opening_consonant: not *) voyels: | A { T.a , T.a } - | A I { T.e `Opened , T.e `Opened } + | A I { T.voyel_ai , T.voyel_ai } + | E I { T.e `Opened , T.e `Opened } | I { T.i , T.i } | E { T.e `Opened , T.schwa () } | E_ACUTE E? { T.e `Closed , T.e `Closed } -- cgit v1.2.3