Re: [fpc-pascal] Parser Generator

2016-05-22 Thread Torsten Bonde Christiansen
On 2016-05-20 10:40, Carlo Kok wrote: On 2016-05-19 13:10, Torsten Bonde Christiansen wrote: Hi. I am currently looking into integrating a custom language parser into my program and have been searching the web for parser generators that can create Pascal code from a custom language. So far i

Re: [fpc-pascal] Parser Generator

2016-05-22 Thread Torsten Bonde Christiansen
On 2016-05-20 10:58, Marc Santhoff wrote: On Fr, 2016-05-20 at 10:53 +0200, Marc Santhoff wrote: There are some tools I liked very much when dealing with language translation in the past, but they don't fit her. None of them generates ^e "they

Re: [fpc-pascal] Parser Generator

2016-05-20 Thread Mark Morgan Lloyd
Marc Santhoff wrote: For the last 30 years or so I've been using a compiler compiler originally written in 1964, the implementation has matured as different pascal compilers have become available. I'm not suggesting that this is usable in the general case, but looked at objectively it does all

Re: [fpc-pascal] Parser Generator

2016-05-20 Thread Marc Santhoff
On Fr, 2016-05-20 at 10:53 +0200, Marc Santhoff wrote: > There are some tools I liked very much when dealing with language > translation in the past, but they don't fit her. None of them generates ^e "they don't fit here." Fatal typo. I know Torste

Re: [fpc-pascal] Parser Generator

2016-05-20 Thread Marc Santhoff
On Fr, 2016-05-20 at 08:38 +, Mark Morgan Lloyd wrote: > Marc Santhoff wrote: > > On Do, 2016-05-19 at 13:10 +0200, Torsten Bonde Christiansen wrote: > > > >> * GOLD Parser: http://www.goldparser.org/ > > >> * COCO/R: http://www.ssw.uni-linz.ac.at/Research/Projects/Coco/ > > >> * TP Yacc/Lex

Re: [fpc-pascal] Parser Generator

2016-05-20 Thread Carlo Kok
On 2016-05-19 13:10, Torsten Bonde Christiansen wrote: Hi. I am currently looking into integrating a custom language parser into my program and have been searching the web for parser generators that can create Pascal code from a custom language. So far in my search i have found the following

Re: [fpc-pascal] Parser Generator

2016-05-20 Thread Mark Morgan Lloyd
Marc Santhoff wrote: On Do, 2016-05-19 at 13:10 +0200, Torsten Bonde Christiansen wrote: * GOLD Parser: http://www.goldparser.org/ * COCO/R: http://www.ssw.uni-linz.ac.at/Research/Projects/Coco/ * TP Yacc/Lex: (included in Free Pascal) http://www.atocc.de/cgi-bin/atocc/site.cgi?lang=en

Re: [fpc-pascal] Parser Generator

2016-05-19 Thread Marc Santhoff
On Do, 2016-05-19 at 13:10 +0200, Torsten Bonde Christiansen wrote: > * GOLD Parser: http://www.goldparser.org/ > Was last updated in sept. 2012 and the lastest pascal implementation is > not for the lastest version of the program! > > * COCO/R: http://www.ssw.uni-linz.ac.at/Research/Projects/Co

Re: [fpc-pascal] Parser Generator

2016-05-19 Thread leledumbo
> I am currently looking into integrating a custom language parser into my > program and have been > searching the web for parser generators that can create Pascal code from > a custom language. No parser generator that I know includes a code generator, you must write that part yourself at least

[fpc-pascal] Parser Generator

2016-05-19 Thread Torsten Bonde Christiansen
Hi. I am currently looking into integrating a custom language parser into my program and have been searching the web for parser generators that can create Pascal code from a custom language. So far in my search i have found the following "options": * GOLD Parser: http://www.goldparser.org/ W