qt5base-lts/util/lexgen
David Skoland 27d96b4789 Replace QtTest headers with QTest
Complete search and replace of QtTest and QtTest/QtTest with QTest, as
QtTest includes the whole module. Replace all such instances with
correct header includes. See Jira task for more discussion.

Fixes: QTBUG-88831
Change-Id: I981cfae18a1cabcabcabee376016b086d9d01f44
Pick-to: 6.0
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
2020-12-22 15:20:30 +01:00
..
tests Replace QtTest headers with QTest 2020-12-22 15:20:30 +01:00
configfile.cpp
configfile.h Use QList instead of QVector in util 2020-07-07 20:34:48 +02:00
css3-simplified.lexgen
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
lexgen.lexgen
lexgen.pri
lexgen.pro
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
re2nfa.h Use QList instead of QVector in util 2020-07-07 20:34:48 +02:00
README
test.lexgen
tokenizer.cpp

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>