<div dir="ltr"><div>Hello,<br></div><div><br>Eight years ago someone asked whether there is a parser combinator library for free pascal, nothing like that existed at that time and also does not seem to exist up to the present day.<br><br>While I was reading about parser combinators in functional programming languages (during my 42nd attempt to learn Haskell) I thought to myself why not try to implement something like that in Object Pascal, just so see how far we can push the boundaries of this imperative object oriented language.<br><br>This is what I have come up with so far:<br><a href="https://github.com/prof7bit/fpc_parser_combinators">https://github.com/prof7bit/fpc_parser_combinators</a><br><br>Since we don't have lambdas I choose the next closest approach to emulate them with object instances instead. This leads to a lot of boiler plate in the definition of the elementary parsers and combinators but fortunately it can all be hidden away in the library and the usage of the combinators looks quite neat:<br><br><span style="font-family:monospace,monospace"> // define the grammar<br>  EXPR      := Num or _PARENS;<br>  MULFUNC   := Sym('mul') and EXPR and EXPR;<br>  ADDFUNC   := Sym('add') and EXPR and EXPR;<br>  INNER     := MULFUNC or ADDFUNC or Num;<br>  PARENS    := Sym('(') and INNER and Sym(')');</span><br><br>Please also note the unorthodox usage of and/or operators to invoke the combinators :-)<br><br></div><div>Please post improvements or variations of this theme, especially I am interested in how to properly build up a syntax tree in the most generic and reusable manner, this is something I have not yet completely understood (because I am myself still quite unfamiliar with this whole parsing business) currently all my parsers only return arrays of strings that I can optionally post-process with an optional hook function after a parser has completed.<br><br></div>Bernd<br></div>