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 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>