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