fix tdefinition issue (the list wasn't optional)

This commit is contained in:
Nicolas PENELOUX 2023-10-24 16:36:12 +02:00
parent 0fcd634f81
commit a702759618

View file

@ -102,7 +102,7 @@ tdefinition:
list_constructor_and_their_ty:
// TODO: C'est pas sensé être en option list_ty ici?
| c=located(constructor) t=list_ty {
| c=located(constructor) t=optionlist(list_ty) {
(c, t)
}