qt5base-lts/util/lexgen
Jarek Kobus a7f9d5a7fa Use QList instead of QVector in util
Task-number: QTBUG-84469
Change-Id: I077fb5c32456d438a457c1f73852313ea2ea9ae5
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
2020-07-07 20:34:48 +02:00
..
tests Updated license headers 2016-01-21 18:55:18 +00:00
configfile.cpp Updated license headers 2016-01-21 18:55:18 +00:00
configfile.h Use QList instead of QVector in util 2020-07-07 20:34:48 +02:00
css3-simplified.lexgen Make util/lexgen/ mention itself in its auto-gen line 2018-11-01 15:07:05 +00:00
generator.cpp Use QList instead of QVector in util 2020-07-07 20:34:48 +02:00
generator.h Use QList instead of QVector in util 2020-07-07 20:34:48 +02:00
global.h Updated license headers 2016-01-21 18:55:18 +00:00
lexgen.lexgen Initial import from the monolithic Qt. 2011-04-27 12:05:43 +02:00
lexgen.pri Initial import from the monolithic Qt. 2011-04-27 12:05:43 +02:00
lexgen.pro Initial import from the monolithic Qt. 2011-04-27 12:05:43 +02:00
main.cpp Use QList instead of QVector in util 2020-07-07 20:34:48 +02:00
nfa.cpp Use QList instead of QVector in util 2020-07-07 20:34:48 +02:00
nfa.h Use QList instead of QVector in util 2020-07-07 20:34:48 +02:00
re2nfa.cpp Updated license headers 2016-01-21 18:55:18 +00:00
re2nfa.h Use QList instead of QVector in util 2020-07-07 20:34:48 +02:00
README Make util/lexgen/ mention itself in its auto-gen line 2018-11-01 15:07:05 +00:00
test.lexgen Initial import from the monolithic Qt. 2011-04-27 12:05:43 +02:00
tokenizer.cpp Updated license headers 2016-01-21 18:55:18 +00:00

Lexgen
------

This is a little tool to generate lexical scanners from a rather simplistic
configuration file. We use it internally in Qt to generate the scanner for the
CSS parser that is built into the toolkit (used for the widget styling and the
HTML import into QTextDocument).

Beware, it's very slow (in generating the code) and it may not generate what
you want. But I like that it generates code that operates on QChar and friends.

Use at your own risk ;-)

--
Simon Hausmann <simon.hausmann@qt.io>