summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2021-09-05 20:22:38 +0200
committerSébastien Dailly <sebastien@chimrod.com>2021-09-05 20:22:38 +0200
commita4ec992ad24a5f62e8795f608b3d7943db0d8c1a (patch)
tree3355258a2c242be5d1322ef02a239cfd72b5713a /src/lib
parent6a34154b77ac80f89df816ba0062f382d915fb22 (diff)
Updated tests
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/parser.mly7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/lib/parser.mly b/src/lib/parser.mly
index 8fe4a55..925ce9f 100644
--- a/src/lib/parser.mly
+++ b/src/lib/parser.mly
@@ -94,14 +94,11 @@ voyels_semi:
| voyels { $1 }
| W A { Sounds.diphtongue Sounds.semi_voyel_w Sounds.a}
| W I { Sounds.diphtongue Sounds.semi_voyel_w Sounds.i}
- | I E { Sounds.diphtongue Sounds.i (Sounds.e `Opened) }
+ | I voyels { Sounds.diphtongue Sounds.semi_voyel_y $2 }
ending_consonant:
| Nothing { Some (Sounds.none) }
- | B { Some (Sounds.b ) }
- | T { Some (Sounds.t )}
- | K { Some (Sounds.k)}
- | G { Some (Sounds.g)}
+ | occlusiv { Some $1 }
| liquid { Some $1 }
| nasal { Some $1 }