From 244d9f7f74e2d5db6caa1737fa8bcec8cf4dddd3 Mon Sep 17 00:00:00 2001 From: ydah <13041216+ydah@users.noreply.github.com> Date: Sun, 28 Jan 2024 18:16:14 +0900 Subject: [PATCH] Adding an overview of Parameterizing rules to the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4afdee2f..95ead214 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,9 @@ Lrama is LALR (1) parser generator written by Ruby. The first goal of this proje * b4_lac_if is always false * Error Tolerance parser * Subset of [Repairing Syntax Errors in LR Parsers (Corchuelo et al.)](https://idus.us.es/bitstream/handle/11441/65631/Repairing%20syntax%20errors.pdf) algorithm is supported +* Parameterizing rules + * The definition of a non-terminal symbol can be parameterized with other (terminal or non-terminal) symbols. + * Providing a generic definition of parameterizing rules as a [standard library](lib/lrama/grammar/stdlib.y). ## Installation