From 77e713191d102cc96c26274602d0fd14d98981a1 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 24 Oct 2023 23:59:23 +0200 Subject: [PATCH] todo --- flap/src/hopix/hopixParser.mly | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flap/src/hopix/hopixParser.mly b/flap/src/hopix/hopixParser.mly index ab92f9a..ca58a5f 100644 --- a/flap/src/hopix/hopixParser.mly +++ b/flap/src/hopix/hopixParser.mly @@ -293,7 +293,8 @@ mid_expression: | e=simple_expression { e } -/* Tagged Value - Construction d'une donnée */ +/* Tagged Value - Construction d'une donnée + * TODO: Conflict shift/reduce sur le expr_list */ | const=located(constructor) tl=option(type_list) el=optionlist(expr_list) { Tagged(const, tl, el) }