From 2e44ba6dcd1ff0e6a77f04028016aa8d3ac8b30e Mon Sep 17 00:00:00 2001 From: Mylloon Date: Wed, 18 Oct 2023 13:59:54 +0200 Subject: [PATCH] fix recfunctions keyword --- flap/src/hopix/hopixParser.mly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flap/src/hopix/hopixParser.mly b/flap/src/hopix/hopixParser.mly index d2051e7..1dc3bb4 100644 --- a/flap/src/hopix/hopixParser.mly +++ b/flap/src/hopix/hopixParser.mly @@ -71,7 +71,7 @@ vdefinition: * Exemple : * - fun : int f a = 1 * - fun f a = 1 and : int g a = 2 */ -| FUN fl=separated_nonempty_list(AND, fundef) { +| FUN fl=separated_nonempty_list(AND_KW, fundef) { RecFunctions(fl) }