qt5base-lts/util/lexgen
Jani Heikkinen 83a5694dc2 Update copyright headers
Qt copyrights are now in The Qt Company, so we could update the source
code headers accordingly. In the same go we should also fix the links to
point to qt.io.

Outdated header.LGPL removed (use header.LGPL21 instead)

Old header.LGPL3 renamed to header.LGPL3-COMM to match actual licensing
combination. New header.LGPL-COMM taken in the use file which were
using old header.LGPL3 (src/plugins/platforms/android/extract.cpp)

Added new header.LGPL3 containing Commercial + LGPLv3 + GPLv2 license
combination

Change-Id: I6f49b819a8a20cc4f88b794a8f6726d975e8ffbe
Reviewed-by: Matti Paaso <matti.paaso@theqtcompany.com>
2015-02-11 06:49:51 +00:00
..
tests Update copyright headers 2015-02-11 06:49:51 +00:00
configfile.cpp Update copyright headers 2015-02-11 06:49:51 +00:00
configfile.h Update copyright headers 2015-02-11 06:49:51 +00:00
css2-simplified.lexgen Initial import from the monolithic Qt. 2011-04-27 12:05:43 +02:00
generator.cpp Update copyright headers 2015-02-11 06:49:51 +00:00
generator.h Update copyright headers 2015-02-11 06:49:51 +00:00
global.h Update copyright headers 2015-02-11 06:49:51 +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 Update copyright headers 2015-02-11 06:49:51 +00:00
nfa.cpp Update copyright headers 2015-02-11 06:49:51 +00:00
nfa.h Update copyright headers 2015-02-11 06:49:51 +00:00
re2nfa.cpp Update copyright headers 2015-02-11 06:49:51 +00:00
re2nfa.h Update copyright headers 2015-02-11 06:49:51 +00:00
README Nokia -> Qt Project 2013-02-05 20:53:57 +01:00
test.lexgen Initial import from the monolithic Qt. 2011-04-27 12:05:43 +02:00
tokenizer.cpp Update copyright headers 2015-02-11 06:49:51 +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@digia.com>