Make your own compiler, interpreter, parser, or expression analyzer

From Free Pascal wiki
Revision as of 23:45, 10 September 2018 by Avra (talk | contribs) (added Lex/Yacc info, and links for plex/pyacc and Lazarus Lex and Yacc)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Lex and Yacc

Two of the oldest unix tools. Lex is a lexical analyser (token parser), and Yacc is a Look Ahead Left-to-Right (LALR) parser generator. BNF notation is used as a formal way to express context free grammars. Code and grammar are mixed, so grammar is tied to implementation language.

Plex and Pyacc

Plex and Pyacc are pascal implementations of Lex and Yacc and they are part of your FreePascal distribution.

Lazarus Lex and Yacc

You can find Lazarus Lex and Yacc here.

Gold

Gold Parser

Gold Engines

AntLR

TBD

Coco-R

TBD

Useful tools

See also