From 1fed8429d17f04133c061dd23f564a2ead9fc074 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Thu, 11 Jun 2020 23:46:34 +0100 Subject: [PATCH] Add a useful article about parser algorithms in details to the dev.org --- dev.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev.org b/dev.org index a79a10a..6304e05 100644 --- a/dev.org +++ b/dev.org @@ -1,4 +1,6 @@ * Parser +First of all you need to read [[https://tomassetti.me/guide-parsing-algorithms-terminology/][All you need to know about Parser algorithms]]. +Then here is the list or parsers that we have considered - Rust parser combinator framework :: https://github.com/Geal/nom/ - LR(1) parser generator for Rust :: https://github.com/lalrpop/lalrpop - A parser combinator library for Rust :: https://github.com/Marwes/combine