Remove references to Quex from the README and the tutorial

TN: R913-030
This commit is contained in:
Pierre-Marie de Rodat
2019-02-08 10:06:29 +01:00
committed by Beguet Romain
parent 0af94b829b
commit c2cfbc9f04
2 changed files with 3 additions and 10 deletions

View File

@@ -18,9 +18,6 @@ Dependencies
To use Langkit:
- [Quex version
0.65.4](http://sourceforge.net/projects/quex/files/HISTORY/0.65)
Follow the installation guide in the quex `README`
- The mako template system for Python (see `REQUIREMENTS.dev`)
- Clang-format

View File

@@ -35,9 +35,6 @@ install:
* `GNATcoll <http://docs.adacore.com/gnatcoll-docs/>`_, an Ada library
providing various utilities;
* `Quex <http://sourceforge.net/projects/quex/files/HISTORY/0.64/>`_ (a lexer
generator), version 0.64.8;
* Mako, a template system for Python which should already be installed if you
used ``setup.py/easy_install/pip/...`` to install Langkit.
@@ -110,10 +107,9 @@ Lexing
We are about to start with the most elementary piece of code that will handle
our language: the lexer! Also known as a scanner, a lexer will take a stream
of text (i.e. your source files) and split it into *tokens* (or *lexemes*),
which are kind of "words" for programming languages. Langkit relies on Quex to
generate an efficient lexer but hides the gory details and lets you just
write a Python description for the lexer. Fire up your favorite code editor and
open ``language/lexer.py``.
which are kind of "words" for programming languages. Langkit hides the gory
details and lets you just write a Python description for the lexer. Fire up
your favorite code editor and open ``language/lexer.py``.
This module contains three blocks: