summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp29
-rw-r--r--src/tools/qdoc/config.cpp2
-rw-r--r--src/tools/qdoc/cppcodemarker.cpp8
-rw-r--r--src/tools/qdoc/ditaxmlgenerator.cpp3
-rw-r--r--src/tools/qdoc/doc/files/qtgui.qdocconf2
-rw-r--r--src/tools/qdoc/doc/qdoc-manual-cmdindex.qdoc234
-rw-r--r--src/tools/qdoc/doc/qdoc-manual-contextcmds.qdoc56
-rw-r--r--src/tools/qdoc/doc/qdoc-manual-intro.qdoc4
-rw-r--r--src/tools/qdoc/doc/qdoc-manual-markupcmds.qdoc157
-rw-r--r--src/tools/qdoc/doc/qdoc-manual-qdocconf.qdoc70
-rw-r--r--src/tools/qdoc/generator.cpp10
-rw-r--r--src/tools/qdoc/generator.h1
-rw-r--r--src/tools/qdoc/htmlgenerator.cpp8
-rw-r--r--src/tools/qdoc/main.cpp21
-rw-r--r--src/tools/qdoc/node.cpp7
-rw-r--r--src/tools/qdoc/node.h2
-rw-r--r--src/tools/qdoc/qdocdatabase.cpp39
-rw-r--r--src/tools/qdoc/qdocdatabase.h2
-rw-r--r--src/tools/qdoc/qdocindexfiles.cpp49
-rw-r--r--src/tools/qdoc/qmlparser/qqmljs.g84
-rw-r--r--src/tools/qdoc/qmlparser/qqmljsast.cpp24
-rw-r--r--src/tools/qdoc/qmlparser/qqmljsast_p.h160
-rw-r--r--src/tools/qdoc/qmlparser/qqmljsastfwd_p.h4
-rw-r--r--src/tools/qdoc/qmlparser/qqmljsastvisitor_p.h8
-rw-r--r--src/tools/qdoc/qmlparser/qqmljsengine_p.h1
-rw-r--r--src/tools/qdoc/qmlparser/qqmljsglobal_p.h4
-rw-r--r--src/tools/qdoc/qmlparser/qqmljsgrammar.cpp1670
-rw-r--r--src/tools/qdoc/qmlparser/qqmljsgrammar_p.h43
-rw-r--r--src/tools/qdoc/qmlparser/qqmljskeywords_p.h11
-rw-r--r--src/tools/qdoc/qmlparser/qqmljslexer.cpp76
-rw-r--r--src/tools/qdoc/qmlparser/qqmljslexer_p.h4
-rw-r--r--src/tools/qdoc/qmlparser/qqmljsparser.cpp481
-rw-r--r--src/tools/qdoc/qmlparser/qqmljsparser_p.h9
-rw-r--r--src/tools/qdoc/qmlvisitor.cpp37
-rw-r--r--src/tools/qdoc/qmlvisitor.h4
35 files changed, 1808 insertions, 1516 deletions
diff --git a/src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp b/src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp
index f2b9441ea4..6dd88824b5 100644
--- a/src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp
+++ b/src/tools/qdbusxml2cpp/qdbusxml2cpp.cpp
@@ -509,10 +509,10 @@ static QString stringify(const QString &data)
return retval;
}
-static void openFile(const QString &fileName, QFile &file)
+static bool openFile(const QString &fileName, QFile &file)
{
if (fileName.isEmpty())
- return;
+ return false;
bool isOk = false;
if (fileName == QLatin1String("-")) {
@@ -525,6 +525,7 @@ static void openFile(const QString &fileName, QFile &file)
if (!isOk)
fprintf(stderr, "Unable to open '%s': %s\n", qPrintable(fileName),
qPrintable(file.errorString()));
+ return isOk;
}
static void writeProxy(const QString &filename, const QDBusIntrospection::Interfaces &interfaces)
@@ -821,15 +822,17 @@ static void writeProxy(const QString &filename, const QDBusIntrospection::Interf
hs.flush();
QFile file;
- openFile(headerName, file);
- file.write(headerData);
+ const bool headerOpen = openFile(headerName, file);
+ if (headerOpen)
+ file.write(headerData);
if (headerName == cppName) {
- file.write(cppData);
+ if (headerOpen)
+ file.write(cppData);
} else {
QFile cppFile;
- openFile(cppName, cppFile);
- cppFile.write(cppData);
+ if (openFile(cppName, cppFile))
+ cppFile.write(cppData);
}
}
@@ -1125,15 +1128,17 @@ static void writeAdaptor(const QString &filename, const QDBusIntrospection::Inte
hs.flush();
QFile file;
- openFile(headerName, file);
- file.write(headerData);
+ const bool headerOpen = openFile(headerName, file);
+ if (headerOpen)
+ file.write(headerData);
if (headerName == cppName) {
- file.write(cppData);
+ if (headerOpen)
+ file.write(cppData);
} else {
QFile cppFile;
- openFile(cppName, cppFile);
- cppFile.write(cppData);
+ if (openFile(cppName, cppFile))
+ cppFile.write(cppData);
}
}
diff --git a/src/tools/qdoc/config.cpp b/src/tools/qdoc/config.cpp
index cb9b8c3269..2d8e98d64c 100644
--- a/src/tools/qdoc/config.cpp
+++ b/src/tools/qdoc/config.cpp
@@ -703,7 +703,7 @@ QStringList Config::getAllFiles(const QString &filesVar,
const QSet<QString> &excludedDirs,
const QSet<QString> &excludedFiles)
{
- QStringList result = getStringList(filesVar);
+ QStringList result = getCanonicalPathList(filesVar);
QStringList dirs = getCanonicalPathList(dirsVar);
QString nameFilter = getString(filesVar + dot + CONFIG_FILEEXTENSIONS);
diff --git a/src/tools/qdoc/cppcodemarker.cpp b/src/tools/qdoc/cppcodemarker.cpp
index 24bd654238..64b11109f7 100644
--- a/src/tools/qdoc/cppcodemarker.cpp
+++ b/src/tools/qdoc/cppcodemarker.cpp
@@ -1111,6 +1111,10 @@ QList<Section> CppCodeMarker::qmlSections(const QmlClassNode* qmlClassNode, Syno
while (qcn != 0) {
NodeList::ConstIterator c = qcn->childNodes().constBegin();
while (c != qcn->childNodes().constEnd()) {
+ if ((*c)->status() == Node::Internal) {
+ ++c;
+ continue;
+ }
if ((*c)->type() == Node::QmlPropertyGroup) {
insert(qmlproperties, *c, style, Okay);
}
@@ -1172,6 +1176,10 @@ QList<Section> CppCodeMarker::qmlSections(const QmlClassNode* qmlClassNode, Syno
while (qcn != 0) {
NodeList::ConstIterator c = qcn->childNodes().constBegin();
while (c != qcn->childNodes().constEnd()) {
+ if ((*c)->status() == Node::Internal) {
+ ++c;
+ continue;
+ }
if ((*c)->type() == Node::QmlPropertyGroup) {
insert(qmlproperties,*c,style,Okay);
}
diff --git a/src/tools/qdoc/ditaxmlgenerator.cpp b/src/tools/qdoc/ditaxmlgenerator.cpp
index 095e3c9d30..e3b9bdd264 100644
--- a/src/tools/qdoc/ditaxmlgenerator.cpp
+++ b/src/tools/qdoc/ditaxmlgenerator.cpp
@@ -682,7 +682,8 @@ void DitaXmlGenerator::generateTree()
qdb_->generateIndex(outputDir() + QLatin1Char('/') + fileBase + ".index",
projectUrl,
projectDescription,
- this);
+ this,
+ true);
}
if (!runPrepareOnly()) {
diff --git a/src/tools/qdoc/doc/files/qtgui.qdocconf b/src/tools/qdoc/doc/files/qtgui.qdocconf
index 5073dd7f0f..7f80808bfc 100644
--- a/src/tools/qdoc/doc/files/qtgui.qdocconf
+++ b/src/tools/qdoc/doc/files/qtgui.qdocconf
@@ -2,7 +2,7 @@ include($QT_INSTALL_DOCS/global/qt-module-defaults.qdocconf)
project = QtGui
description = Qt GUI Reference Documentation
-url = http://qt-project.org/doc/qt-$QT_VER/qtgui
+url = http://qt-project.org/doc/qt-$QT_VER
version = $QT_VERSION
examplesinstallpath = gui
diff --git a/src/tools/qdoc/doc/qdoc-manual-cmdindex.qdoc b/src/tools/qdoc/doc/qdoc-manual-cmdindex.qdoc
index 97d9151e40..a713b2738d 100644
--- a/src/tools/qdoc/doc/qdoc-manual-cmdindex.qdoc
+++ b/src/tools/qdoc/doc/qdoc-manual-cmdindex.qdoc
@@ -37,123 +37,123 @@
\list
- \li \l {04-qdoc-commands-textmarkup.html#a-command} {\\a}
- \li \l {11-qdoc-commands-specialcontent.html#abstract-command} {\\abstract}
- \li \l {12-0-qdoc-commands-miscellaneous.html#annotatedlist-command} {\\annotatedlist}
- \li \l {04-qdoc-commands-textmarkup.html#b-command} {\\b} \span {class="newStuff"} {(new 5/3/2012)}
- \li \l {04-qdoc-commands-textmarkup.html#b-command} {\\bold} \span {class="newStuff"} {(deprecated, use \\b)}
- \li \l {11-qdoc-commands-specialcontent.html#brief-command} {\\brief}
- \li \l {04-qdoc-commands-textmarkup.html#c-command} {\\c}
- \li \l {09-qdoc-commands-includingimages.html#caption-command} {\\caption}
- \li \l {05-qdoc-commands-documentstructure.html#chapter-command} {\\chapter}
- \li \l {13-qdoc-commands-topics.html#class-command} {\\class}
- \li \l {06-qdoc-commands-includecodeinline.html#code-command} {\\code}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#codeline-command} {\\codeline},
- \li \l {16-qdoc-commands-status.html#compat-command} {\\compat}
- \li \l {15-qdoc-commands-navigation.html#contentspage-command} {\\contentspage}
- \li \l {16-qdoc-commands-status.html#default-command} {\\default}
- \li \l {21-0-qdoc-creating-dita-maps.html#ditamap-command} {\\ditamap} \span {class="newStuff"} {(new 05/03/12)}
- \li \l {04-qdoc-commands-textmarkup.html#div-command} {\\div}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#dots-command} {\\dots}
- \li \l {04-qdoc-commands-textmarkup.html#e-command} {\\e} \span {class="newStuff"} {(new 5/3/2012)}
- \li \l {12-0-qdoc-commands-miscellaneous.html#else-command} {\\else}
- \li \l {12-0-qdoc-commands-miscellaneous.html#endif-command} {\\endif}
- \li \l {13-qdoc-commands-topics.html#enum-command} {\\enum}
- \li \l {13-qdoc-commands-topics.html#example-command} {\\example}
- \li \l {13-qdoc-commands-topics.html#externalpage-command} {\\externalpage}
- \li \l {13-qdoc-commands-topics.html#fn-command} {\\fn}
- \li \l {11-qdoc-commands-specialcontent.html#footnote-command} {\\footnote}
- \li \l {12-0-qdoc-commands-miscellaneous.html#generatelist-command} {\\generatelist}
- \li \l {13-qdoc-commands-topics.html#group-command} {\\group}
- \li \l {10-qdoc-commands-tablesandlists.html#header-command} {\\header}
- \li \l {13-qdoc-commands-topics.html#headerfile-command} {\\headerfile}
- \li \l {04-qdoc-commands-textmarkup.html#e-command} {\\i} \span {class="newStuff"} {(deprecated, use \\e)}
- \li \l {12-0-qdoc-commands-miscellaneous.html#if-command} {\\if}
- \li \l {09-qdoc-commands-includingimages.html#image-command} {\\image}
- \li \l {12-0-qdoc-commands-miscellaneous.html#include-command} {\\include}
- \li \l {15-qdoc-commands-navigation.html#indexpage-command} {\\indexpage}
- \li \l {19-qdoc-commands-grouping.html#ingroup-command} {\\ingroup}
- \li \l {18-qdoc-commands-relating.html#inherits-command}{\\inherits}
- \li \l {09-qdoc-commands-includingimages.html#inlineimage-command} {\\inlineimage}
- \li \l {19-qdoc-commands-grouping.html#inmodule-command} {\\inmodule}
- \li \l {13-qdoc-commands-topics.html#inqmlmodule-command} {\\inqmlmodule}
- \li \l {13-qdoc-commands-topics.html#instantiates-command} {\\instantiates} \span {class="newStuff"} {(new 27/7/2012)}
- \li \l {16-qdoc-commands-status.html#internal-command} {\\internal}
- \li \l {08-qdoc-commands-creatinglinks.html#keyword-command} {\\keyword}
- \li \l {08-qdoc-commands-creatinglinks.html#l-command} {\\l}
- \li \l {11-qdoc-commands-specialcontent.html#legalese-command} {\\legalese}
- \li \l {10-qdoc-commands-tablesandlists.html#li-command} {\\li} \span {class="newStuff"} {(new 5/3/2012)}
- \li \l {10-qdoc-commands-tablesandlists.html#list-command} {\\list}
- \li \l {13-qdoc-commands-topics.html#macro-command} {\\macro}
- \li \l {19-qdoc-commands-grouping.html#mainclass-command} {\\mainclass}
- \li \l {21-0-qdoc-creating-dita-maps.html#mapref-command} {\\mapref} \span {class="newStuff"} {(new 05/03/12)}
- \li \l {12-0-qdoc-commands-miscellaneous.html#meta-command} {\\meta}
- \li \l {13-qdoc-commands-topics.html#module-command} {\\module}
- \li \l {13-qdoc-commands-topics.html#namespace-command} {\\namespace}
- \li \l {15-qdoc-commands-navigation.html#nextpage-command} {\\nextpage}
- \li \l {06-qdoc-commands-includecodeinline.html#newcode-command} {\\newcode}
- \li \l {17-qdoc-commands-thread.html#nonreentrant-command} {\\nonreentrant}
- \li \l {11-qdoc-commands-specialcontent.html#note-command} {\\note}
- \li \l {10-qdoc-commands-tablesandlists.html#li-command} {\\o} \span {class="newStuff"} {(deprecated, use \\li)}
+ \li \l {a-command} {\\a}
+ \li \l {abstract-command} {\\abstract}
+ \li \l {annotatedlist-command} {\\annotatedlist}
+ \li \l {b-command} {\\b} \span {class="newStuff"}
+ \li \l {b-command} {\\bold} \span {class="newStuff"} {(deprecated, use \\b)}
+ \li \l {brief-command} {\\brief}
+ \li \l {c-command} {\\c}
+ \li \l {caption-command} {\\caption}
+ \li \l {chapter-command} {\\chapter}
+ \li \l {class-command} {\\class}
+ \li \l {code-command} {\\code}
+ \li \l {codeline-command} {\\codeline},
+ \li \l {compat-command} {\\compat}
+ \li \l {contentspage-command} {\\contentspage}
+ \li \l {default-command} {\\default}
+ \li \l {ditamap-command} {\\ditamap} \span {class="newStuff"}
+ \li \l {div-command} {\\div}
+ \li \l {dots-command} {\\dots}
+ \li \l {e-command} {\\e} \span {class="newStuff"}
+ \li \l {else-command} {\\else}
+ \li \l {endif-command} {\\endif}
+ \li \l {enum-command} {\\enum}
+ \li \l {example-command} {\\example}
+ \li \l {externalpage-command} {\\externalpage}
+ \li \l {fn-command} {\\fn}
+ \li \l {footnote-command} {\\footnote}
+ \li \l {generatelist-command} {\\generatelist}
+ \li \l {group-command} {\\group}
+ \li \l {header-command} {\\header}
+ \li \l {headerfile-command} {\\headerfile}
+ \li \l {e-command} {\\i} \span {class="newStuff"} {(deprecated, use \\e)}
+ \li \l {if-command} {\\if}
+ \li \l {image-command} {\\image}
+ \li \l {include-command} {\\include}
+ \li \l {indexpage-command} {\\indexpage}
+ \li \l {ingroup-command} {\\ingroup}
+ \li \l {inherits-command}{\\inherits}
+ \li \l {inlineimage-command} {\\inlineimage}
+ \li \l {inmodule-command} {\\inmodule}
+ \li \l {inqmlmodule-command} {\\inqmlmodule}
+ \li \l {instantiates-command} {\\instantiates} \span {class="newStuff"} {(new 27/7/2012)}
+ \li \l {internal-command} {\\internal}
+ \li \l {keyword-command} {\\keyword}
+ \li \l {l-command} {\\l}
+ \li \l {legalese-command} {\\legalese}
+ \li \l {li-command} {\\li} \span {class="newStuff"}
+ \li \l {list-command} {\\list}
+ \li \l {macro-command} {\\macro}
+ \li \l {mainclass-command} {\\mainclass}
+ \li \l {mapref-command} {\\mapref} \span {class="newStuff"}
+ \li \l {meta-command} {\\meta}
+ \li \l {module-command} {\\module}
+ \li \l {namespace-command} {\\namespace}
+ \li \l {nextpage-command} {\\nextpage}
+ \li \l {newcode-command} {\\newcode}
+ \li \l {nonreentrant-command} {\\nonreentrant}
+ \li \l {note-command} {\\note}
+ \li \l {li-command} {\\o} \span {class="newStuff"} {(deprecated, use \\li)}
- \li \l {16-qdoc-commands-status.html#obsolete-command} {\\obsolete}
- \li \l {06-qdoc-commands-includecodeinline.html#oldcode-command} {\\oldcode}
- \li \l {12-0-qdoc-commands-miscellaneous.html#omit-command} {\\omit}
- \li \l {10-qdoc-commands-tablesandlists.html#omitvalue-command} {\\omitvalue}
- \li \l {18-qdoc-commands-relating.html#overload-command} {\\overload}
- \li \l {13-qdoc-commands-topics.html#page-command} {\\page}
- \li \l {05-qdoc-commands-documentstructure.html#part-command} {\\part}
- \li \l {16-qdoc-commands-status.html#preliminary-command} {\\preliminary}
- \li \l {15-qdoc-commands-navigation.html#previouspage-command} {\\previouspage}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#printline-command} {\\printline}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#printto-command} {\\printto}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#printuntil-command} {\\printuntil}
- \li \l {13-qdoc-commands-topics.html#property-command} {\\property}
- \li \l {13-qdoc-commands-topics.html#qmlattachedproperty-command} {\\qmlattachedproperty}
- \li \l {13-qdoc-commands-topics.html#qmlattachedsignal-command} {\\qmlattachedsignal}
- \li \l {13-qdoc-commands-topics.html#qmlbasictype-command} {\\qmlbasictype}
- \li \l {13-qdoc-commands-topics.html#qmlclass-command} {\\qmlclass} \span {class="newStuff"} {(deprecated, use \\qmltype)}
- \li \l {13-qdoc-commands-topics.html#qmltype-command} {\\qmltype} \span {class="newStuff"} {(new 27/7/2012)}
- \li \l {13-qdoc-commands-topics.html#qmlmethod-command} {\\qmlmethod}
- \li \l {13-qdoc-commands-topics.html#qmlproperty-command} {\\qmlproperty}
- \li \l {13-qdoc-commands-topics.html#qmlsignal-command} {\\qmlsignal}
- \li \l {13-qdoc-commands-topics.html#qmlmodule-command} {\\qmlmodule}
- \li \l {11-qdoc-commands-specialcontent.html#quotation-command} {\\quotation}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#quotefile-command} {\\quotefile}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#quotefromfile-command} {\\quotefromfile}
- \li \l {12-0-qdoc-commands-miscellaneous.html#raw-command} {\\raw} \span {class="newStuff"} {(avoid)}
- \li \l {17-qdoc-commands-thread.html#reentrant-command} {\\reentrant}
- \li \l {18-qdoc-commands-relating.html#reimp-command} {\\reimp}
- \li \l {18-qdoc-commands-relating.html#relates-command} {\\relates}
- \li \l {10-qdoc-commands-tablesandlists.html#row-command} {\\row}
- \li \l {08-qdoc-commands-creatinglinks.html#sa-command} {\\sa}
- \li \l {05-qdoc-commands-documentstructure.html#sectionOne-command} {\\section1}
- \li \l {05-qdoc-commands-documentstructure.html#sectionTwo-command} {\\section2}
- \li \l {05-qdoc-commands-documentstructure.html#sectionThree-command} {\\section3}
- \li \l {05-qdoc-commands-documentstructure.html#sectionFour-command} {\\section4}
- \li \l {13-qdoc-commands-topics.html#service-command} {\\service}
- \li \l {16-qdoc-commands-status.html#since-command} {\\since}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#skipline-command} {\\skipline}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#skipto-command} {\\skipto}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#skipuntil-command} {\\skipuntil}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#snippet-command} {\\snippet},
- \li \l {04-qdoc-commands-textmarkup.html#span-command} {\\span}
- \li \l {15-qdoc-commands-navigation.html#startpage-command} {\\startpage}
- \li \l {04-qdoc-commands-textmarkup.html#sub-command} {\\sub}
- \li \l {20-qdoc-commands-namingthings.html#subtitle-command} {\\subtitle}
- \li \l {04-qdoc-commands-textmarkup.html#sup-command} {\\sup}
- \li \l {10-qdoc-commands-tablesandlists.html#table-command} {\\table}
- \li \l {11-qdoc-commands-specialcontent.html#tableofcontents-command} {\\tableofcontents}
- \li \l {08-qdoc-commands-creatinglinks.html#target-command} {\\target}
- \li \l {17-qdoc-commands-thread.html#threadsafe-command} {\\threadsafe}
- \li \l {20-qdoc-commands-namingthings.html#title-command} {\\title}
- \li \l {21-0-qdoc-creating-dita-maps.html#topicref-command} {\\topicref} \span {class="newStuff"} {(new 05/03/12)}
- \li \l {04-qdoc-commands-textmarkup.html#tt-command} {\\tt}
- \li \l {13-qdoc-commands-topics.html#typedef-command} {\\typedef}
- \li \l {04-qdoc-commands-textmarkup.html#uicontrol-command} {\\uicontrol} {(new 25/3/2012)}
- \li \l {04-qdoc-commands-textmarkup.html#underline-command} {\\underline}
- \li \l {13-qdoc-commands-topics.html#variable-command} {\\variable}
- \li \l {10-qdoc-commands-tablesandlists.html#value-command} {\\value}
- \li \l {11-qdoc-commands-specialcontent.html#warning-command} {\\warning}
+ \li \l {obsolete-command} {\\obsolete}
+ \li \l {oldcode-command} {\\oldcode}
+ \li \l {omit-command} {\\omit}
+ \li \l {omitvalue-command} {\\omitvalue}
+ \li \l {overload-command} {\\overload}
+ \li \l {page-command} {\\page}
+ \li \l {part-command} {\\part}
+ \li \l {preliminary-command} {\\preliminary}
+ \li \l {previouspage-command} {\\previouspage}
+ \li \l {printline-command} {\\printline}
+ \li \l {printto-command} {\\printto}
+ \li \l {printuntil-command} {\\printuntil}
+ \li \l {property-command} {\\property}
+ \li \l {qmlattachedproperty-command} {\\qmlattachedproperty}
+ \li \l {qmlattachedsignal-command} {\\qmlattachedsignal}
+ \li \l {qmlbasictype-command} {\\qmlbasictype}
+ \li \l {qmlclass-command} {\\qmlclass} \span {class="newStuff"} {(deprecated, use \\qmltype)}
+ \li \l {qmltype-command} {\\qmltype} \span {class="newStuff"}
+ \li \l {qmlmethod-command} {\\qmlmethod}
+ \li \l {qmlproperty-command} {\\qmlproperty}
+ \li \l {qmlsignal-command} {\\qmlsignal}
+ \li \l {qmlmodule-command} {\\qmlmodule}
+ \li \l {quotation-command} {\\quotation}
+ \li \l {quotefile-command} {\\quotefile}
+ \li \l {quotefromfile-command} {\\quotefromfile}
+ \li \l {raw-command} {\\raw} \span {class="newStuff"} {(avoid)}
+ \li \l {reentrant-command} {\\reentrant}
+ \li \l {reimp-command} {\\reimp}
+ \li \l {relates-command} {\\relates}
+ \li \l {row-command} {\\row}
+ \li \l {sa-command} {\\sa}
+ \li \l {sectionOne-command} {\\section1}
+ \li \l {sectionTwo-command} {\\section2}
+ \li \l {sectionThree-command} {\\section3}
+ \li \l {sectionFour-command} {\\section4}
+ \li \l {service-command} {\\service}
+ \li \l {since-command} {\\since}
+ \li \l {skipline-command} {\\skipline}
+ \li \l {skipto-command} {\\skipto}
+ \li \l {skipuntil-command} {\\skipuntil}
+ \li \l {snippet-command} {\\snippet},
+ \li \l {span-command} {\\span}
+ \li \l {startpage-command} {\\startpage}
+ \li \l {sub-command} {\\sub}
+ \li \l {subtitle-command} {\\subtitle}
+ \li \l {sup-command} {\\sup}
+ \li \l {table-command} {\\table}
+ \li \l {tableofcontents-command} {\\tableofcontents}
+ \li \l {target-command} {\\target}
+ \li \l {threadsafe-command} {\\threadsafe}
+ \li \l {title-command} {\\title}
+ \li \l {topicref-command} {\\topicref} \span {class="newStuff"}
+ \li \l {tt-command} {\\tt}
+ \li \l {typedef-command} {\\typedef}
+ \li \l {uicontrol-command} {\\uicontrol}
+ \li \l {underline-command} {\\underline}
+ \li \l {variable-command} {\\variable}
+ \li \l {value-command} {\\value}
+ \li \l {warning-command} {\\warning}
\endlist
*/
diff --git a/src/tools/qdoc/doc/qdoc-manual-contextcmds.qdoc b/src/tools/qdoc/doc/qdoc-manual-contextcmds.qdoc
index 8faf4a7f0d..1f777ea441 100644
--- a/src/tools/qdoc/doc/qdoc-manual-contextcmds.qdoc
+++ b/src/tools/qdoc/doc/qdoc-manual-contextcmds.qdoc
@@ -46,28 +46,28 @@
below the \l {Topic Commands} {topic} command.
\list
- \li \l {16-qdoc-commands-status.html#compat-command}{\\compat},
- \li \l {15-qdoc-commands-navigation.html#contentspage-command}{\\contentspage},
- \li \l {15-qdoc-commands-navigation.html#indexpage-command}{\\indexpage},
- \li \l {19-qdoc-commands-grouping.html#ingroup-command}{\\ingroup},
- \li \l {18-qdoc-commands-relating.html#inherits-command}{\\inherits},
- \li \l {19-qdoc-commands-grouping.html#inmodule-command}{\\inmodule},
- \li \l {16-qdoc-commands-status.html#internal-command}{\\internal},
- \li \l {19-qdoc-commands-grouping.html#mainclass-command}{\\mainclass},
- \li \l {15-qdoc-commands-navigation.html#nextpage-command}{\\nextpage},
- \li \l {17-qdoc-commands-thread.html#nonreentrant-command}{\\nonreentrant},
- \li \l {16-qdoc-commands-status.html#obsolete-command}{\\obsolete},
- \li \l {18-qdoc-commands-relating.html#overload-command}{\\overload},
- \li \l {16-qdoc-commands-status.html#preliminary-command}{\\preliminary},
- \li \l {15-qdoc-commands-navigation.html#previouspage-command}{\\previouspage},
- \li \l {17-qdoc-commands-thread.html#reentrant-command}{\\reentrant},
- \li \l {18-qdoc-commands-relating.html#reimp-command}{\\reimp},
- \li \l {18-qdoc-commands-relating.html#relates-command}{\\relates},
- \li \l {16-qdoc-commands-status.html#since-command}{\\since},
- \li \l {15-qdoc-commands-navigation.html#startpage-command}{\\startpage},
- \li \l {20-qdoc-commands-namingthings.html#subtitle-command}{\\subtitle}
- \li \l {17-qdoc-commands-thread.html#threadsafe-command}{\\threadsafe},
- \li \l {20-qdoc-commands-namingthings.html#title-command}{\\title}
+ \li \l {compat-command}{\\compat},
+ \li \l {contentspage-command}{\\contentspage},
+ \li \l {indexpage-command}{\\indexpage},
+ \li \l {ingroup-command}{\\ingroup},
+ \li \l {inherits-command}{\\inherits},
+ \li \l {inmodule-command}{\\inmodule},
+ \li \l {internal-command}{\\internal},
+ \li \l {mainclass-command}{\\mainclass},
+ \li \l {nextpage-command}{\\nextpage},
+ \li \l {nonreentrant-command}{\\nonreentrant},
+ \li \l {obsolete-command}{\\obsolete},
+ \li \l {overload-command}{\\overload},
+ \li \l {preliminary-command}{\\preliminary},
+ \li \l {previouspage-command}{\\previouspage},
+ \li \l {reentrant-command}{\\reentrant},
+ \li \l {reimp-command}{\\reimp},
+ \li \l {relates-command}{\\relates},
+ \li \l {since-command}{\\since},
+ \li \l {startpage-command}{\\startpage},
+ \li \l {subtitle-command}{\\subtitle}
+ \li \l {threadsafe-command}{\\threadsafe},
+ \li \l {title-command}{\\title}
\endlist
*/
@@ -297,7 +297,7 @@
\section1 \\default
The \\default command is for marking a QML property as the
- \l {http://qt-project.org/doc/qt-4.7/qdeclarativeintroduction.html#default-properties}
+ \l {default-properties}
{default property}. The word \span {class="newStuff"} {default} is shown in red in
the documentation of the property.
@@ -314,7 +314,7 @@
\endcode
See how QDoc renders this property on the reference page for the
- \l {http://qt-project.org/doc/qt-4.7/qml-state.html#changes-prop} {State}
+ \l {changes-prop} {State}
type.
\target obsolete-command
@@ -448,7 +448,7 @@
\list
\li ...
\li Joining
- \l {http://qt-project.org/doc/qt-5.0/qtcore/qchar.html#Joining-enum}
+ \l {Joining-enum}
{joining}()
const \c (preliminary)
\li ...
@@ -497,7 +497,7 @@
configuration variable. For that reason this reference will change
according to the current documentation project.
- See also \l {25-qdoc-configuration-derivedprojects.html#project}
+ See also \l {project}
{\c project}.
*/
@@ -794,7 +794,7 @@
</h3>
\endraw
- This function overloads \l {http://qt-project.org/doc/qt-5.0/qtwidgets/qwidget.html#addAction} {addAction()}
+ This function overloads \l {addAction} {addAction()}
This convenience function creates a new action with an
\e icon and some \e text. The function adds the newly
@@ -802,7 +802,7 @@
returns it.
See also
- \l {http://qt-project.org/doc/qt-5.0/qtwidgets/qwidget.html#addAction}
+ \l {addAction}
{QWidget::addAction}().
\endquotation
diff --git a/src/tools/qdoc/doc/qdoc-manual-intro.qdoc b/src/tools/qdoc/doc/qdoc-manual-intro.qdoc
index db34e2a46c..ad3779048a 100644
--- a/src/tools/qdoc/doc/qdoc-manual-intro.qdoc
+++ b/src/tools/qdoc/doc/qdoc-manual-intro.qdoc
@@ -80,7 +80,7 @@
\endcode
From the QDoc comment above, QDoc generates the HTML page
- \l {http://qt-project.org/doc/qt-5.0/qtcore/qobject.html#details}
+ \l {details}
{QObject Class Reference}.
This manual explains how to use the QDoc commands in QDoc comments
@@ -120,7 +120,7 @@
also specify \e {DITAXML} to get DITA XML output instead.
Next, QDoc uses the values of the
- \l {22-qdoc-configuration-generalvariables.html#headerdirs-variable}
+ \l {headerdirs-variable}
{headerdirs} variable and/or the \l
{22-qdoc-configuration-generalvariables.html#headers-variable}
{headers} variable to find and parse all the header files for your
diff --git a/src/tools/qdoc/doc/qdoc-manual-markupcmds.qdoc b/src/tools/qdoc/doc/qdoc-manual-markupcmds.qdoc
index b41c450748..ee0a7b41db 100644
--- a/src/tools/qdoc/doc/qdoc-manual-markupcmds.qdoc
+++ b/src/tools/qdoc/doc/qdoc-manual-markupcmds.qdoc
@@ -37,72 +37,72 @@
appearance and logical structure.
\list
- \li \l {04-qdoc-commands-textmarkup.html#a-command} {\\a}
- \li \l {11-qdoc-commands-specialcontent.html#abstract-command} {\\abstract}
- \li \l {12-0-qdoc-commands-miscellaneous.html#annotatedlist-command} {\\annotatedlist}
- \li \l {04-qdoc-commands-textmarkup.html#b-command} {\\b} \span {class="newStuff"} {(new 5/3/2012)}
- \li \l {04-qdoc-commands-textmarkup.html#b-command} {\\bold} {(deprecated, use \\b)}
- \li \l {11-qdoc-commands-specialcontent.html#brief-command} {\\brief}
- \li \l {04-qdoc-commands-textmarkup.html#c-command} {\\c}
- \li \l {09-qdoc-commands-includingimages.html#caption-command} {\\caption}
- \li \l {05-qdoc-commands-documentstructure.html#chapter-command} {\\chapter}
- \li \l {06-qdoc-commands-includecodeinline.html#code-command} {\\code}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#codeline-command} {\\codeline}
- \li \l {04-qdoc-commands-textmarkup.html#div-command} {\\div}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#dots-command} {\\dots}
- \li \l {04-qdoc-commands-textmarkup.html#e-command} {\\e} \span {class="newStuff"} {(new 5/3/2012)}
- \li \l {12-0-qdoc-commands-miscellaneous.html#else-command} {\\else}
- \li \l {12-0-qdoc-commands-miscellaneous.html#endif-command} {\\endif}
- \li \l {11-qdoc-commands-specialcontent.html#footnote-command} {\\footnote}
- \li \l {12-0-qdoc-commands-miscellaneous.html#generatelist-command} {\\generatelist}
- \li \l {10-qdoc-commands-tablesandlists.html#header-command} {\\header}
- \li \l {04-qdoc-commands-textmarkup.html#e-command} {\\i} \span {class="newStuff"} {(deprecated, use \\e)}
- \li \l {12-0-qdoc-commands-miscellaneous.html#if-command} {\\if}
- \li \l {09-qdoc-commands-includingimages.html#image-command} {\\image}
- \li \l {12-0-qdoc-commands-miscellaneous.html#include-command} {\\include}
- \li \l {12-0-qdoc-commands-miscellaneous.html#include-command} {\\input}
- \li \l {09-qdoc-commands-includingimages.html#inlineimage-command} {\\inlineimage}
- \li \l {08-qdoc-commands-creatinglinks.html#keyword-command} {\\keyword}
- \li \l {08-qdoc-commands-creatinglinks.html#l-command} {\\l}
- \li \l {11-qdoc-commands-specialcontent.html#legalese-command} {\\legalese}
- \li \l {10-qdoc-commands-tablesandlists.html#li-command} {\\li} \span {class="newStuff"} {(new 5/3/2012)}
- \li \l {10-qdoc-commands-tablesandlists.html#list-command} {\\list}
- \li \l {12-0-qdoc-commands-miscellaneous.html#meta-command} {\\meta}
- \li \l {06-qdoc-commands-includecodeinline.html#newcode-command} {\\newcode}
- \li \l {10-qdoc-commands-tablesandlists.html#li-command} {\\o} \span {class="newStuff"} {(deprecated, use \\li)}
- \li \l {11-qdoc-commands-specialcontent.html#note-command} {\\note}
- \li \l {06-qdoc-commands-includecodeinline.html#oldcode-command} {\\oldcode}
- \li \l {12-0-qdoc-commands-miscellaneous.html#omit-command} {\\omit}
- \li \l {05-qdoc-commands-documentstructure.html#part-command} {\\part}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#printline-command} {\\printline}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#printto-command} {\\printto}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#printuntil-command} {\\printuntil}
- \li \l {11-qdoc-commands-specialcontent.html#quotation-command} {\\quotation}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#quotefile-command} {\\quotefile}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#quotefromfile-command} {\\quotefromfile}
- \li \l {12-0-qdoc-commands-miscellaneous.html#raw-command} {\\raw}
- \li \l {10-qdoc-commands-tablesandlists.html#row-command} {\\row}
- \li \l {08-qdoc-commands-creatinglinks.html#sa-command} {\\sa}
- \li \l {05-qdoc-commands-documentstructure.html#sectionOne-command} {\\section1}
- \li \l {05-qdoc-commands-documentstructure.html#sectionTwo-command} {\\section2}
- \li \l {05-qdoc-commands-documentstructure.html#sectionThree-command} {\\section3}
- \li \l {05-qdoc-commands-documentstructure.html#sectionFour-command} {\\section4}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#skipline-command} {\\skipline}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#skipto-command} {\\skipto}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#skipuntil-command} {\\skipuntil}
- \li \l {07-0-qdoc-commands-includingexternalcode.html#snippet-command} {\\snippet}
- \li \l {04-qdoc-commands-textmarkup.html#span-command} {\\span}
- \li \l {04-qdoc-commands-textmarkup.html#sub-command} {\\sub}
- \li \l {04-qdoc-commands-textmarkup.html#sup-command} {\\sup}
- \li \l {10-qdoc-commands-tablesandlists.html#table-command} {\\table}
- \li \l {11-qdoc-commands-specialcontent.html#tableofcontents-command} {\\tableofcontents}
- \li \l {08-qdoc-commands-creatinglinks.html#target-command} {\\target}
- \li \l {04-qdoc-commands-textmarkup.html#tt-command} {\\tt}
- \li \l {04-qdoc-commands-textmarkup.html#uicontrol-command} {\\uicontrol} {(new 25/3/2012)}
- \li \l {04-qdoc-commands-textmarkup.html#underline-command} {\\underline}
- \li \l {12-0-qdoc-commands-miscellaneous.html#raw-command} {\\unicode}
- \li \l {11-qdoc-commands-specialcontent.html#warning-command} {\\warning}
- \li \l {04-qdoc-commands-textmarkup.html#backslash-command} {\\\\}
+ \li \l {a-command} {\\a}
+ \li \l {abstract-command} {\\abstract}
+ \li \l {annotatedlist-command} {\\annotatedlist}
+ \li \l {b-command} {\\b} \span {class="newStuff"}
+ \li \l {b-command} {\\bold} {(deprecated, use \\b)}
+ \li \l {brief-command} {\\brief}
+ \li \l {c-command} {\\c}
+ \li \l {caption-command} {\\caption}
+ \li \l {chapter-command} {\\chapter}
+ \li \l {code-command} {\\code}
+ \li \l {codeline-command} {\\codeline}
+ \li \l {div-command} {\\div}
+ \li \l {dots-command} {\\dots}
+ \li \l {e-command} {\\e} \span {class="newStuff"}
+ \li \l {else-command} {\\else}
+ \li \l {endif-command} {\\endif}
+ \li \l {footnote-command} {\\footnote}
+ \li \l {generatelist-command} {\\generatelist}
+ \li \l {header-command} {\\header}
+ \li \l {e-command} {\\i} \span {class="newStuff"} {(deprecated, use \\e)}
+ \li \l {if-command} {\\if}
+ \li \l {image-command} {\\image}
+ \li \l {include-command} {\\include}
+ \li \l {include-command} {\\input}
+ \li \l {inlineimage-command} {\\inlineimage}
+ \li \l {keyword-command} {\\keyword}
+ \li \l {l-command} {\\l}
+ \li \l {legalese-command} {\\legalese}
+ \li \l {li-command} {\\li} \span {class="newStuff"}
+ \li \l {list-command} {\\list}
+ \li \l {meta-command} {\\meta}
+ \li \l {newcode-command} {\\newcode}
+ \li \l {li-command} {\\o} \span {class="newStuff"} {(deprecated, use \\li)}
+ \li \l {note-command} {\\note}
+ \li \l {oldcode-command} {\\oldcode}
+ \li \l {omit-command} {\\omit}
+ \li \l {part-command} {\\part}
+ \li \l {printline-command} {\\printline}
+ \li \l {printto-command} {\\printto}
+ \li \l {printuntil-command} {\\printuntil}
+ \li \l {quotation-command} {\\quotation}
+ \li \l {quotefile-command} {\\quotefile}
+ \li \l {quotefromfile-command} {\\quotefromfile}
+ \li \l {raw-command} {\\raw}
+ \li \l {row-command} {\\row}
+ \li \l {sa-command} {\\sa}
+ \li \l {sectionOne-command} {\\section1}
+ \li \l {sectionTwo-command} {\\section2}
+ \li \l {sectionThree-command} {\\section3}
+ \li \l {sectionFour-command} {\\section4}
+ \li \l {skipline-command} {\\skipline}
+ \li \l {skipto-command} {\\skipto}
+ \li \l {skipuntil-command} {\\skipuntil}
+ \li \l {snippet-command} {\\snippet}
+ \li \l {span-command} {\\span}
+ \li \l {sub-command} {\\sub}
+ \li \l {sup-command} {\\sup}
+ \li \l {table-command} {\\table}
+ \li \l {tableofcontents-command} {\\tableofcontents}
+ \li \l {target-command} {\\target}
+ \li \l {tt-command} {\\tt}
+ \li \l {uicontrol-command} {\\uicontrol} {(new 25/3/2012)}
+ \li \l {underline-command} {\\underline}
+ \li \l {raw-command} {\\unicode}
+ \li \l {warning-command} {\\warning}
+ \li \l {backslash-command} {\\\\}
\endlist
*/
@@ -1826,7 +1826,7 @@
\endcode
For the one-parameter version, the braces can often be omitted.
- The \\l command supports several kinds of links:
+ The \\l command supports several ways of linking:
\list
@@ -1855,9 +1855,6 @@
\li \c {\l {Shared Classes}} - A keyword named in a \l
{keyword-command} {\\keyword} command.
- \li \c {\l network.html} - The file name used in a \l
- {page-command} {\\page} command.
-
\li \c {\l http://qt-project.org/} - A URL.
\endlist
@@ -1974,22 +1971,15 @@
\endcode
The target name \e{capturing parentheses} can be linked from
- within the same document containing the target in two ways:
+ within the same document containing the target in the following way:
\list
\li \c {\l {capturing parentheses}} (from within the same QDoc comment)
- \li \c {\l qregexp.html#capturing-parentheses} (from elsewhere in the same document)
\endlist
\note The brackets in the link example are required because the
target name contains spaces.
- The target name can be linked to in the following way from other documents:
-
- \list
- \li \c {\l http://qt-project.org/doc/qt-5.0/qtcore/qregexp.html#capturing-parentheses}
- \endlist
-
See also \l {l-command} {\\l}, \l {sa-command} {\\sa} and \l
{keyword-command} {\\keyword}.
@@ -2042,7 +2032,7 @@
\quotation
When a string is surrounded by slashes, it is
- interpreted as a \l {QRegExp}{regular expression}.
+ interpreted as a \l {regular expression}.
\endquotation
If the keyword text contains spaces, the brackets are required.
@@ -2961,15 +2951,16 @@
\target brief class
- When the \\brief command is used to describe a class, the brief
- text should be a complete sentence and must start like this:
+ When the \\brief command is used to describe a class, we recommend
+ using a complete sentence like this:
\code
The <classname> class is|provides|contains|specifies...
\endcode
- \warning The brief statement is used as the first paragraph of the
- detailed description. Do not repeat the sentence.
+ \warning Do not repeat your detailed description with the same sentence as
+ the brief statement will be the first paragraph of the detailed
+ description.
\code
/ *!
diff --git a/src/tools/qdoc/doc/qdoc-manual-qdocconf.qdoc b/src/tools/qdoc/doc/qdoc-manual-qdocconf.qdoc
index 74f5ad0c7b..3adcf9b213 100644
--- a/src/tools/qdoc/doc/qdoc-manual-qdocconf.qdoc
+++ b/src/tools/qdoc/doc/qdoc-manual-qdocconf.qdoc
@@ -63,7 +63,7 @@
Some configuration variables accept a list of strings as their
value, for example:
- \l {22-qdoc-configuration-generalvariables.html#sourcedirs-variable}
+ \l {sourcedirs-variable}
{\c{sourcedirs}}, while others accept only a single string. Double
quotes around a value string are optional, but including them allows
you to use special characters like '=' and ' \" ' within the value
@@ -87,39 +87,39 @@
\section1 Variable List
\list
- \li \l {22-qdoc-configuration-generalvariables.html#alias-variable} {alias}
- \li \l {23-qdoc-configuration-cppvariables.html#Cpp.ignoredirectives-variable} {Cpp.ignoredirectives}
- \li \l {23-qdoc-configuration-cppvariables.html#Cpp.ignoretokens-variable} {Cpp.ignoretokens}
- \li \l {22-qdoc-configuration-generalvariables.html#defines-variable} {defines}
- \li \l {22-qdoc-configuration-generalvariables.html#edition-variable} {edition}
- \li \l {22-qdoc-configuration-generalvariables.html#exampledirs-variable} {exampledirs}
- \li \l {22-qdoc-configuration-generalvariables.html#examples-variable} {examples}
- \li \l {22-qdoc-configuration-generalvariables.html#examples.fileextensions-variable} {examples.fileextensions}
- \li \l {22-qdoc-configuration-generalvariables.html#excludedirs-variable} {excludedirs}
- \li \l {22-qdoc-configuration-generalvariables.html#excludefiles-variable} {excludefiles}
- \li \l {22-qdoc-configuration-generalvariables.html#extraimages-variable} {extraimages}
- \li \l {22-qdoc-configuration-generalvariables.html#falsehoods-variable} {falsehoods}
- \li \l {22-qdoc-configuration-generalvariables.html#headerdirs-variable} {headerdirs}
- \li \l {22-qdoc-configuration-generalvariables.html#headers-variable} {headers}
- \li \l {22-qdoc-configuration-generalvariables.html#headers.fileextensions-variable} {headers.fileextensions}
- \li \l {24-qdoc-configuration-htmlvariables.html#HTML.footer-variable} {HTML.footer}
- \li \l {24-qdoc-configuration-htmlvariables.html#HTML.postheader-variable} {HTML.postheader}
- \li \l {24-qdoc-configuration-htmlvariables.html#HTML.style-variable} {HTML.style}
- \li \l {22-qdoc-configuration-generalvariables.html#imagedirs-variable} {imagedirs}
- \li \l {22-qdoc-configuration-generalvariables.html#images-variable} {images}
- \li \l {22-qdoc-configuration-generalvariables.html#images.fileextensions-variable} {images.fileextensions}
- \li \l {22-qdoc-configuration-generalvariables.html#language-variable} {language}
- \li \l {22-qdoc-configuration-generalvariables.html#macro-variable} {macro}
- \li \l {22-qdoc-configuration-generalvariables.html#manifestmeta-variable} {manifestmeta}
- \li \l {22-qdoc-configuration-generalvariables.html#outputdir-variable} {outputdir}
- \li \l {22-qdoc-configuration-generalvariables.html#outputformats-variable} {outputformats}
- \li \l {22-qdoc-configuration-generalvariables.html#sourcedirs-variable} {sourcedirs}
- \li \l {22-qdoc-configuration-generalvariables.html#sources-variable} {sources}
- \li \l {22-qdoc-configuration-generalvariables.html#sources.fileextensions-variable} {sources.fileextensions}
- \li \l {22-qdoc-configuration-generalvariables.html#spurious-variable} {spurious}
- \li \l {22-qdoc-configuration-generalvariables.html#tabsize-variable} {tabsize}
- \li \l {22-qdoc-configuration-generalvariables.html#version-variable} {version}
- \li \l {22-qdoc-configuration-generalvariables.html#versionsym-variable} {versionsym}
+ \li \l {alias-variable} {alias}
+ \li \l {Cpp.ignoredirectives-variable} {Cpp.ignoredirectives}
+ \li \l {Cpp.ignoretokens-variable} {Cpp.ignoretokens}
+ \li \l {defines-variable} {defines}
+ \li \l {edition-variable} {edition}
+ \li \l {exampledirs-variable} {exampledirs}
+ \li \l {examples-variable} {examples}
+ \li \l {examples.fileextensions-variable} {examples.fileextensions}
+ \li \l {excludedirs-variable} {excludedirs}
+ \li \l {excludefiles-variable} {excludefiles}
+ \li \l {extraimages-variable} {extraimages}
+ \li \l {falsehoods-variable} {falsehoods}
+ \li \l {headerdirs-variable} {headerdirs}
+ \li \l {headers-variable} {headers}
+ \li \l {headers.fileextensions-variable} {headers.fileextensions}
+ \li \l {HTML.footer-variable} {HTML.footer}
+ \li \l {HTML.postheader-variable} {HTML.postheader}
+ \li \l {HTML.style-variable} {HTML.style}
+ \li \l {imagedirs-variable} {imagedirs}
+ \li \l {images-variable} {images}
+ \li \l {images.fileextensions-variable} {images.fileextensions}
+ \li \l {language-variable} {language}
+ \li \l {macro-variable} {macro}
+ \li \l {manifestmeta-variable} {manifestmeta}
+ \li \l {outputdir-variable} {outputdir}
+ \li \l {outputformats-variable} {outputformats}
+ \li \l {sourcedirs-variable} {sourcedirs}
+ \li \l {sources-variable} {sources}
+ \li \l {sources.fileextensions-variable} {sources.fileextensions}
+ \li \l {spurious-variable} {spurious}
+ \li \l {tabsize-variable} {tabsize}
+ \li \l {version-variable} {version}
+ \li \l {versionsym-variable} {versionsym}
\endlist
\section1 Categories
@@ -1574,7 +1574,7 @@
dita.metadata.default.audience = programmer
\endcode
- See the \l {12-0-qdoc-commands-miscellaneous.html#meta-command}
+ See the \l {meta-command}
{\\meta} command for more details on DITA metadata.
*/
diff --git a/src/tools/qdoc/generator.cpp b/src/tools/qdoc/generator.cpp
index e6c5ae9062..97a980a3fa 100644
--- a/src/tools/qdoc/generator.cpp
+++ b/src/tools/qdoc/generator.cpp
@@ -136,6 +136,7 @@ Generator::Generator()
inSectionHeading_(false),
inTableHeader_(false),
threeColumnEnumValueTable_(true),
+ showInternal_(false),
numTableRows_(0)
{
qdb_ = QDocDatabase::qdocDB();
@@ -350,7 +351,11 @@ QString Generator::fileBase(const Node *node) const
base.append("-module");
}
if (node->isExample() || node->isExampleFile()) {
- base.prepend(project.toLower() + QLatin1Char('-'));
+ QString modPrefix(node->moduleName());
+ if (modPrefix.isEmpty()) {
+ modPrefix = project;
+ }
+ base.prepend(modPrefix.toLower() + QLatin1Char('-'));
}
if (node->isExample()) {
base.append(QLatin1String("-example"));
@@ -964,6 +969,8 @@ void Generator::generateInnerNode(InnerNode* node)
return;
if (node->isIndexNode())
return;
+ if (node->isInternal() && !showInternal_)
+ return;
if (node->type() == Node::Document) {
DocNode* docNode = static_cast<DocNode*>(node);
@@ -1666,6 +1673,7 @@ void Generator::augmentImageDirs(QSet<QString>& moreImageDirs)
void Generator::initializeGenerator(const Config& config)
{
config_ = &config;
+ showInternal_ = config.getBool(CONFIG_SHOWINTERNAL);
}
bool Generator::matchAhead(const Atom *atom, Atom::Type expectedAtomType)
diff --git a/src/tools/qdoc/generator.h b/src/tools/qdoc/generator.h
index 52d73e8dea..b464014308 100644
--- a/src/tools/qdoc/generator.h
+++ b/src/tools/qdoc/generator.h
@@ -239,6 +239,7 @@ private:
bool inSectionHeading_;
bool inTableHeader_;
bool threeColumnEnumValueTable_;
+ bool showInternal_;
int numTableRows_;
QString link_;
QString sectionNumber_;
diff --git a/src/tools/qdoc/htmlgenerator.cpp b/src/tools/qdoc/htmlgenerator.cpp
index 2387502b8a..986b4ae261 100644
--- a/src/tools/qdoc/htmlgenerator.cpp
+++ b/src/tools/qdoc/htmlgenerator.cpp
@@ -279,7 +279,8 @@ void HtmlGenerator::generateTree()
qdb_->generateIndex(outputDir() + QLatin1Char('/') + fileBase + ".index",
projectUrl,
projectDescription,
- this);
+ this,
+ true);
}
if (!runPrepareOnly()) {
@@ -2310,7 +2311,7 @@ QString HtmlGenerator::generateAllQmlMembersFile(const QmlClassNode* qml_cn,
}
out() << "<ul>\n";
for (int j=0; j<keys.size(); j++) {
- if (nodes[j]->access() == Node::Private) {
+ if (nodes[j]->access() == Node::Private || nodes[j]->status() == Node::Internal) {
continue;
}
out() << "<li class=\"fn\">";
@@ -2319,7 +2320,8 @@ QString HtmlGenerator::generateAllQmlMembersFile(const QmlClassNode* qml_cn,
prefix = keys.at(j).mid(1);
prefix = prefix.left(keys.at(j).indexOf("::")+1);
}
- generateSynopsis(nodes[j], qcn, marker, CodeMarker::Summary, false, &prefix);
+ generateQmlItem(nodes[j], qcn, marker, true);
+ //generateSynopsis(nodes[j], qcn, marker, CodeMarker::Subpage, false, &prefix);
out() << "</li>\n";
}
out() << "</ul>\n";
diff --git a/src/tools/qdoc/main.cpp b/src/tools/qdoc/main.cpp
index 246e4d2d82..398d188464 100644
--- a/src/tools/qdoc/main.cpp
+++ b/src/tools/qdoc/main.cpp
@@ -218,8 +218,15 @@ static void loadIndexFiles(Config& config)
else if (foundIndices.size() == 1) {
indexToAdd = foundIndices[0].absoluteFilePath();
}
- if (!indexToAdd.isEmpty() && !indexFiles.contains(indexToAdd))
- indexFiles << indexToAdd;
+ if (!indexToAdd.isEmpty()) {
+ if (!indexFiles.contains(indexToAdd))
+ indexFiles << indexToAdd;
+ }
+ else if (Generator::runGenerateOnly()) {
+ qDebug() << "warning:" << config.getString(CONFIG_PROJECT)
+ << "Cannot locate index file for dependency"
+ << dependModules[i];
+ }
}
}
else {
@@ -355,7 +362,7 @@ static void processQdocconfFile(const QString &fileName)
*/
QDocDatabase* qdb = QDocDatabase::qdocDB();
qdb->setVersion(config.getString(CONFIG_VERSION));
-
+ qdb->setShowInternal(config.getBool(CONFIG_SHOWINTERNAL));
/*
By default, the only output format is HTML.
*/
@@ -393,6 +400,10 @@ static void processQdocconfFile(const QString &fileName)
QMap<QString,QString> headers;
QMultiMap<QString,QString> headerFileNames;
for (int i=0; i<headerList.size(); ++i) {
+ if (headerList[i].contains(QString("doc/snippets")))
+ continue;
+ if (headers.contains(headerList[i]))
+ continue;
headers.insert(headerList[i],headerList[i]);
QString t = headerList[i].mid(headerList[i].lastIndexOf('/')+1);
headerFileNames.insert(t,t);
@@ -403,6 +414,10 @@ static void processQdocconfFile(const QString &fileName)
QMap<QString,QString> sources;
QMultiMap<QString,QString> sourceFileNames;
for (int i=0; i<sourceList.size(); ++i) {
+ if (sourceList[i].contains(QString("doc/snippets")))
+ continue;
+ if (sources.contains(sourceList[i]))
+ continue;
sources.insert(sourceList[i],sourceList[i]);
QString t = sourceList[i].mid(sourceList[i].lastIndexOf('/')+1);
sourceFileNames.insert(t,t);
diff --git a/src/tools/qdoc/node.cpp b/src/tools/qdoc/node.cpp
index 75896e2718..c88ebfc760 100644
--- a/src/tools/qdoc/node.cpp
+++ b/src/tools/qdoc/node.cpp
@@ -1867,7 +1867,10 @@ FunctionNode::FunctionNode(Type type, InnerNode *parent, const QString& name, bo
rf(0),
ap(0)
{
- // nothing.
+ if (type == QmlMethod || type == QmlSignal) {
+ if (name.startsWith("__"))
+ setStatus(Internal);
+ }
}
/*!
@@ -2326,6 +2329,8 @@ QmlPropertyNode::QmlPropertyNode(InnerNode* parent,
setPageType(ApiPage);
if (type_ == QString("alias"))
isAlias_ = true;
+ if (name.startsWith("__"))
+ setStatus(Internal);
}
/*!
diff --git a/src/tools/qdoc/node.h b/src/tools/qdoc/node.h
index 9e736aeba6..236b495bd0 100644
--- a/src/tools/qdoc/node.h
+++ b/src/tools/qdoc/node.h
@@ -195,6 +195,7 @@ public:
virtual bool isInnerNode() const = 0;
virtual bool isQmlModule() const { return false; }
+ virtual bool isQmlType() const { return false; }
virtual bool isExample() const { return false; }
virtual bool isExampleFile() const { return false; }
virtual bool isLeaf() const { return false; }
@@ -610,6 +611,7 @@ public:
QmlClassNode(InnerNode* parent, const QString& name);
virtual ~QmlClassNode();
virtual bool isQmlNode() const { return true; }
+ virtual bool isQmlType() const { return true; }
virtual bool isQtQuickNode() const { return (qmlModuleName() == QLatin1String("QtQuick")); }
virtual ClassNode* classNode() { return cnode_; }
virtual void setClassNode(ClassNode* cn) { cnode_ = cn; }
diff --git a/src/tools/qdoc/qdocdatabase.cpp b/src/tools/qdoc/qdocdatabase.cpp
index e371d448c6..1011a3ac97 100644
--- a/src/tools/qdoc/qdocdatabase.cpp
+++ b/src/tools/qdoc/qdocdatabase.cpp
@@ -62,7 +62,7 @@ QDocDatabase* QDocDatabase::qdocDB_ = NULL;
It constructs a singleton Tree object with this
qdoc database pointer.
*/
-QDocDatabase::QDocDatabase()
+QDocDatabase::QDocDatabase() : showInternal_(false)
{
tree_ = new Tree(this);
}
@@ -357,23 +357,10 @@ QmlClassNode* QDocDatabase::findQmlType(const ImportRec& import, const QString&
else
qmName = import.importUri_;
for (int i=0; i<dotSplit.size(); ++i) {
- QString qmid = qmName + import.version_;
- QString qualifiedName = qmid + "::" + dotSplit[i];
+ QString qualifiedName = qmName + "::" + dotSplit[i];
QmlClassNode* qcn = qmlTypeMap_.value(qualifiedName);
- if (qcn) {
+ if (qcn)
return qcn;
- }
- if (import.version_.size() > 1) {
- int dot = import.version_.lastIndexOf(QChar('.'));
- if (dot > 0) {
- qmid = import.name_ + import.version_.left(dot);
- qualifiedName = qmid + "::" + dotSplit[i];
- qcn = qmlTypeMap_.value(qualifiedName);
- if (qcn) {
- return qcn;
- }
- }
- }
}
}
return 0;
@@ -436,7 +423,7 @@ void QDocDatabase::findAllClasses(const InnerNode* node)
{
NodeList::const_iterator c = node->childNodes().constBegin();
while (c != node->childNodes().constEnd()) {
- if ((*c)->access() != Node::Private) {
+ if ((*c)->access() != Node::Private && (!(*c)->isInternal() || showInternal_)) {
if ((*c)->type() == Node::Class && !(*c)->doc().isEmpty()) {
QString className = (*c)->name();
if ((*c)->parent() &&
@@ -1000,24 +987,6 @@ void QDocDatabase::resolveQmlInheritance(InnerNode* root)
}
}
-#if 0
-void QDocDatabase::resolveQmlInheritance(InnerNode* root)
-{
- // Dop we need recursion?
- foreach (Node* child, root->childNodes()) {
- if (child->type() == Node::Document && child->subType() == Node::QmlClass) {
- QmlClassNode* qcn = static_cast<QmlClassNode*>(child);
- if ((qcn->qmlBaseNode() == 0) && !qcn->qmlBaseName().isEmpty()) {
- QmlClassNode* bqcn = findQmlType(QString(), qcn->qmlBaseName());
- if (bqcn) {
- qcn->setQmlBaseNode(bqcn);
- }
- }
- }
- }
-}
-#endif
-
/*!
*/
void QDocDatabase::resolveTargets(InnerNode* root)
diff --git a/src/tools/qdoc/qdocdatabase.h b/src/tools/qdoc/qdocdatabase.h
index 5786fa0664..4decba5f79 100644
--- a/src/tools/qdoc/qdocdatabase.h
+++ b/src/tools/qdoc/qdocdatabase.h
@@ -200,6 +200,7 @@ class QDocDatabase
void insertOpenNamespace(const QString& path) { openNamespaces_.insert(path); }
FunctionNode* findNodeInOpenNamespace(const QStringList& parentPath, const FunctionNode* clone);
Node* findNodeInOpenNamespace(QStringList& path, Node::Type type, Node::SubType subtype);
+ void setShowInternal(bool value) { showInternal_ = value; }
/* debugging functions */
void printModules() const;
@@ -220,6 +221,7 @@ class QDocDatabase
private:
static QDocDatabase* qdocDB_;
+ bool showInternal_;
QString version_;
QDocMultiMap masterMap_;
Tree* tree_;
diff --git a/src/tools/qdoc/qdocindexfiles.cpp b/src/tools/qdoc/qdocindexfiles.cpp
index 7424971b13..47e302dad6 100644
--- a/src/tools/qdoc/qdocindexfiles.cpp
+++ b/src/tools/qdoc/qdocindexfiles.cpp
@@ -196,6 +196,10 @@ void QDocIndexFiles::readIndexSection(const QDomElement& element,
location = Location(indexUrl + QLatin1Char('/') + name.toLower() + ".html");
else if (!indexUrl.isNull())
location = Location(name.toLower() + ".html");
+ bool abstract = false;
+ if (element.attribute("abstract") == "true")
+ abstract = true;
+ node->setAbstract(abstract);
}
else if ((element.nodeName() == "qmlclass") ||
((element.nodeName() == "page") && (element.attribute("subtype") == "qmlclass"))) {
@@ -204,6 +208,10 @@ void QDocIndexFiles::readIndexSection(const QDomElement& element,
QString qmlModuleName = element.attribute("qml-module-name");
if (!qmlModuleName.isEmpty())
qdb_->addToQmlModule(qmlModuleName, qcn);
+ bool abstract = false;
+ if (element.attribute("abstract") == "true")
+ abstract = true;
+ qcn->setAbstract(abstract);
QString qmlFullBaseName = element.attribute("qml-base-type");
if (!qmlFullBaseName.isEmpty())
qcn->setQmlBaseName(qmlFullBaseName);
@@ -464,7 +472,7 @@ void QDocIndexFiles::readIndexSection(const QDomElement& element,
node->setAccess(Node::Public);
else if (access == "protected")
node->setAccess(Node::Protected);
- else if (access == "private")
+ else if ((access == "private") || (access == "internal"))
node->setAccess(Node::Private);
else
node->setAccess(Node::Public);
@@ -506,10 +514,12 @@ void QDocIndexFiles::readIndexSection(const QDomElement& element,
QString moduleName = element.attribute("module");
if (!moduleName.isEmpty())
node->setModuleName(moduleName);
- if (node->isExternalPage())
- node->setUrl(href);
- else if (!indexUrl.isEmpty())
- node->setUrl(indexUrl + QLatin1Char('/') + href);
+ if (!href.isEmpty()) {
+ if (node->isExternalPage())
+ node->setUrl(href);
+ else if (!indexUrl.isEmpty())
+ node->setUrl(indexUrl + QLatin1Char('/') + href);
+ }
QString since = element.attribute("since");
if (!since.isEmpty()) {
@@ -708,6 +718,7 @@ bool QDocIndexFiles::generateIndexSection(QXmlStreamWriter& writer,
access = "protected";
break;
case Node::Private:
+#if 0
// Do not include private non-internal nodes in the index.
// (Internal public and protected nodes are marked as private
// by qdoc. We can check their internal status to determine
@@ -716,6 +727,13 @@ bool QDocIndexFiles::generateIndexSection(QXmlStreamWriter& writer,
access = "internal";
else
return false;
+#endif
+ {
+ access = "private";
+ bool b = generateInternalNodes;
+ if (b)
+ b = false;
+ }
break;
default:
return false;
@@ -729,7 +747,6 @@ bool QDocIndexFiles::generateIndexSection(QXmlStreamWriter& writer,
writer.writeStartElement(nodeName);
QXmlStreamAttributes attributes;
- writer.writeAttribute("access", access);
if (node->type() != Node::Document) {
QString threadSafety;
@@ -776,7 +793,6 @@ bool QDocIndexFiles::generateIndexSection(QXmlStreamWriter& writer,
status = "main";
break;
}
- writer.writeAttribute("status", status);
writer.writeAttribute("name", objName);
if (node->isQmlModule()) {
@@ -804,9 +820,24 @@ bool QDocIndexFiles::generateIndexSection(QXmlStreamWriter& writer,
}
else
href = node->name();
- writer.writeAttribute("href", href);
+ if (node->isQmlNode()) {
+ InnerNode* p = node->parent();
+ if (p) {
+ if (p->isQmlPropertyGroup())
+ p = p->parent();
+ if (p && p->isQmlType() && p->isAbstract())
+ href.clear();
+ }
+ }
+ if (!href.isEmpty())
+ writer.writeAttribute("href", href);
- writer.writeAttribute("location", node->location().fileName());
+ writer.writeAttribute("access", access);
+ writer.writeAttribute("status", status);
+ if (node->isAbstract())
+ writer.writeAttribute("abstract", "true");
+ if (!node->location().fileName().isEmpty())
+ writer.writeAttribute("location", node->location().fileName());
if (!node->location().filePath().isEmpty()) {
writer.writeAttribute("filepath", node->location().filePath());
writer.writeAttribute("lineno", QString("%1").arg(node->location().lineNo()));
diff --git a/src/tools/qdoc/qmlparser/qqmljs.g b/src/tools/qdoc/qmlparser/qqmljs.g
index 7ba6859534..de4fec4d56 100644
--- a/src/tools/qdoc/qmlparser/qqmljs.g
+++ b/src/tools/qdoc/qmlparser/qqmljs.g
@@ -65,6 +65,7 @@
--- context keywords.
%token T_PUBLIC "public"
%token T_IMPORT "import"
+%token T_PRAGMA "pragma"
%token T_AS "as"
%token T_ON "on"
%token T_GET "get"
@@ -253,7 +254,8 @@ public:
AST::VariableDeclarationList *VariableDeclarationList;
AST::UiProgram *UiProgram;
- AST::UiImportList *UiImportList;
+ AST::UiHeaderItemList *UiHeaderItemList;
+ AST::UiPragma *UiPragma;
AST::UiImport *UiImport;
AST::UiParameterList *UiParameterList;
AST::UiPublicMember *UiPublicMember;
@@ -266,6 +268,7 @@ public:
AST::UiObjectMemberList *UiObjectMemberList;
AST::UiArrayMemberList *UiArrayMemberList;
AST::UiQualifiedId *UiQualifiedId;
+ AST::UiQualifiedPragmaId *UiQualifiedPragmaId;
};
public:
@@ -347,6 +350,7 @@ protected:
{ return location_stack [tos + index - 1]; }
AST::UiQualifiedId *reparseAsQualifiedId(AST::ExpressionNode *expr);
+ AST::UiQualifiedPragmaId *reparseAsQualifiedPragmaId(AST::ExpressionNode *expr);
protected:
Engine *driver;
@@ -486,6 +490,19 @@ AST::UiQualifiedId *Parser::reparseAsQualifiedId(AST::ExpressionNode *expr)
return 0;
}
+AST::UiQualifiedPragmaId *Parser::reparseAsQualifiedPragmaId(AST::ExpressionNode *expr)
+{
+ if (AST::IdentifierExpression *idExpr = AST::cast<AST::IdentifierExpression *>(expr)) {
+ AST::UiQualifiedPragmaId *q = new (pool) AST::UiQualifiedPragmaId(idExpr->name);
+ q->identifierToken = idExpr->identifierToken;
+
+ return q->finish();
+ }
+
+ return 0;
+}
+
+
bool Parser::parse(int startToken)
{
Lexer *lexer = driver->lexer();
@@ -594,38 +611,62 @@ case $rule_number: {
} break;
./
-UiProgram: UiImportListOpt UiRootMember ;
+UiProgram: UiHeaderItemListOpt UiRootMember;
/.
case $rule_number: {
- sym(1).UiProgram = new (pool) AST::UiProgram(sym(1).UiImportList,
+ sym(1).UiProgram = new (pool) AST::UiProgram(sym(1).UiHeaderItemList,
sym(2).UiObjectMemberList->finish());
} break;
./
-UiImportListOpt: Empty ;
-UiImportListOpt: UiImportList ;
+UiHeaderItemListOpt: Empty ;
+UiHeaderItemListOpt: UiHeaderItemList ;
/.
case $rule_number: {
- sym(1).Node = sym(1).UiImportList->finish();
+ sym(1).Node = sym(1).UiHeaderItemList->finish();
} break;
./
-UiImportList: UiImport ;
+UiHeaderItemList: UiPragma ;
/.
case $rule_number: {
- sym(1).Node = new (pool) AST::UiImportList(sym(1).UiImport);
+ sym(1).Node = new (pool) AST::UiHeaderItemList(sym(1).UiPragma);
} break;
./
-UiImportList: UiImportList UiImport ;
+UiHeaderItemList: UiImport ;
/.
case $rule_number: {
- sym(1).Node = new (pool) AST::UiImportList(sym(1).UiImportList, sym(2).UiImport);
+ sym(1).Node = new (pool) AST::UiHeaderItemList(sym(1).UiImport);
} break;
./
+UiHeaderItemList: UiHeaderItemList UiPragma ;
+/.
+case $rule_number: {
+ sym(1).Node = new (pool) AST::UiHeaderItemList(sym(1).UiHeaderItemList, sym(2).UiPragma);
+} break;
+./
+
+UiHeaderItemList: UiHeaderItemList UiImport ;
+/.
+case $rule_number: {
+ sym(1).Node = new (pool) AST::UiHeaderItemList(sym(1).UiHeaderItemList, sym(2).UiImport);
+} break;
+./
+
+PragmaId: MemberExpression ;
+
ImportId: MemberExpression ;
+UiPragma: UiPragmaHead T_AUTOMATIC_SEMICOLON ;
+UiPragma: UiPragmaHead T_SEMICOLON ;
+/.
+case $rule_number: {
+ sym(1).UiPragma->semicolonToken = loc(2);
+} break;
+./
+
UiImport: UiImportHead T_AUTOMATIC_SEMICOLON ;
UiImport: UiImportHead T_SEMICOLON ;
/.
@@ -666,6 +707,28 @@ case $rule_number: {
} break;
./
+UiPragmaHead: T_PRAGMA PragmaId ;
+/.
+case $rule_number: {
+ AST::UiPragma *node = 0;
+
+ if (AST::UiQualifiedPragmaId *qualifiedId = reparseAsQualifiedPragmaId(sym(2).Expression)) {
+ node = new (pool) AST::UiPragma(qualifiedId);
+ }
+
+ sym(1).Node = node;
+
+ if (node) {
+ node->pragmaToken = loc(1);
+ } else {
+ diagnostic_messages.append(DiagnosticMessage(DiagnosticMessage::Error, loc(1),
+ QLatin1String("Expected a qualified name id")));
+
+ return false; // ### remove me
+ }
+} break;
+./
+
UiImportHead: T_IMPORT ImportId ;
/.
@@ -1261,6 +1324,7 @@ case $rule_number: {
} break;
./
+
UiQualifiedId: MemberExpression ;
/.
case $rule_number: {
diff --git a/src/tools/qdoc/qmlparser/qqmljsast.cpp b/src/tools/qdoc/qmlparser/qqmljsast.cpp
index ea0df4a537..33b3868e66 100644
--- a/src/tools/qdoc/qmlparser/qqmljsast.cpp
+++ b/src/tools/qdoc/qmlparser/qqmljsast.cpp
@@ -821,7 +821,7 @@ void DebuggerStatement::accept0(Visitor *visitor)
void UiProgram::accept0(Visitor *visitor)
{
if (visitor->visit(this)) {
- accept(imports, visitor);
+ accept(headers, visitor);
accept(members, visitor);
}
@@ -932,16 +932,34 @@ void UiImport::accept0(Visitor *visitor)
visitor->endVisit(this);
}
-void UiImportList::accept0(Visitor *visitor)
+void UiQualifiedPragmaId::accept0(Visitor *visitor)
{
if (visitor->visit(this)) {
- accept(import, visitor);
+ }
+
+ visitor->endVisit(this);
+}
+
+void UiPragma::accept0(Visitor *visitor)
+{
+ if (visitor->visit(this)) {
+ accept(pragmaType, visitor);
+ }
+
+ visitor->endVisit(this);
+}
+
+void UiHeaderItemList::accept0(Visitor *visitor)
+{
+ if (visitor->visit(this)) {
+ accept(headerItem, visitor);
accept(next, visitor);
}
visitor->endVisit(this);
}
+
void UiSourceElement::accept0(Visitor *visitor)
{
if (visitor->visit(this)) {
diff --git a/src/tools/qdoc/qmlparser/qqmljsast_p.h b/src/tools/qdoc/qmlparser/qqmljsast_p.h
index 01a872f1e8..6cc3b7649e 100644
--- a/src/tools/qdoc/qmlparser/qqmljsast_p.h
+++ b/src/tools/qdoc/qmlparser/qqmljsast_p.h
@@ -207,18 +207,20 @@ public:
Kind_UiArrayBinding,
Kind_UiImport,
- Kind_UiImportList,
Kind_UiObjectBinding,
Kind_UiObjectDefinition,
Kind_UiObjectInitializer,
Kind_UiObjectMemberList,
Kind_UiArrayMemberList,
+ Kind_UiPragma,
Kind_UiProgram,
Kind_UiParameterList,
Kind_UiPublicMember,
Kind_UiQualifiedId,
+ Kind_UiQualifiedPragmaId,
Kind_UiScriptBinding,
- Kind_UiSourceElement
+ Kind_UiSourceElement,
+ Kind_UiHeaderItemList
};
inline Node()
@@ -2271,27 +2273,72 @@ public:
SourceLocation semicolonToken;
};
-class QML_PARSER_EXPORT UiImportList: public Node
+class QML_PARSER_EXPORT UiObjectMember: public Node
{
public:
- QQMLJS_DECLARE_AST_NODE(UiImportList)
+ virtual SourceLocation firstSourceLocation() const = 0;
+ virtual SourceLocation lastSourceLocation() const = 0;
- UiImportList(UiImport *import)
- : import(import),
- next(this)
+ virtual UiObjectMember *uiObjectMemberCast();
+};
+
+class QML_PARSER_EXPORT UiObjectMemberList: public Node
+{
+public:
+ QQMLJS_DECLARE_AST_NODE(UiObjectMemberList)
+
+ UiObjectMemberList(UiObjectMember *member)
+ : next(this), member(member)
{ kind = K; }
- UiImportList(UiImportList *previous, UiImport *import)
- : import(import)
+ UiObjectMemberList(UiObjectMemberList *previous, UiObjectMember *member)
+ : member(member)
{
kind = K;
next = previous->next;
previous->next = this;
}
- UiImportList *finish()
+ virtual void accept0(Visitor *visitor);
+
+ virtual SourceLocation firstSourceLocation() const
+ { return member->firstSourceLocation(); }
+
+ virtual SourceLocation lastSourceLocation() const
+ { return next ? next->lastSourceLocation() : member->lastSourceLocation(); }
+
+ UiObjectMemberList *finish()
{
- UiImportList *head = next;
+ UiObjectMemberList *head = next;
+ next = 0;
+ return head;
+ }
+
+// attributes
+ UiObjectMemberList *next;
+ UiObjectMember *member;
+};
+
+class QML_PARSER_EXPORT UiQualifiedPragmaId: public Node
+{
+public:
+ QQMLJS_DECLARE_AST_NODE(UiQualifiedPragmaId)
+
+ UiQualifiedPragmaId(const QStringRef &name)
+ : next(this), name(name)
+ { kind = K; }
+
+ UiQualifiedPragmaId(UiQualifiedPragmaId *previous, const QStringRef &name)
+ : name(name)
+ {
+ kind = K;
+ next = previous->next;
+ previous->next = this;
+ }
+
+ UiQualifiedPragmaId *finish()
+ {
+ UiQualifiedPragmaId *head = next;
next = 0;
return head;
}
@@ -2299,60 +2346,87 @@ public:
virtual void accept0(Visitor *visitor);
virtual SourceLocation firstSourceLocation() const
- { return import->firstSourceLocation(); }
+ { return identifierToken; }
virtual SourceLocation lastSourceLocation() const
- { return next ? next->lastSourceLocation() : import->lastSourceLocation(); }
+ { return next ? next->lastSourceLocation() : identifierToken; }
// attributes
- UiImport *import;
- UiImportList *next;
+ UiQualifiedPragmaId *next;
+ QStringRef name;
+ SourceLocation identifierToken;
};
-class QML_PARSER_EXPORT UiObjectMember: public Node
+class QML_PARSER_EXPORT UiPragma: public Node
{
public:
- virtual SourceLocation firstSourceLocation() const = 0;
- virtual SourceLocation lastSourceLocation() const = 0;
+ QQMLJS_DECLARE_AST_NODE(UiPragma)
- virtual UiObjectMember *uiObjectMemberCast();
+ UiPragma(UiQualifiedPragmaId *type)
+ : pragmaType(type)
+ { kind = K; }
+
+ virtual void accept0(Visitor *visitor);
+
+ virtual SourceLocation firstSourceLocation() const
+ { return pragmaToken; }
+
+ virtual SourceLocation lastSourceLocation() const
+ { return semicolonToken; }
+
+// attributes
+ UiQualifiedPragmaId *pragmaType;
+ SourceLocation pragmaToken;
+ SourceLocation semicolonToken;
};
-class QML_PARSER_EXPORT UiObjectMemberList: public Node
+class QML_PARSER_EXPORT UiHeaderItemList: public Node
{
public:
- QQMLJS_DECLARE_AST_NODE(UiObjectMemberList)
+ QQMLJS_DECLARE_AST_NODE(UiHeaderItemList)
- UiObjectMemberList(UiObjectMember *member)
- : next(this), member(member)
+ UiHeaderItemList(UiImport *import)
+ : headerItem(import), next(this)
{ kind = K; }
- UiObjectMemberList(UiObjectMemberList *previous, UiObjectMember *member)
- : member(member)
+ UiHeaderItemList(UiPragma *pragma)
+ : headerItem(pragma), next(this)
+ { kind = K; }
+
+ UiHeaderItemList(UiHeaderItemList *previous, UiImport *import)
+ : headerItem(import)
{
kind = K;
next = previous->next;
previous->next = this;
}
- virtual void accept0(Visitor *visitor);
-
- virtual SourceLocation firstSourceLocation() const
- { return member->firstSourceLocation(); }
-
- virtual SourceLocation lastSourceLocation() const
- { return next ? next->lastSourceLocation() : member->lastSourceLocation(); }
+ UiHeaderItemList(UiHeaderItemList *previous, UiPragma *pragma)
+ : headerItem(pragma)
+ {
+ kind = K;
+ next = previous->next;
+ previous->next = this;
+ }
- UiObjectMemberList *finish()
+ UiHeaderItemList *finish()
{
- UiObjectMemberList *head = next;
+ UiHeaderItemList *head = next;
next = 0;
return head;
}
+ virtual void accept0(Visitor *visitor);
+
+ virtual SourceLocation firstSourceLocation() const
+ { return headerItem->firstSourceLocation(); }
+
+ virtual SourceLocation lastSourceLocation() const
+ { return next ? next->lastSourceLocation() : headerItem->lastSourceLocation(); }
+
// attributes
- UiObjectMemberList *next;
- UiObjectMember *member;
+ Node *headerItem;
+ UiHeaderItemList *next;
};
class QML_PARSER_EXPORT UiProgram: public Node
@@ -2360,16 +2434,16 @@ class QML_PARSER_EXPORT UiProgram: public Node
public:
QQMLJS_DECLARE_AST_NODE(UiProgram)
- UiProgram(UiImportList *imports, UiObjectMemberList *members)
- : imports(imports), members(members)
+ UiProgram(UiHeaderItemList *headers, UiObjectMemberList *members)
+ : headers(headers), members(members)
{ kind = K; }
virtual void accept0(Visitor *visitor);
virtual SourceLocation firstSourceLocation() const
{
- if (imports)
- return imports->firstSourceLocation();
+ if (headers)
+ return headers->firstSourceLocation();
else if (members)
return members->firstSourceLocation();
return SourceLocation();
@@ -2379,13 +2453,13 @@ public:
{
if (members)
return members->lastSourceLocation();
- else if (imports)
- return imports->lastSourceLocation();
+ else if (headers)
+ return headers->lastSourceLocation();
return SourceLocation();
}
// attributes
- UiImportList *imports;
+ UiHeaderItemList *headers;
UiObjectMemberList *members;
};
diff --git a/src/tools/qdoc/qmlparser/qqmljsastfwd_p.h b/src/tools/qdoc/qmlparser/qqmljsastfwd_p.h
index fe5572c4b2..f8cba4981c 100644
--- a/src/tools/qdoc/qmlparser/qqmljsastfwd_p.h
+++ b/src/tools/qdoc/qmlparser/qqmljsastfwd_p.h
@@ -167,7 +167,7 @@ class NestedExpression;
// ui elements
class UiProgram;
-class UiImportList;
+class UiPragma;
class UiImport;
class UiPublicMember;
class UiParameterList;
@@ -181,6 +181,8 @@ class UiObjectMember;
class UiObjectMemberList;
class UiArrayMemberList;
class UiQualifiedId;
+class UiQualifiedPragmaId;
+class UiHeaderItemList;
} } // namespace AST
diff --git a/src/tools/qdoc/qmlparser/qqmljsastvisitor_p.h b/src/tools/qdoc/qmlparser/qqmljsastvisitor_p.h
index ef022f617c..1d67d4c75d 100644
--- a/src/tools/qdoc/qmlparser/qqmljsastvisitor_p.h
+++ b/src/tools/qdoc/qmlparser/qqmljsastvisitor_p.h
@@ -71,7 +71,8 @@ public:
// Ui
virtual bool visit(UiProgram *) { return true; }
- virtual bool visit(UiImportList *) { return true; }
+ virtual bool visit(UiHeaderItemList *) { return true; }
+ virtual bool visit(UiPragma *) { return true; }
virtual bool visit(UiImport *) { return true; }
virtual bool visit(UiPublicMember *) { return true; }
virtual bool visit(UiSourceElement *) { return true; }
@@ -84,10 +85,12 @@ public:
virtual bool visit(UiObjectMemberList *) { return true; }
virtual bool visit(UiArrayMemberList *) { return true; }
virtual bool visit(UiQualifiedId *) { return true; }
+ virtual bool visit(UiQualifiedPragmaId *) { return true; }
virtual void endVisit(UiProgram *) {}
- virtual void endVisit(UiImportList *) {}
virtual void endVisit(UiImport *) {}
+ virtual void endVisit(UiHeaderItemList *) {}
+ virtual void endVisit(UiPragma *) {}
virtual void endVisit(UiPublicMember *) {}
virtual void endVisit(UiSourceElement *) {}
virtual void endVisit(UiObjectDefinition *) {}
@@ -99,6 +102,7 @@ public:
virtual void endVisit(UiObjectMemberList *) {}
virtual void endVisit(UiArrayMemberList *) {}
virtual void endVisit(UiQualifiedId *) {}
+ virtual void endVisit(UiQualifiedPragmaId *) {}
// QQmlJS
virtual bool visit(ThisExpression *) { return true; }
diff --git a/src/tools/qdoc/qmlparser/qqmljsengine_p.h b/src/tools/qdoc/qmlparser/qqmljsengine_p.h
index 4f58e7f8ea..195b98bfd7 100644
--- a/src/tools/qdoc/qmlparser/qqmljsengine_p.h
+++ b/src/tools/qdoc/qmlparser/qqmljsengine_p.h
@@ -102,6 +102,7 @@ public:
~Engine();
void setCode(const QString &code);
+ const QString &code() const { return _code; }
void addComment(int pos, int len, int line, int col);
QList<AST::SourceLocation> comments() const;
diff --git a/src/tools/qdoc/qmlparser/qqmljsglobal_p.h b/src/tools/qdoc/qmlparser/qqmljsglobal_p.h
index 3aecc863d5..c53e12ea56 100644
--- a/src/tools/qdoc/qmlparser/qqmljsglobal_p.h
+++ b/src/tools/qdoc/qmlparser/qqmljsglobal_p.h
@@ -61,8 +61,10 @@
# if defined(QT_BUILD_QMLDEVTOOLS_LIB) || defined(QT_QMLDEVTOOLS_LIB)
// QmlDevTools is a static library
# define QML_PARSER_EXPORT
-# else
+# elif defined(QT_BUILD_QML_LIB)
# define QML_PARSER_EXPORT Q_AUTOTEST_EXPORT
+# else
+# define QML_PARSER_EXPORT
# endif
#endif // QT_CREATOR
diff --git a/src/tools/qdoc/qmlparser/qqmljsgrammar.cpp b/src/tools/qdoc/qmlparser/qqmljsgrammar.cpp
index 4a5672a796..1e5f7a8c6d 100644
--- a/src/tools/qdoc/qmlparser/qqmljsgrammar.cpp
+++ b/src/tools/qdoc/qmlparser/qqmljsgrammar.cpp
@@ -54,421 +54,427 @@ const char *const QQmlJSGrammar::spell [] = {
")", ";", 0, "*", "*=", "string literal", "property", "signal", "readonly", "switch",
"this", "throw", "~", "try", "typeof", "var", "void", "while", "with", "^",
"^=", "null", "true", "false", "const", "debugger", "reserved word", "multiline string literal", "comment", 0,
- "public", "import", "as", "on", "get", "set", 0, 0, 0, 0,
- 0, 0, 0, 0, 0};
+ "public", "import", "pragma", "as", "on", "get", "set", 0, 0, 0,
+ 0, 0, 0, 0, 0, 0};
const short QQmlJSGrammar::lhs [] = {
- 105, 105, 105, 105, 105, 105, 106, 112, 112, 115,
- 115, 117, 116, 116, 116, 116, 116, 116, 116, 116,
- 119, 114, 113, 122, 122, 123, 123, 124, 124, 121,
- 110, 110, 110, 110, 126, 126, 126, 126, 126, 126,
- 126, 110, 134, 134, 134, 135, 135, 136, 136, 110,
- 110, 110, 110, 110, 110, 110, 110, 110, 110, 110,
- 110, 110, 110, 110, 110, 110, 120, 120, 120, 120,
- 120, 120, 120, 139, 139, 139, 139, 139, 139, 139,
- 139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
- 139, 125, 141, 141, 141, 141, 140, 140, 145, 145,
- 145, 143, 143, 146, 146, 146, 146, 149, 149, 149,
- 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
- 149, 149, 149, 149, 149, 149, 149, 149, 149, 149,
- 149, 149, 149, 149, 149, 149, 149, 149, 150, 150,
- 118, 118, 118, 118, 118, 153, 153, 154, 154, 154,
- 154, 152, 152, 155, 155, 156, 156, 157, 157, 157,
- 158, 158, 158, 158, 158, 158, 158, 158, 158, 158,
- 159, 159, 159, 159, 160, 160, 160, 161, 161, 161,
- 161, 162, 162, 162, 162, 162, 162, 162, 163, 163,
- 163, 163, 163, 163, 164, 164, 164, 164, 164, 165,
- 165, 165, 165, 165, 166, 166, 167, 167, 168, 168,
- 169, 169, 170, 170, 171, 171, 172, 172, 173, 173,
- 174, 174, 175, 175, 176, 176, 177, 177, 144, 144,
- 178, 178, 179, 179, 179, 179, 179, 179, 179, 179,
- 179, 179, 179, 179, 108, 108, 180, 180, 181, 181,
- 182, 182, 107, 107, 107, 107, 107, 107, 107, 107,
- 107, 107, 107, 107, 107, 107, 107, 127, 191, 191,
- 190, 190, 138, 138, 192, 192, 193, 193, 195, 195,
- 194, 196, 199, 197, 197, 200, 198, 198, 128, 129,
- 129, 130, 130, 183, 183, 183, 183, 183, 183, 183,
- 183, 184, 184, 184, 184, 185, 185, 185, 185, 186,
- 186, 131, 132, 201, 201, 204, 204, 202, 202, 205,
- 203, 187, 188, 188, 133, 133, 133, 206, 207, 189,
- 189, 208, 137, 151, 151, 209, 209, 148, 148, 147,
- 147, 210, 111, 111, 211, 211, 109, 109, 142, 142,
- 212};
+ 106, 106, 106, 106, 106, 106, 107, 113, 113, 116,
+ 116, 116, 116, 119, 121, 117, 117, 118, 118, 118,
+ 118, 118, 118, 118, 118, 122, 123, 115, 114, 126,
+ 126, 127, 127, 128, 128, 125, 111, 111, 111, 111,
+ 130, 130, 130, 130, 130, 130, 130, 111, 138, 138,
+ 138, 139, 139, 140, 140, 111, 111, 111, 111, 111,
+ 111, 111, 111, 111, 111, 111, 111, 111, 111, 111,
+ 111, 111, 124, 124, 124, 124, 124, 124, 124, 143,
+ 143, 143, 143, 143, 143, 143, 143, 143, 143, 143,
+ 143, 143, 143, 143, 143, 143, 143, 129, 145, 145,
+ 145, 145, 144, 144, 149, 149, 149, 147, 147, 150,
+ 150, 150, 150, 153, 153, 153, 153, 153, 153, 153,
+ 153, 153, 153, 153, 153, 153, 153, 153, 153, 153,
+ 153, 153, 153, 153, 153, 153, 153, 153, 153, 153,
+ 153, 153, 153, 153, 154, 154, 120, 120, 120, 120,
+ 120, 157, 157, 158, 158, 158, 158, 156, 156, 159,
+ 159, 160, 160, 161, 161, 161, 162, 162, 162, 162,
+ 162, 162, 162, 162, 162, 162, 163, 163, 163, 163,
+ 164, 164, 164, 165, 165, 165, 165, 166, 166, 166,
+ 166, 166, 166, 166, 167, 167, 167, 167, 167, 167,
+ 168, 168, 168, 168, 168, 169, 169, 169, 169, 169,
+ 170, 170, 171, 171, 172, 172, 173, 173, 174, 174,
+ 175, 175, 176, 176, 177, 177, 178, 178, 179, 179,
+ 180, 180, 181, 181, 148, 148, 182, 182, 183, 183,
+ 183, 183, 183, 183, 183, 183, 183, 183, 183, 183,
+ 109, 109, 184, 184, 185, 185, 186, 186, 108, 108,
+ 108, 108, 108, 108, 108, 108, 108, 108, 108, 108,
+ 108, 108, 108, 131, 195, 195, 194, 194, 142, 142,
+ 196, 196, 197, 197, 199, 199, 198, 200, 203, 201,
+ 201, 204, 202, 202, 132, 133, 133, 134, 134, 187,
+ 187, 187, 187, 187, 187, 187, 187, 188, 188, 188,
+ 188, 189, 189, 189, 189, 190, 190, 135, 136, 205,
+ 205, 208, 208, 206, 206, 209, 207, 191, 192, 192,
+ 137, 137, 137, 210, 211, 193, 193, 212, 141, 155,
+ 155, 213, 213, 152, 152, 151, 151, 214, 112, 112,
+ 215, 215, 110, 110, 146, 146, 216};
const short QQmlJSGrammar::rhs [] = {
2, 2, 2, 2, 2, 2, 2, 1, 1, 1,
- 2, 1, 2, 2, 3, 3, 5, 5, 4, 4,
- 2, 0, 1, 1, 2, 1, 3, 2, 3, 2,
- 1, 5, 4, 4, 1, 1, 1, 1, 1, 1,
- 1, 3, 1, 1, 1, 0, 1, 2, 4, 6,
- 6, 3, 3, 7, 7, 4, 4, 5, 5, 5,
- 6, 6, 10, 6, 1, 1, 1, 1, 1, 1,
+ 1, 2, 2, 1, 1, 2, 2, 2, 2, 3,
+ 3, 5, 5, 4, 4, 2, 2, 0, 1, 1,
+ 2, 1, 3, 2, 3, 2, 1, 5, 4, 4,
+ 1, 1, 1, 1, 1, 1, 1, 3, 1, 1,
+ 1, 0, 1, 2, 4, 6, 6, 3, 3, 7,
+ 7, 4, 4, 5, 5, 5, 6, 6, 10, 6,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 2, 3, 3, 4, 5, 3, 4,
- 3, 1, 1, 2, 3, 4, 1, 2, 3, 7,
- 8, 1, 3, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
+ 3, 3, 4, 5, 3, 4, 3, 1, 1, 2,
+ 3, 4, 1, 2, 3, 7, 8, 1, 3, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 4, 3, 5, 1, 2, 4, 4, 4,
- 3, 0, 1, 1, 3, 1, 1, 1, 2, 2,
- 1, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 1, 3, 3, 3, 1, 3, 3, 1, 3, 3,
- 3, 1, 3, 3, 3, 3, 3, 3, 1, 3,
- 3, 3, 3, 3, 1, 3, 3, 3, 3, 1,
- 3, 3, 3, 3, 1, 3, 1, 3, 1, 3,
+ 1, 1, 1, 1, 1, 1, 1, 1, 4, 3,
+ 5, 1, 2, 4, 4, 4, 3, 0, 1, 1,
+ 3, 1, 1, 1, 2, 2, 1, 2, 2, 2,
+ 2, 2, 2, 2, 2, 2, 1, 3, 3, 3,
+ 1, 3, 3, 1, 3, 3, 3, 1, 3, 3,
+ 3, 3, 3, 3, 1, 3, 3, 3, 3, 3,
+ 1, 3, 3, 3, 3, 1, 3, 3, 3, 3,
1, 3, 1, 3, 1, 3, 1, 3, 1, 3,
- 1, 3, 1, 3, 1, 5, 1, 5, 1, 3,
- 1, 3, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 3, 0, 1, 1, 3,
- 0, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 3, 1, 2,
- 0, 1, 3, 3, 1, 1, 1, 3, 1, 3,
- 2, 2, 2, 0, 1, 2, 0, 1, 1, 2,
- 2, 7, 5, 7, 7, 7, 5, 9, 10, 7,
- 8, 2, 2, 3, 3, 2, 2, 3, 3, 3,
- 3, 5, 5, 3, 5, 1, 2, 0, 1, 4,
- 3, 3, 3, 3, 3, 3, 4, 5, 2, 2,
- 2, 1, 8, 8, 7, 1, 3, 0, 1, 0,
- 1, 1, 1, 1, 1, 2, 1, 1, 0, 1,
- 2};
+ 1, 3, 1, 3, 1, 3, 1, 3, 1, 3,
+ 1, 5, 1, 5, 1, 3, 1, 3, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 3, 0, 1, 1, 3, 0, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 3, 1, 2, 0, 1, 3, 3,
+ 1, 1, 1, 3, 1, 3, 2, 2, 2, 0,
+ 1, 2, 0, 1, 1, 2, 2, 7, 5, 7,
+ 7, 7, 5, 9, 10, 7, 8, 2, 2, 3,
+ 3, 2, 2, 3, 3, 3, 3, 5, 5, 3,
+ 5, 1, 2, 0, 1, 4, 3, 3, 3, 3,
+ 3, 3, 4, 5, 2, 2, 2, 1, 8, 8,
+ 7, 1, 3, 0, 1, 0, 1, 1, 1, 1,
+ 1, 2, 1, 1, 0, 1, 2};
const short QQmlJSGrammar::action_default [] = {
- 0, 0, 22, 0, 0, 0, 22, 0, 178, 245,
- 209, 217, 213, 157, 229, 205, 3, 142, 75, 158,
- 221, 225, 146, 175, 156, 161, 141, 195, 182, 0,
- 82, 83, 78, 0, 72, 67, 349, 0, 0, 0,
- 0, 80, 0, 0, 76, 79, 71, 0, 0, 68,
- 70, 73, 69, 81, 74, 0, 77, 0, 0, 171,
- 0, 0, 158, 177, 160, 159, 0, 0, 0, 173,
- 174, 172, 176, 0, 206, 0, 0, 0, 0, 196,
- 0, 0, 0, 0, 0, 0, 186, 0, 0, 0,
- 180, 181, 179, 184, 188, 187, 185, 183, 198, 197,
- 199, 0, 214, 0, 210, 0, 0, 152, 139, 151,
- 140, 108, 109, 110, 135, 111, 136, 112, 113, 114,
- 115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
- 137, 125, 126, 127, 128, 129, 130, 131, 132, 133,
- 134, 138, 0, 0, 150, 246, 153, 0, 154, 0,
- 155, 149, 0, 242, 235, 233, 240, 241, 239, 238,
- 244, 237, 236, 234, 243, 230, 0, 218, 0, 0,
- 222, 0, 0, 226, 0, 0, 152, 144, 0, 143,
- 0, 148, 162, 0, 338, 338, 339, 0, 336, 0,
- 337, 0, 340, 253, 260, 259, 267, 255, 0, 256,
- 0, 341, 0, 348, 257, 258, 75, 263, 261, 345,
- 342, 347, 264, 0, 275, 0, 0, 0, 0, 332,
- 0, 349, 247, 289, 0, 0, 0, 276, 0, 0,
- 265, 266, 0, 254, 262, 290, 291, 0, 338, 0,
- 0, 340, 0, 333, 334, 0, 322, 346, 0, 306,
- 307, 308, 309, 0, 302, 303, 304, 305, 330, 331,
- 0, 0, 0, 0, 0, 294, 295, 296, 251, 249,
- 211, 219, 215, 231, 207, 252, 0, 158, 223, 227,
- 200, 189, 0, 0, 208, 0, 0, 0, 0, 201,
- 0, 0, 0, 0, 0, 193, 191, 194, 192, 190,
- 203, 202, 204, 0, 216, 0, 212, 0, 250, 158,
- 0, 232, 247, 248, 0, 247, 0, 0, 298, 0,
- 0, 0, 300, 0, 220, 0, 0, 224, 0, 0,
- 228, 287, 0, 279, 288, 282, 0, 286, 0, 247,
- 280, 0, 247, 0, 0, 299, 0, 0, 0, 301,
- 0, 0, 0, 293, 0, 292, 75, 102, 350, 0,
- 0, 107, 269, 272, 0, 108, 275, 111, 136, 113,
- 114, 78, 118, 119, 72, 120, 123, 76, 79, 247,
- 73, 81, 126, 74, 128, 77, 130, 131, 276, 133,
- 134, 138, 0, 104, 103, 106, 90, 105, 89, 0,
- 99, 270, 268, 0, 0, 0, 340, 0, 100, 146,
- 147, 152, 0, 145, 0, 310, 311, 0, 338, 0,
- 0, 340, 0, 101, 0, 0, 0, 313, 318, 316,
- 319, 0, 0, 317, 318, 0, 314, 0, 315, 271,
- 321, 0, 271, 320, 0, 323, 324, 0, 271, 325,
- 326, 0, 0, 327, 0, 0, 0, 328, 329, 164,
- 163, 0, 0, 0, 297, 0, 0, 0, 312, 284,
- 277, 0, 285, 281, 0, 283, 273, 0, 274, 278,
- 0, 0, 340, 0, 335, 93, 0, 0, 97, 84,
- 0, 86, 95, 0, 87, 96, 98, 88, 94, 85,
- 0, 91, 168, 166, 170, 167, 165, 169, 343, 6,
- 344, 4, 2, 65, 92, 0, 0, 68, 70, 69,
- 31, 5, 0, 66, 0, 45, 44, 43, 0, 0,
- 58, 0, 59, 35, 36, 37, 38, 40, 41, 62,
- 39, 0, 45, 0, 0, 0, 0, 0, 54, 0,
- 55, 0, 0, 26, 0, 0, 63, 27, 0, 30,
- 28, 24, 0, 29, 25, 0, 56, 0, 57, 146,
- 0, 60, 64, 0, 0, 0, 0, 61, 0, 52,
- 46, 53, 47, 0, 0, 0, 0, 49, 0, 50,
- 51, 48, 0, 0, 146, 271, 0, 0, 42, 75,
- 108, 275, 111, 136, 113, 114, 78, 118, 119, 120,
- 123, 76, 79, 247, 81, 126, 74, 128, 77, 130,
- 131, 276, 133, 134, 138, 0, 32, 33, 0, 34,
- 8, 0, 10, 0, 9, 0, 1, 21, 12, 0,
- 13, 0, 14, 0, 19, 20, 0, 15, 16, 0,
- 17, 18, 11, 23, 7, 351};
+ 0, 0, 28, 0, 0, 0, 28, 0, 184, 251,
+ 215, 223, 219, 163, 235, 211, 3, 148, 81, 164,
+ 227, 231, 152, 181, 162, 167, 147, 201, 188, 0,
+ 88, 89, 84, 0, 78, 73, 355, 0, 0, 0,
+ 0, 86, 0, 0, 82, 85, 77, 0, 0, 74,
+ 76, 79, 75, 87, 80, 0, 83, 0, 0, 177,
+ 0, 0, 164, 183, 166, 165, 0, 0, 0, 179,
+ 180, 178, 182, 0, 212, 0, 0, 0, 0, 202,
+ 0, 0, 0, 0, 0, 0, 192, 0, 0, 0,
+ 186, 187, 185, 190, 194, 193, 191, 189, 204, 203,
+ 205, 0, 220, 0, 216, 0, 0, 158, 145, 157,
+ 146, 114, 115, 116, 141, 117, 142, 118, 119, 120,
+ 121, 122, 123, 124, 125, 126, 127, 128, 129, 130,
+ 143, 131, 132, 133, 134, 135, 136, 137, 138, 139,
+ 140, 144, 0, 0, 156, 252, 159, 0, 160, 0,
+ 161, 155, 0, 248, 241, 239, 246, 247, 245, 244,
+ 250, 243, 242, 240, 249, 236, 0, 224, 0, 0,
+ 228, 0, 0, 232, 0, 0, 158, 150, 0, 149,
+ 0, 154, 168, 0, 344, 344, 345, 0, 342, 0,
+ 343, 0, 346, 259, 266, 265, 273, 261, 0, 262,
+ 0, 347, 0, 354, 263, 264, 81, 269, 267, 351,
+ 348, 353, 270, 0, 281, 0, 0, 0, 0, 338,
+ 0, 355, 253, 295, 0, 0, 0, 282, 0, 0,
+ 271, 272, 0, 260, 268, 296, 297, 0, 344, 0,
+ 0, 346, 0, 339, 340, 0, 328, 352, 0, 312,
+ 313, 314, 315, 0, 308, 309, 310, 311, 336, 337,
+ 0, 0, 0, 0, 0, 300, 301, 302, 257, 255,
+ 217, 225, 221, 237, 213, 258, 0, 164, 229, 233,
+ 206, 195, 0, 0, 214, 0, 0, 0, 0, 207,
+ 0, 0, 0, 0, 0, 199, 197, 200, 198, 196,
+ 209, 208, 210, 0, 222, 0, 218, 0, 256, 164,
+ 0, 238, 253, 254, 0, 253, 0, 0, 304, 0,
+ 0, 0, 306, 0, 226, 0, 0, 230, 0, 0,
+ 234, 293, 0, 285, 294, 288, 0, 292, 0, 253,
+ 286, 0, 253, 0, 0, 305, 0, 0, 0, 307,
+ 0, 0, 0, 299, 0, 298, 81, 108, 356, 0,
+ 0, 113, 275, 278, 0, 114, 281, 117, 142, 119,
+ 120, 84, 124, 125, 78, 126, 129, 82, 85, 253,
+ 79, 87, 132, 80, 134, 83, 136, 137, 282, 139,
+ 140, 144, 0, 110, 109, 112, 96, 111, 95, 0,
+ 105, 276, 274, 0, 0, 0, 346, 0, 106, 152,
+ 153, 158, 0, 151, 0, 316, 317, 0, 344, 0,
+ 0, 346, 0, 107, 0, 0, 0, 319, 324, 322,
+ 325, 0, 0, 323, 324, 0, 320, 0, 321, 277,
+ 327, 0, 277, 326, 0, 329, 330, 0, 277, 331,
+ 332, 0, 0, 333, 0, 0, 0, 334, 335, 170,
+ 169, 0, 0, 0, 303, 0, 0, 0, 318, 290,
+ 283, 0, 291, 287, 0, 289, 279, 0, 280, 284,
+ 0, 0, 346, 0, 341, 99, 0, 0, 103, 90,
+ 0, 92, 101, 0, 93, 102, 104, 94, 100, 91,
+ 0, 97, 174, 172, 176, 173, 171, 175, 349, 6,
+ 350, 4, 2, 71, 98, 0, 0, 74, 76, 75,
+ 37, 5, 0, 72, 0, 51, 50, 49, 0, 0,
+ 64, 0, 65, 41, 42, 43, 44, 46, 47, 68,
+ 45, 0, 51, 0, 0, 0, 0, 0, 60, 0,
+ 61, 0, 0, 32, 0, 0, 69, 33, 0, 36,
+ 34, 30, 0, 35, 31, 0, 62, 0, 63, 152,
+ 0, 66, 70, 0, 0, 0, 0, 67, 0, 58,
+ 52, 59, 53, 0, 0, 0, 0, 55, 0, 56,
+ 57, 54, 0, 0, 152, 277, 0, 0, 48, 81,
+ 114, 281, 117, 142, 119, 120, 84, 124, 125, 126,
+ 129, 82, 85, 253, 87, 132, 80, 134, 83, 136,
+ 137, 282, 139, 140, 144, 0, 38, 39, 0, 40,
+ 8, 0, 0, 9, 0, 11, 0, 10, 0, 1,
+ 27, 15, 14, 26, 13, 12, 29, 7, 0, 18,
+ 0, 19, 0, 24, 25, 0, 20, 21, 0, 22,
+ 23, 16, 17, 357};
const short QQmlJSGrammar::goto_default [] = {
- 7, 636, 211, 198, 209, 521, 509, 635, 654, 508,
- 634, 632, 637, 22, 633, 18, 520, 562, 552, 559,
- 554, 539, 193, 197, 199, 204, 234, 212, 231, 543,
- 583, 582, 203, 233, 26, 487, 486, 359, 358, 9,
- 357, 360, 202, 480, 361, 109, 17, 147, 24, 13,
- 146, 19, 25, 59, 23, 8, 28, 27, 280, 15,
- 274, 10, 270, 12, 272, 11, 271, 20, 278, 21,
- 279, 14, 273, 269, 310, 414, 275, 276, 205, 195,
- 194, 208, 207, 230, 196, 364, 363, 232, 471, 470,
- 332, 333, 473, 335, 472, 334, 427, 431, 434, 430,
- 429, 449, 450, 200, 186, 201, 210, 0};
+ 7, 639, 211, 198, 209, 521, 509, 634, 647, 508,
+ 633, 637, 635, 643, 22, 640, 638, 636, 18, 520,
+ 562, 552, 559, 554, 539, 193, 197, 199, 204, 234,
+ 212, 231, 543, 583, 582, 203, 233, 26, 487, 486,
+ 359, 358, 9, 357, 360, 202, 480, 361, 109, 17,
+ 147, 24, 13, 146, 19, 25, 59, 23, 8, 28,
+ 27, 280, 15, 274, 10, 270, 12, 272, 11, 271,
+ 20, 278, 21, 279, 14, 273, 269, 310, 414, 275,
+ 276, 205, 195, 194, 208, 207, 230, 196, 364, 363,
+ 232, 471, 470, 332, 333, 473, 335, 472, 334, 427,
+ 431, 434, 430, 429, 449, 450, 200, 186, 201, 210,
+ 0};
const short QQmlJSGrammar::action_index [] = {
- 235, 1289, 2663, 2663, 2562, 1005, 64, 90, 103, -105,
- 88, 94, 79, 173, -105, 302, 69, -105, -105, 724,
- 65, 135, 195, 239, -105, -105, -105, 367, 278, 1289,
- -105, -105, -105, 485, -105, -105, 2360, 1772, 1289, 1289,
- 1289, -105, 817, 1289, -105, -105, -105, 1289, 1289, -105,
- -105, -105, -105, -105, -105, 1289, -105, 1289, 1289, -105,
- 1289, 1289, 95, 207, -105, -105, 1289, 1289, 1289, -105,
- -105, -105, 202, 1289, 300, 1289, 1289, 1289, 1289, 377,
- 1289, 1289, 1289, 1289, 1289, 1289, 253, 1289, 1289, 1289,
- 151, 147, 129, 196, 170, 199, 279, 270, 470, 470,
- 387, 1289, 53, 1289, 80, 2158, 1289, 1289, -105, -105,
- -105, -105, -105, -105, -105, -105, -105, -105, -105, -105,
- -105, -105, -105, -105, -105, -105, -105, -105, -105, -105,
- -105, -105, -105, -105, -105, -105, -105, -105, -105, -105,
- -105, -105, 128, 1289, -105, -105, 74, 52, -105, 1289,
- -105, -105, 1289, -105, -105, -105, -105, -105, -105, -105,
- -105, -105, -105, -105, -105, -105, 1289, 51, 1289, 1289,
- 77, 66, 1289, -105, 2158, 1289, 1289, -105, 125, -105,
- 48, -105, -105, 47, 451, 374, 83, 87, -105, 397,
- -105, 62, 2663, -105, -105, -105, -105, -105, 205, -105,
- 415, -105, 68, -105, -105, -105, 86, -105, -105, -105,
- 2663, -105, -105, 622, -105, 576, 102, 2562, 75, 89,
- 81, 2865, 1289, -105, 70, 1289, 63, -105, 92, 93,
- -105, -105, 546, -105, -105, -105, -105, 91, 546, 40,
- 45, 2663, 49, -105, -105, 2562, -105, -105, 106, -105,
- -105, -105, -105, 121, -105, -105, -105, -105, -105, -105,
- 42, 44, 1289, 114, 222, -105, -105, -105, 1481, -105,
- 84, 57, 56, -105, 388, 78, 54, 682, 82, 99,
- 357, 247, 546, 1289, 295, 1289, 1289, 1289, 1289, 334,
- 1289, 1289, 1289, 1289, 1289, 203, 217, 244, 263, 211,
- 341, 319, 351, 1289, 56, 1289, 73, 1289, -105, 724,
- 1289, -105, 1289, 67, 46, 1289, 61, 2562, -105, 1289,
- 136, 2562, -105, 1289, 76, 1289, 1289, 85, 59, 1289,
- -105, 71, 133, 72, -105, -105, 1289, -105, 546, 1289,
- -105, -53, 1289, -60, 2562, -105, 1289, 143, 2562, -105,
- 1289, 132, 2562, 8, 2562, -105, 7, -105, 12, -37,
- 107, -105, -105, 2562, -33, 622, 22, 555, 115, 1289,
- 2562, 23, -13, 502, 2259, -10, 817, 18, 6, 1387,
- 2259, 0, 9, -6, 1289, -4, -23, 1289, 5, 1289,
- -25, -27, 2461, -105, -105, -105, -105, -105, -105, 1289,
- -105, -105, -105, -3, -1, 21, 2663, 1, -105, 218,
- -105, 1289, 4, -105, 111, -105, -105, 26, 466, 16,
- 38, 2663, 39, -105, 1289, 110, 37, -105, 55, -105,
- 60, 116, 1289, -105, 58, 43, -105, -15, -105, 2562,
- -105, 123, 2562, -105, 154, -105, -105, 96, 2562, 32,
- -105, 3, 14, -105, 546, -11, 13, -105, -105, -105,
- -105, 1289, 126, 2562, -105, 1289, 130, 2562, -105, 15,
- -105, 301, -105, -105, 1289, -105, -105, 546, -105, -105,
- -45, -12, 2663, -24, -105, -105, 204, 1578, -105, -105,
- 1869, -105, -105, 1675, -105, -105, -105, -105, -105, -105,
- 101, -105, -105, -105, -105, -105, -105, -105, -105, -105,
- 2663, -105, -105, -105, 105, 2, 910, 206, -47, -2,
- -105, -105, 246, -105, 214, -105, -105, -105, 364, 232,
- -105, 1963, -105, -105, -105, -105, -105, -105, -105, -105,
- -105, 191, 24, 394, 172, -18, 384, 215, -105, -30,
- -105, 910, 149, -105, -16, 910, -105, -105, 1100, -105,
- -105, -105, 1195, -105, -105, 225, -105, 1963, -105, 316,
- -17, -105, -105, 269, 418, -5, 1963, -105, 184, -105,
- 175, -105, 20, -9, 546, 182, 469, -105, 104, -105,
- -105, -105, 2057, 910, 292, 2764, 1772, 10, -105, 35,
- 622, 34, 525, 98, 1289, 2562, 50, 17, 536, 19,
- 817, 31, 27, 1387, 28, 9, 29, 1289, 30, 11,
- 1289, 41, 1289, 33, 36, 137, -105, -105, 25, -105,
- -105, 910, -105, 268, -86, 910, -105, -105, 141, 546,
- -105, 156, -105, 117, -105, -105, 546, -105, -105, 138,
- -105, -105, -105, -105, -105, -105,
+ 239, 1406, 2692, 2692, 2794, 1119, 115, 29, 168, -106,
+ 26, -23, -60, 225, -106, 306, 33, -106, -106, 732,
+ -2, 145, 243, 223, -106, -106, -106, 379, 227, 1406,
+ -106, -106, -106, 539, -106, -106, 2488, 1698, 1406, 1406,
+ 1406, -106, 1023, 1406, -106, -106, -106, 1406, 1406, -106,
+ -106, -106, -106, -106, -106, 1406, -106, 1406, 1406, -106,
+ 1406, 1406, 114, 206, -106, -106, 1406, 1406, 1406, -106,
+ -106, -106, 211, 1406, 302, 1406, 1406, 1406, 1406, 369,
+ 1406, 1406, 1406, 1406, 1406, 1406, 226, 1406, 1406, 1406,
+ 135, 151, 110, 257, 279, 276, 256, 222, 475, 475,
+ 475, 1406, 7, 1406, 57, 2284, 1406, 1406, -106, -106,
+ -106, -106, -106, -106, -106, -106, -106, -106, -106, -106,
+ -106, -106, -106, -106, -106, -106, -106, -106, -106, -106,
+ -106, -106, -106, -106, -106, -106, -106, -106, -106, -106,
+ -106, -106, 136, 1406, -106, -106, 30, -24, -106, 1406,
+ -106, -106, 1406, -106, -106, -106, -106, -106, -106, -106,
+ -106, -106, -106, -106, -106, -106, 1406, 2, 1406, 1406,
+ 10, 97, 1406, -106, 2284, 1406, 1406, -106, 141, -106,
+ -45, -106, -106, 4, 457, 386, 89, 79, -106, 448,
+ -106, 74, 2692, -106, -106, -106, -106, -106, 164, -106,
+ 460, -106, 85, -106, -106, -106, 96, -106, -106, -106,
+ 2692, -106, -106, 547, -106, 629, 143, 2794, 62, 54,
+ 43, 2998, 1406, -106, 51, 1406, 52, -106, 47, 45,
+ -106, -106, 454, -106, -106, -106, -106, 64, 352, 31,
+ 61, 2692, 27, -106, -106, 2794, -106, -106, 139, -106,
+ -106, -106, -106, 126, -106, -106, -106, -106, -106, -106,
+ -6, 25, 1406, 130, 159, -106, -106, -106, 1600, -106,
+ 68, 65, 5, -106, 308, 60, 3, 835, 99, 105,
+ 337, 207, 408, 1406, 317, 1406, 1406, 1406, 1406, 353,
+ 1406, 1406, 1406, 1406, 1406, 186, 203, 204, 212, 219,
+ 333, 343, 359, 1406, 20, 1406, 202, 1406, -106, 732,
+ 1406, -106, 1406, 81, 72, 1406, 77, 2794, -106, 1406,
+ 149, 2794, -106, 1406, 80, 1406, 1406, 94, 88, 1406,
+ -106, -8, 128, -25, -106, -106, 1406, -106, 471, 1406,
+ -106, -53, 1406, -56, 2794, -106, 1406, 134, 2794, -106,
+ 1406, 138, 2794, -5, 2794, -106, -4, -106, 9, -9,
+ 37, -106, -106, 2794, -12, 555, 32, 629, 123, 1406,
+ 2794, 41, 18, 504, 2386, 21, 1023, 49, 46, 1505,
+ 2386, 42, 16, 44, 1406, 24, -10, 1406, 17, 1406,
+ -15, -18, 2590, -106, -106, -106, -106, -106, -106, 1406,
+ -106, -106, -106, -1, -26, -3, 2692, -27, -106, 277,
+ -106, 1406, -28, -106, 90, -106, -106, 1, 552, -40,
+ -11, 2692, -29, -106, 1406, 117, 14, -106, 50, -106,
+ 40, 119, 1406, -106, 11, 35, -106, -54, -106, 2794,
+ -106, 116, 2794, -106, 267, -106, -106, 121, 2794, -7,
+ -106, -31, -19, -106, 376, 6, 78, -106, -106, -106,
+ -106, 1406, 98, 2794, -106, 1406, 106, 2794, -106, 76,
+ -106, 254, -106, -106, 1406, -106, -106, 552, -106, -106,
+ 71, 75, 2692, 67, -106, -106, 122, 1992, -106, -106,
+ 1796, -106, -106, 1894, -106, -106, -106, -106, -106, -106,
+ 113, -106, -106, -106, -106, -106, -106, -106, -106, -106,
+ 2692, -106, -106, -106, 111, 22, 929, 152, 39, 48,
+ -106, -106, 301, -106, 147, -106, -106, -106, 468, 155,
+ -106, 2182, -106, -106, -106, -106, -106, -106, -106, -106,
+ -106, 178, -30, 463, 181, -14, 400, 229, -106, -32,
+ -106, 929, 104, -106, 0, 929, -106, -106, 1311, -106,
+ -106, -106, 1215, -106, -106, 248, -106, 2182, -106, 392,
+ 59, -106, -106, 244, 552, 73, 2182, -106, 236, -106,
+ 237, -106, 70, 15, 368, 214, 355, -106, 103, -106,
+ -106, -106, 2087, 721, 392, 2896, 1698, 34, -106, 56,
+ 598, 55, 629, 107, 1406, 2794, 53, 23, 544, 36,
+ 1023, 58, 66, 1505, 69, 38, 63, 1406, 95, 84,
+ 1406, 102, 1406, 83, 82, 124, -106, -106, 87, -106,
+ -106, 929, 813, 91, 929, -106, 271, -106, 86, -106,
+ -106, 100, 101, -106, -106, -106, -106, -106, 552, -106,
+ 209, -106, 109, -106, -106, 552, -106, -106, 92, -106,
+ -106, -106, -106, -106,
- -108, 0, 79, 128, 132, 301, 2, -108, -108, -108,
- -108, -108, -108, -108, -108, -108, -108, -108, -108, -47,
- -108, -108, -108, -108, -108, -108, -108, -108, -108, 51,
- -108, -108, -108, -3, -108, -108, 8, -23, 12, 78,
- 106, -108, 69, 74, -108, -108, -108, 195, 204, -108,
- -108, -108, -108, -108, -108, 188, -108, 201, 200, -108,
- 127, 129, -108, -108, -108, -108, 140, 137, 133, -108,
- -108, -108, -108, 146, -108, 177, 168, 170, 167, -108,
- 144, 152, 166, 158, 160, 131, -108, 194, 187, 207,
- -108, -108, -108, -108, -108, -108, -108, -108, -108, -108,
- -108, 88, -108, 112, -108, 121, 90, -38, -108, -108,
- -108, -108, -108, -108, -108, -108, -108, -108, -108, -108,
- -108, -108, -108, -108, -108, -108, -108, -108, -108, -108,
- -108, -108, -108, -108, -108, -108, -108, -108, -108, -108,
- -108, -108, -108, 32, -108, -108, -108, -108, -108, 26,
- -108, -108, 27, -108, -108, -108, -108, -108, -108, -108,
- -108, -108, -108, -108, -108, -108, 102, -108, 103, 41,
- -108, -108, 37, -108, 250, 38, 83, -108, -108, -108,
- -108, -108, -108, -108, 42, 126, -108, -108, -108, 40,
- -108, -108, 43, -108, -108, -108, -108, -108, -108, -108,
- 39, -108, -108, -108, -108, -108, -108, -108, -108, -108,
- 225, -108, -108, 30, -108, 24, -108, 211, -108, 55,
- -108, 77, 60, -108, -108, 66, 34, -108, -108, -108,
- -108, -108, -8, -108, -108, -108, -108, -108, 153, -108,
- -108, 164, -108, -108, -108, 241, -108, -108, -108, -108,
- -108, -108, -108, -108, -108, -108, -108, -108, -108, -108,
- -108, -108, 11, -108, -108, -108, -108, -108, 179, -108,
- -108, -108, -108, -108, -108, -108, -108, -108, -108, -108,
- -108, -108, 19, 259, -108, 255, 228, 240, 246, -108,
- 52, 63, 67, 65, 50, -108, -108, -108, -108, -108,
- -108, -108, -108, 210, -108, 256, -108, 226, -108, -108,
- 252, -108, 161, -108, -108, 268, -108, 197, -108, 5,
- -108, 218, -108, 222, -108, 213, 249, -108, -108, 236,
- -108, -108, -108, -108, -108, -108, 212, -108, 80, 87,
- -108, -108, 86, -108, 98, -108, 61, -108, 245, -108,
- 59, -108, 208, -108, 192, -108, -108, -108, -108, -108,
- -108, -108, -108, 257, -108, 33, -108, 28, -108, 73,
- 71, -108, -108, 36, 57, -108, 62, -108, -108, 46,
- 70, -108, -108, -108, 49, -108, 45, 99, -108, 84,
- -108, -108, 100, -108, -108, -108, -108, -108, -108, 21,
- -108, -108, -108, -108, -108, -108, 118, -108, -108, -108,
- -108, 81, -108, -108, -108, -108, -108, -108, 123, -108,
- -108, 134, -108, -108, 56, -108, -108, -108, -108, -108,
- -58, -108, 47, -108, -57, -108, -108, -108, -108, 265,
- -108, -108, 374, -108, -108, -108, -108, -108, 94, -66,
- -108, -108, 25, -108, 22, -108, 31, -108, -108, -108,
- -108, 58, -108, 229, -108, 35, -108, 235, -108, -108,
- -108, -108, -108, -108, 29, -108, -108, 186, -108, -108,
- -108, -108, 162, -108, -108, -108, -108, 48, -108, -108,
- 163, -108, -108, 44, -108, -108, -108, -108, -108, -108,
- -108, -108, -108, -108, -108, -108, -108, -108, -108, -108,
- 141, -108, -108, -108, -108, -108, -7, -108, -108, -108,
- -108, -108, -108, -108, -19, -108, -108, -108, -6, -108,
- -108, 334, -108, -108, -108, -108, -108, -108, -108, -108,
- -108, -108, -108, -15, -27, -108, -10, -108, -108, -108,
- -108, 159, -108, -108, -108, 176, -108, -108, 319, -108,
- -108, -108, 322, -108, -108, -108, -108, 469, -108, -108,
- 10, -108, -108, 6, 16, -108, 342, -108, -108, -108,
- 17, -108, -108, -108, 15, 3, 9, -108, -108, -108,
- -108, -108, 358, 68, -108, 82, 310, 1, -108, -108,
- -2, -108, 7, -108, 54, 76, -108, -108, 4, -108,
- 64, -108, -108, 23, -108, -108, -108, 18, -108, -5,
- 95, -108, 91, -108, -108, -108, -108, -108, -1, -108,
- -108, 20, -108, -108, 14, 142, -108, -108, -108, 13,
- -108, -108, -108, -108, -108, -108, -11, -108, -108, -108,
- -108, -108, -108, -108, -108, -108};
+ -111, 43, 59, 70, 71, 369, 40, -111, -111, -111,
+ -111, -111, -111, -111, -111, -111, -111, -111, -111, 21,
+ -111, -111, -111, -111, -111, -111, -111, -111, -111, 79,
+ -111, -111, -111, -16, -111, -111, 5, -26, 23, 73,
+ 91, -111, 83, 61, -111, -111, -111, 88, 87, -111,
+ -111, -111, -111, -111, -111, 29, -111, 66, 39, -111,
+ 97, 193, -111, -111, -111, -111, 160, 180, 183, -111,
+ -111, -111, -111, 176, -111, 167, 151, 155, 152, -111,
+ 148, 187, 195, 197, 199, 201, -111, 186, 92, 194,
+ -111, -111, -111, -111, -111, -111, -111, -111, -111, -111,
+ -111, 103, -111, 108, -111, 181, -2, -42, -111, -111,
+ -111, -111, -111, -111, -111, -111, -111, -111, -111, -111,
+ -111, -111, -111, -111, -111, -111, -111, -111, -111, -111,
+ -111, -111, -111, -111, -111, -111, -111, -111, -111, -111,
+ -111, -111, -111, 34, -111, -111, -111, -111, -111, 3,
+ -111, -111, 10, -111, -111, -111, -111, -111, -111, -111,
+ -111, -111, -111, -111, -111, -111, 127, -111, 109, 15,
+ -111, -111, 16, -111, 225, 44, 128, -111, -111, -111,
+ -111, -111, -111, -111, 25, 157, -111, -111, -111, 26,
+ -111, -111, 24, -111, -111, -111, -111, -111, -111, -111,
+ 22, -111, -111, -111, -111, -111, -111, -111, -111, -111,
+ 179, -111, -111, 45, -111, 46, -111, 107, -111, 48,
+ -111, 106, 62, -111, -111, 163, -3, -111, -111, -111,
+ -111, -111, -14, -111, -111, -111, -111, -111, 57, -111,
+ -111, 224, -111, -111, -111, 227, -111, -111, -111, -111,
+ -111, -111, -111, -111, -111, -111, -111, -111, -111, -111,
+ -111, -111, 35, -111, -111, -111, -111, -111, 72, -111,
+ -111, -111, -111, -111, -111, -111, -111, -111, -111, -111,
+ -111, -111, 12, 264, -111, 258, 246, 254, 209, -111,
+ 60, 51, 52, 27, 53, -111, -111, -111, -111, -111,
+ -111, -111, -111, 244, -111, 255, -111, 203, -111, -111,
+ 207, -111, 217, -111, -111, 198, -111, 208, -111, 8,
+ -111, 215, -111, 232, -111, 233, 234, -111, -111, 223,
+ -111, -111, -111, -111, -111, -111, 230, -111, 95, 113,
+ -111, -111, 153, -111, 156, -111, 2, -111, 147, -111,
+ 58, -111, 137, -111, 100, -111, -111, -111, -111, -111,
+ -111, -111, -111, 135, -111, 41, -111, 54, -111, 117,
+ 162, -111, -111, 50, 169, -111, 174, -111, -111, 32,
+ 178, -111, -111, -111, 31, -111, 7, 144, -111, 130,
+ -111, -111, 142, -111, -111, -111, -111, -111, -111, 11,
+ -111, -111, -111, -111, -111, -111, 214, -111, -111, -111,
+ -111, 140, -111, -111, -111, -111, -111, -111, 158, -111,
+ -111, 149, -111, -111, 47, -111, -111, -111, -111, -111,
+ -55, -111, 38, -111, -67, -111, -111, -111, -111, 263,
+ -111, -111, 262, -111, -111, -111, -111, -111, 190, -76,
+ -111, -111, 30, -111, 19, -111, 14, -111, -111, -111,
+ -111, 33, -111, 272, -111, 64, -111, 175, -111, -111,
+ -111, -111, -111, -111, 18, -111, -111, 69, -111, -111,
+ -111, -111, 114, -111, -111, -111, -111, 20, -111, -111,
+ 110, -111, -111, 28, -111, -111, -111, -111, -111, -111,
+ -111, -111, -111, -111, -111, -111, -111, -111, -111, -111,
+ 86, -111, -111, -111, -111, -111, 55, -111, -111, -111,
+ -111, -111, -111, -111, -7, -111, -111, -111, 1, -111,
+ -111, 329, -111, -111, -111, -111, -111, -111, -111, -111,
+ -111, -111, -111, 0, -11, -111, -10, -111, -111, -111,
+ -111, 204, -111, -111, -111, 205, -111, -111, 317, -111,
+ -111, -111, 311, -111, -111, -111, -111, 370, -111, -111,
+ -9, -111, -111, -4, -12, -111, 337, -111, -111, -111,
+ -18, -111, -111, -111, -1, -17, -6, -111, -111, -111,
+ -111, -111, 466, 78, -111, 82, 307, -13, -111, -111,
+ -8, -111, 6, -111, 74, 76, -111, -111, 9, -111,
+ 85, -111, -111, 17, -111, -111, -111, 4, -111, -22,
+ 84, -111, 67, -111, -111, -111, -111, -111, 49, -111,
+ -111, 37, 42, 68, 77, -111, -111, -111, -111, -111,
+ -111, -111, -111, -111, -111, -111, -111, -111, 13, -111,
+ -111, -111, -111, -111, -111, 36, -111, -111, -111, -111,
+ -111, -111, -111, -111};
const short QQmlJSGrammar::action_info [] = {
- 344, -127, 576, -129, 551, 631, 546, -105, 342, 465,
- 448, 461, -132, -106, 245, 481, 558, 558, 398, 573,
- 392, 482, 402, 268, 354, -124, 350, 578, 585, -135,
- -116, 484, 474, 404, -106, -105, -127, -129, -124, 454,
- 438, -135, 245, 558, 448, 424, 448, 448, -132, 456,
- 439, 588, 452, 268, 406, 350, 408, -116, 558, 405,
- 432, 544, 418, 432, 413, 432, 329, 166, 524, 461,
- 428, 421, 465, 172, 283, 143, 420, 143, 241, 166,
- 262, 73, 149, 185, 323, 283, 307, 323, 336, 73,
- 655, 189, 0, 245, 423, 192, 448, 0, 0, 101,
- 240, 0, 451, 346, 243, 303, 424, 315, 181, 143,
- 0, 268, 151, 0, 399, 312, 452, 350, 143, 261,
- 174, 317, 143, 244, 303, 184, 435, 238, 461, 465,
- 442, 143, 103, 143, 143, 305, 143, 64, 143, 175,
- 143, 338, 101, 60, 143, 555, 0, 191, 65, 325,
- 0, 143, 0, 326, 61, 631, 174, 555, 103, 259,
- 258, 501, 143, 259, 258, 590, 589, 252, 251, 60,
- 426, 436, 416, 415, 264, 175, 259, 258, 645, 644,
- 61, 179, 257, 256, 144, 168, 463, 60, 105, 169,
- 467, 60, 352, 626, 339, 87, 321, 88, 61, 651,
- 650, 525, 61, 348, 525, 556, 174, 106, 89, 107,
- 174, 525, 490, 143, 66, 446, 445, 648, 647, 66,
- 580, 87, 549, 88, 87, 175, 88, 411, 87, 175,
- 88, 176, 567, 174, 89, 542, 87, 89, 88, 531,
- 0, 89, 87, 525, 88, 581, 579, 527, 646, 89,
- 527, 66, 175, 592, 411, 89, 0, 527, 526, 67,
- 491, 526, 0, 0, 67, 68, 236, 235, 526, 87,
- 68, 88, 87, 0, 88, 0, 550, 548, 87, 558,
- 88, 527, 89, 267, 265, 89, 568, 566, 87, 527,
- 88, 89, 526, 532, 530, 87, 67, 88, 525, 0,
- 526, 89, 68, 87, 87, 88, 88, 174, 89, 477,
- 0, 266, 0, 285, 286, 641, 89, 89, 75, 76,
- 75, 76, 0, 0, 0, -92, 175, 0, 176, 642,
- 640, 174, 6, 5, 4, 1, 3, 2, 0, 593,
- 287, 288, 290, 291, 527, 77, 78, 77, 78, -92,
- 175, 292, 176, 0, 293, 526, 294, 290, 291, 0,
- 639, 0, 478, 476, 290, 291, 292, 0, 0, 293,
- 0, 294, 0, 292, 290, 291, 293, 0, 294, 0,
- 290, 291, 0, 292, 0, 0, 293, 0, 294, 292,
- 80, 81, 293, 35, 294, 0, 0, 0, 82, 83,
- 80, 81, 84, 35, 85, 0, 285, 286, 82, 83,
- 80, 81, 84, 35, 85, 0, 0, 0, 82, 83,
- 0, 0, 84, 35, 85, 0, 35, 0, 0, 0,
- 49, 52, 50, 287, 288, 0, 0, 0, 0, 0,
- 49, 52, 50, 0, 35, 0, 0, 35, 0, 0,
- 49, 52, 50, 0, 0, 0, 0, 46, 34, 51,
- 49, 52, 50, 49, 52, 50, 0, 46, 34, 51,
- 0, 0, 0, 0, 0, 0, 0, 46, 34, 51,
- 35, 49, 52, 50, 49, 52, 50, 46, 34, 51,
- 46, 34, 51, 80, 81, 35, 0, 0, 35, 0,
- 0, 82, 83, 0, 0, 84, 0, 85, 46, 34,
- 51, 46, 34, 51, 35, 0, 0, 49, 52, 50,
- 0, 184, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 35, 49, 52, 50, 49, 52, 50, 184, 0,
- 0, 0, 0, 0, 46, 34, 51, 0, 0, 0,
- 0, 49, 52, 50, 35, 0, 0, 0, 0, 46,
- 34, 51, 46, 34, 51, 35, 0, 0, 49, 52,
- 50, 0, 184, 0, 0, 35, 0, 0, 46, 34,
- 51, 0, 0, 0, 35, 0, 255, 254, 0, 0,
- 0, 49, 52, 50, 0, 46, 34, 51, 0, 0,
- 0, 0, 49, 52, 50, 35, 0, 0, 0, 0,
- 0, 0, 49, 52, 50, 0, 255, 254, 46, 34,
- 51, 49, 52, 50, 0, 0, 0, 0, 0, 46,
- 34, 51, 0, 0, 0, 0, 0, 255, 254, 46,
- 34, 51, 49, 52, 50, 0, 0, 0, 46, 34,
- 51, 35, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 46,
- 34, 51, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 250, 249, 153, 0, 0, 49, 52,
- 50, 0, 0, 0, 0, 154, 0, 0, 0, 155,
- 0, 0, 0, 0, 0, 0, 0, 0, 156, 0,
- 157, 0, 0, 319, 0, 46, 34, 51, 0, 0,
- 0, 158, 0, 159, 64, 0, 0, 153, 0, 0,
- 0, 160, 0, 0, 161, 65, 0, 154, 0, 0,
- 162, 155, 0, 0, 0, 0, 163, 0, 0, 0,
- 156, 0, 157, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 164, 158, 0, 159, 64, 0, 0, 0,
- 0, 0, 0, 160, 0, 0, 161, 65, 0, 0,
- 0, 0, 162, 0, 0, 0, 0, 0, 163, 0,
+ 166, 438, 551, 245, 344, 454, 346, 544, 342, 336,
+ 546, 354, 166, 452, 448, 181, 432, 392, 465, 103,
+ 420, 461, 421, 448, -138, 101, 423, 73, 408, 663,
+ 406, -135, 413, 558, 405, 404, 151, 418, 149, -141,
+ 185, 143, 439, 402, 399, 432, 398, 428, -122, -111,
+ 101, -133, 424, -112, 268, 432, -130, 350, 73, 268,
+ -122, 262, -141, 245, 312, -130, 456, 558, 307, 283,
+ -133, 261, 350, -112, 424, 588, -111, 578, 585, 350,
+ 576, 465, 243, 461, 305, 448, 103, 424, 524, 143,
+ 184, 240, 558, 474, 241, 329, 323, 189, 268, 305,
+ 238, 323, -135, 245, 172, 573, 143, 192, 482, -138,
+ 0, 448, 555, 303, 143, 174, 174, 448, 465, 461,
+ 558, 143, 484, 442, 143, 143, 174, 451, 303, 435,
+ 490, 481, 555, 315, 175, 175, 338, 317, 143, 191,
+ 244, 452, 143, 0, 143, 175, 143, 662, 661, 143,
+ 60, 416, 415, 660, 659, 325, 64, 143, 463, 326,
+ 556, 61, 531, 0, 590, 589, 467, 65, 259, 258,
+ 654, 653, 143, 501, 436, 60, 525, 426, 491, 0,
+ 626, 542, 631, 632, 259, 258, 61, 257, 256, 339,
+ 264, 60, 144, 174, 348, 168, 0, 179, 352, 169,
+ 252, 251, 61, 283, 259, 258, 631, 632, 60, 321,
+ 525, 87, 175, 88, 411, 0, 532, 530, 66, 61,
+ 267, 265, 527, 66, 89, 236, 235, 527, 87, 87,
+ 88, 88, 87, 526, 88, 66, 549, 87, 526, 88,
+ 105, 89, 89, 525, 87, 89, 88, 87, 266, 88,
+ 89, 87, 87, 88, 88, 567, 527, 89, 174, 106,
+ 89, 107, 477, 67, 89, 89, 525, 526, 67, 68,
+ 657, 656, 580, 525, 68, 143, 0, 175, 0, 176,
+ 67, 87, 87, 88, 88, 0, 68, 0, 0, 527,
+ 550, 548, 174, 0, 89, 89, 0, 581, 579, 0,
+ 526, 87, 655, 88, 87, 0, 88, 0, 592, 568,
+ 566, 175, 527, 411, 89, 478, 476, 89, 650, 527,
+ 75, 76, 0, 526, 75, 76, 285, 286, 446, 445,
+ 526, 0, 651, 649, 558, 285, 286, 6, 5, 4,
+ 1, 3, 2, 0, 0, 0, 0, 77, 78, 0,
+ 0, 77, 78, 287, 288, 0, 290, 291, 0, 0,
+ 290, 291, 287, 288, 648, 292, 290, 291, 293, 292,
+ 294, 0, 293, 0, 294, 292, 290, 291, 293, 0,
+ 294, 35, 290, 291, 35, 292, 0, 0, 293, 0,
+ 294, 292, 80, 81, 293, 593, 294, 35, 0, 0,
+ 82, 83, 80, 81, 84, 35, 85, 174, 0, 0,
+ 82, 83, 0, 0, 84, 35, 85, 0, 49, 52,
+ 50, 49, 52, 50, 0, -98, 175, 0, 176, 35,
+ 0, 0, 0, 0, 49, 52, 50, 35, 0, 0,
+ 0, 0, 49, 52, 50, 0, 46, 34, 51, 46,
+ 34, 51, 49, 52, 50, 0, 0, 0, 0, 0,
+ 0, 0, 46, 34, 51, 0, 49, 52, 50, 0,
+ 46, 34, 51, 0, 49, 52, 50, 35, 0, 0,
+ 46, 34, 51, 35, 0, 0, 35, 0, 0, 35,
+ 0, 0, 35, 0, 46, 34, 51, 35, 80, 81,
+ 35, 0, 46, 34, 51, 0, 82, 83, 0, 0,
+ 84, 0, 85, 0, 49, 52, 50, 0, 0, 0,
+ 49, 52, 50, 49, 52, 50, 49, 52, 50, 49,
+ 52, 50, 0, 35, 49, 52, 50, 49, 52, 50,
+ 184, 0, 46, 34, 51, 0, 0, 0, 46, 34,
+ 51, 46, 34, 51, 46, 34, 51, 46, 34, 51,
+ 0, 0, 46, 34, 51, 46, 34, 51, 35, 0,
+ 49, 52, 50, 35, 0, 184, 35, 0, 0, 0,
+ 184, 35, 0, 0, 35, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 46, 34,
+ 51, 0, 0, 0, 0, 49, 52, 50, 250, 249,
+ 49, 52, 50, 49, 52, 50, 250, 249, 49, 52,
+ 50, 49, 52, 50, 0, 0, 0, 35, 0, 0,
+ 0, 0, 0, 46, 34, 51, 0, 0, 46, 34,
+ 51, 46, 34, 51, 0, 0, 46, 34, 51, 46,
+ 34, 51, 0, 0, 0, 0, 0, 0, 35, 250,
+ 249, 0, 0, 0, 49, 52, 50, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 164, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 30,
- 31, 0, 0, 0, 0, 0, 0, 0, 0, 33,
- 0, 0, 0, 0, 0, 0, 35, 0, 0, 0,
- 36, 37, 0, 38, 0, 0, 0, 0, 0, 0,
- 42, 0, 0, 0, 45, 0, 0, 0, 0, 0,
+ 255, 254, 46, 34, 51, 49, 52, 50, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 53, 49, 52, 50, 0, 54, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 44, 56,
- 32, 0, 0, 0, 41, 0, 0, 0, 0, 0,
- 46, 34, 51, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 30, 31, 0, 0, 0, 0, 0, 0,
- 0, 0, 33, 0, 0, 0, 0, 0, 0, 35,
- 0, 0, 0, 36, 37, 0, 38, 0, 0, 0,
- 0, 0, 0, 516, 0, 0, 0, 45, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 53, 49, 52, 50, 0,
- 54, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 44, 56, 32, 0, 0, 0, 41, 0, 0,
0, 0, 0, 46, 34, 51, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 515, 0, 30, 31, 0,
- 0, 0, 0, 0, 0, 0, 0, 219, 0, 0,
- 0, 0, 0, 0, 35, 0, 0, 0, 36, 37,
- 0, 38, 0, 0, 0, 0, 0, 0, 516, 0,
- 0, 0, 45, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 30, 31, 153, 0, 0, 0, 0,
+ 0, 0, 0, 33, 0, 154, 0, 0, 0, 155,
+ 35, 0, 0, 0, 36, 37, 0, 38, 156, 0,
+ 157, 0, 0, 0, 516, 0, 0, 0, 45, 0,
+ 0, 158, 0, 159, 64, 0, 0, 0, 0, 0,
+ 0, 160, 0, 0, 161, 65, 53, 49, 52, 50,
+ 162, 54, 0, 0, 0, 0, 163, 0, 0, 0,
+ 0, 0, 44, 56, 32, 0, 0, 0, 41, 0,
+ 0, 0, 164, 0, 0, 46, 34, 51, 0, 0,
+ 0, 0, 0, 0, 0, 30, 31, 0, 0, 0,
+ 0, 0, 0, 0, 0, 33, 0, 0, 153, 0,
+ 0, 0, 35, 0, 0, 0, 36, 37, 154, 38,
+ 0, 0, 155, 0, 0, 0, 516, 0, 0, 0,
+ 45, 156, 0, 157, 0, 0, 319, 0, 0, 0,
+ 0, 0, 0, 0, 158, 0, 159, 64, 53, 49,
+ 52, 50, 0, 54, 160, 0, 0, 161, 65, 0,
+ 0, 0, 0, 162, 44, 56, 32, 0, 0, 163,
+ 41, 0, 0, 0, 0, 0, 0, 46, 34, 51,
+ 0, 0, 0, 0, 0, 164, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 53, 517, 519, 518, 0, 54, 0, 0, 0, 0,
- 227, 0, 0, 0, 0, 0, 44, 56, 32, 214,
- 0, 0, 41, 0, 0, 0, 0, 0, 46, 34,
- 51, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 515, 0, 30, 31, 0, 0, 0, 0, 0, 0,
- 0, 0, 219, 0, 0, 0, 0, 0, 0, 35,
- 0, 0, 0, 36, 37, 0, 38, 0, 0, 0,
- 0, 0, 0, 516, 0, 0, 0, 45, 0, 0,
- 0, 0, 0, 0, 0, 560, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 53, 517, 519, 518, 0,
- 54, 0, 0, 0, 0, 227, 0, 0, 0, 0,
- 0, 44, 56, 32, 214, 0, 0, 41, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 30, 31, 0, 0, 0, 0, 0, 0, 0,
+ 0, 33, 0, 0, 0, 0, 0, 0, 35, 0,
+ 0, 0, 36, 37, 0, 38, 0, 0, 0, 0,
+ 0, 0, 516, 0, 0, 0, 45, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 53, 49, 52, 50, 0, 54,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 44, 56, 32, 0, 0, 0, 41, 0, 0, 0,
+ 0, 0, 0, 46, 34, 51, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 30, 31, 0, 0, 0,
+ 0, 0, 0, 0, 0, 33, 0, 0, 0, 0,
+ 0, 0, 35, 0, 0, 0, 36, 37, 0, 38,
+ 0, 0, 0, 0, 0, 0, 42, 0, 0, 0,
+ 45, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 53, 49,
+ 52, 50, 0, 54, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 44, 56, 32, 0, 0, 0,
+ 41, 0, 0, 0, 0, 0, 0, 46, 34, 51,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 515,
+ 0, 30, 31, 0, 0, 0, 0, 0, 0, 0,
+ 0, 219, 0, 0, 0, 0, 0, 0, 35, 0,
+ 0, 0, 36, 37, 0, 38, 0, 0, 0, 0,
+ 0, 0, 516, 0, 0, 0, 45, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 53, 517, 519, 518, 0, 54,
+ 0, 0, 0, 0, 227, 0, 0, 0, 0, 0,
+ 44, 56, 32, 214, 0, 0, 41, 0, 0, 0,
0, 0, 0, 46, 34, 51, 0, 0, 0, 0,
0, 0, 0, 0, 0, 515, 0, 30, 31, 0,
0, 0, 0, 0, 0, 0, 0, 219, 0, 0,
@@ -478,84 +484,85 @@ const short QQmlJSGrammar::action_info [] = {
563, 0, 0, 0, 0, 0, 0, 0, 0, 0,
53, 517, 519, 518, 0, 54, 0, 0, 0, 0,
227, 0, 0, 0, 0, 0, 44, 56, 32, 214,
- 0, 0, 41, 0, 0, 0, 0, 0, 46, 34,
- 51, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
- 0, 33, 0, 0, 0, 0, 0, 0, 35, 0,
- 0, 0, 36, 37, 0, 38, 0, 0, 0, 39,
- 0, 40, 42, 43, 0, 0, 45, 0, 0, 0,
- 47, 0, 48, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 53, 49, 52, 50, 0, 54,
- 0, 55, 0, 57, 0, 58, 0, 0, 0, 0,
- 44, 56, 32, 0, 0, 0, 41, 0, 0, 0,
- 0, 0, 46, 34, 51, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, -125, 0, 0, 0, 29, 30,
- 31, 0, 0, 0, 0, 0, 0, 0, 0, 33,
- 0, 0, 0, 0, 0, 0, 35, 0, 0, 0,
- 36, 37, 0, 38, 0, 0, 0, 39, 0, 40,
- 42, 43, 0, 0, 45, 0, 0, 0, 47, 0,
- 48, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 53, 49, 52, 50, 0, 54, 0, 55,
- 0, 57, 0, 58, 0, 0, 0, 0, 44, 56,
- 32, 0, 0, 0, 41, 0, 0, 0, 0, 0,
- 46, 34, 51, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
- 0, 0, 0, 33, 0, 0, 0, 0, 0, 0,
+ 0, 0, 41, 0, 0, 0, 0, 0, 0, 46,
+ 34, 51, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 515, 0, 30, 31, 0, 0, 0, 0, 0,
+ 0, 0, 0, 219, 0, 0, 0, 0, 0, 0,
35, 0, 0, 0, 36, 37, 0, 38, 0, 0,
- 0, 39, 0, 40, 42, 43, 0, 0, 45, 0,
- 0, 0, 47, 0, 48, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 53, 49, 52, 50,
- 0, 54, 0, 55, 0, 57, 282, 58, 0, 0,
- 0, 0, 44, 56, 32, 0, 0, 0, 41, 0,
+ 0, 0, 0, 0, 516, 0, 0, 0, 45, 0,
+ 0, 0, 0, 0, 0, 0, 560, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 53, 517, 519, 518,
+ 0, 54, 0, 0, 0, 0, 227, 0, 0, 0,
+ 0, 0, 44, 56, 32, 214, 0, 0, 41, 0,
+ 0, 0, 0, 0, 0, 46, 34, 51, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 29, 30, 31,
+ 0, 0, 0, 0, 0, 0, 0, 0, 33, 0,
+ 0, 0, 0, 0, 0, 35, 0, 0, 0, 36,
+ 37, 0, 38, 0, 0, 0, 39, 0, 40, 42,
+ 43, 0, 0, 45, 0, 0, 0, 47, 0, 48,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 53, 49, 52, 50, 0, 54, 0, 55, 0,
+ 57, 0, 58, 0, 0, 0, 0, 44, 56, 32,
+ 0, 0, 0, 41, 0, 0, 0, 0, 0, 0,
+ 46, 34, 51, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, -131, 0, 0, 0, 29, 30, 31, 0,
+ 0, 0, 0, 0, 0, 0, 0, 33, 0, 0,
+ 0, 0, 0, 0, 35, 0, 0, 0, 36, 37,
+ 0, 38, 0, 0, 0, 39, 0, 40, 42, 43,
+ 0, 0, 45, 0, 0, 0, 47, 0, 48, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 53, 49, 52, 50, 0, 54, 0, 55, 0, 57,
+ 0, 58, 0, 0, 0, 0, 44, 56, 32, 0,
+ 0, 0, 41, 0, 0, 0, 0, 0, 0, 46,
+ 34, 51, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 29, 30, 31, 0, 0, 0, 0, 0, 0,
+ 0, 0, 33, 0, 0, 0, 0, 0, 0, 35,
+ 0, 0, 0, 36, 37, 0, 38, 0, 0, 0,
+ 39, 0, 40, 42, 43, 0, 0, 45, 0, 0,
+ 0, 47, 0, 48, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 53, 49, 52, 50, 0,
+ 54, 0, 55, 0, 57, 282, 58, 0, 0, 0,
+ 0, 44, 56, 32, 0, 0, 0, 41, 0, 0,
0, 0, 0, 0, 46, 34, 51, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 496, 0, 0, 29,
+ 0, 0, 0, 0, 0, 0, 488, 0, 0, 29,
30, 31, 0, 0, 0, 0, 0, 0, 0, 0,
33, 0, 0, 0, 0, 0, 0, 35, 0, 0,
0, 36, 37, 0, 38, 0, 0, 0, 39, 0,
40, 42, 43, 0, 0, 45, 0, 0, 0, 47,
- 0, 48, 0, 0, 499, 0, 0, 0, 0, 0,
+ 0, 48, 0, 0, 489, 0, 0, 0, 0, 0,
0, 0, 0, 53, 49, 52, 50, 0, 54, 0,
55, 0, 57, 0, 58, 0, 0, 0, 0, 44,
56, 32, 0, 0, 0, 41, 0, 0, 0, 0,
- 0, 46, 34, 51, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 496, 0, 0, 29, 30, 31, 0,
- 0, 0, 0, 0, 0, 0, 0, 33, 0, 0,
- 0, 0, 0, 0, 35, 0, 0, 0, 36, 37,
- 0, 38, 0, 0, 0, 39, 0, 40, 42, 43,
- 0, 0, 45, 0, 0, 0, 47, 0, 48, 0,
- 0, 497, 0, 0, 0, 0, 0, 0, 0, 0,
- 53, 49, 52, 50, 0, 54, 0, 55, 0, 57,
- 0, 58, 0, 0, 0, 0, 44, 56, 32, 0,
- 0, 0, 41, 0, 0, 0, 0, 0, 46, 34,
+ 0, 0, 46, 34, 51, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 488, 0, 0, 29, 30, 31,
+ 0, 0, 0, 0, 0, 0, 0, 0, 33, 0,
+ 0, 0, 0, 0, 0, 35, 0, 0, 0, 36,
+ 37, 0, 38, 0, 0, 0, 39, 0, 40, 42,
+ 43, 0, 0, 45, 0, 0, 0, 47, 0, 48,
+ 0, 0, 494, 0, 0, 0, 0, 0, 0, 0,
+ 0, 53, 49, 52, 50, 0, 54, 0, 55, 0,
+ 57, 0, 58, 0, 0, 0, 0, 44, 56, 32,
+ 0, 0, 0, 41, 0, 0, 0, 0, 0, 0,
+ 46, 34, 51, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 496, 0, 0, 29, 30, 31, 0, 0,
+ 0, 0, 0, 0, 0, 0, 33, 0, 0, 0,
+ 0, 0, 0, 35, 0, 0, 0, 36, 37, 0,
+ 38, 0, 0, 0, 39, 0, 40, 42, 43, 0,
+ 0, 45, 0, 0, 0, 47, 0, 48, 0, 0,
+ 497, 0, 0, 0, 0, 0, 0, 0, 0, 53,
+ 49, 52, 50, 0, 54, 0, 55, 0, 57, 0,
+ 58, 0, 0, 0, 0, 44, 56, 32, 0, 0,
+ 0, 41, 0, 0, 0, 0, 0, 0, 46, 34,
51, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 488, 0, 0, 29, 30, 31, 0, 0, 0, 0,
+ 496, 0, 0, 29, 30, 31, 0, 0, 0, 0,
0, 0, 0, 0, 33, 0, 0, 0, 0, 0,
0, 35, 0, 0, 0, 36, 37, 0, 38, 0,
0, 0, 39, 0, 40, 42, 43, 0, 0, 45,
- 0, 0, 0, 47, 0, 48, 0, 0, 489, 0,
+ 0, 0, 0, 47, 0, 48, 0, 0, 499, 0,
0, 0, 0, 0, 0, 0, 0, 53, 49, 52,
50, 0, 54, 0, 55, 0, 57, 0, 58, 0,
0, 0, 0, 44, 56, 32, 0, 0, 0, 41,
- 0, 0, 0, 0, 0, 46, 34, 51, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 488, 0, 0,
- 29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
- 0, 33, 0, 0, 0, 0, 0, 0, 35, 0,
- 0, 0, 36, 37, 0, 38, 0, 0, 0, 39,
- 0, 40, 42, 43, 0, 0, 45, 0, 0, 0,
- 47, 0, 48, 0, 0, 494, 0, 0, 0, 0,
- 0, 0, 0, 0, 53, 49, 52, 50, 0, 54,
- 0, 55, 0, 57, 0, 58, 0, 0, 0, 0,
- 44, 56, 32, 0, 0, 0, 41, 0, 0, 0,
- 0, 0, 46, 34, 51, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 29, 30, 31, 0, 0, 0,
- 0, 0, 0, 0, 0, 33, 0, 0, 0, 0,
- 0, 0, 35, 220, 0, 0, 221, 37, 0, 38,
- 0, 0, 0, 39, 0, 40, 42, 43, 0, 0,
- 45, 0, 0, 0, 47, 0, 48, 0, 0, 0,
- 0, 0, 0, 0, 223, 0, 0, 0, 53, 49,
- 52, 50, 224, 54, 0, 55, 226, 57, 0, 58,
- 0, 229, 0, 0, 44, 56, 32, 0, 0, 0,
- 41, 0, 0, 0, 0, 0, 46, 34, 51, 0,
+ 0, 0, 0, 0, 0, 0, 46, 34, 51, 0,
0, 0, 0, 0, 0, 0, 0, 0, 29, 30,
31, 0, 0, 0, 0, 0, 0, 0, 0, 33,
0, 0, 0, 0, 0, 0, 35, 220, 0, 0,
@@ -565,139 +572,150 @@ const short QQmlJSGrammar::action_info [] = {
0, 0, 53, 49, 52, 50, 224, 54, 0, 55,
226, 57, 0, 58, 0, 229, 0, 0, 44, 56,
32, 0, 0, 0, 41, 0, 0, 0, 0, 0,
+ 0, 46, 34, 51, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 29, 30, 31, 0, 0, 0, 0,
+ 0, 0, 0, 0, 33, 0, 0, 0, 0, 0,
+ 0, 35, 220, 0, 0, 221, 37, 0, 38, 0,
+ 0, 0, 39, 0, 40, 42, 43, 0, 0, 45,
+ 0, 0, 0, 47, 0, 48, 0, 0, 0, 0,
+ 0, 0, 0, 223, 0, 0, 0, 53, 49, 52,
+ 50, 224, 54, 0, 55, 226, 57, 0, 58, 0,
+ 229, 0, 0, 44, 56, 32, 0, 0, 0, 41,
+ 0, 0, 0, 0, 0, 0, 46, 34, 51, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 111, 112,
+ 113, 0, 0, 115, 117, 118, 0, 0, 119, 0,
+ 120, 0, 0, 0, 122, 123, 124, 0, 0, 0,
+ 0, 0, 0, 35, 125, 126, 127, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 128, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 131, 0, 0, 0, 0, 0, 0,
+ 49, 52, 50, 132, 133, 134, 0, 136, 137, 138,
+ 139, 140, 141, 0, 0, 129, 135, 121, 114, 116,
+ 130, 0, 0, 0, 0, 0, 0, 0, 46, 34,
+ 51, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 111, 112, 113, 0, 0, 115, 117, 118, 0, 0,
+ 119, 0, 120, 0, 0, 0, 122, 123, 124, 0,
+ 0, 0, 0, 0, 0, 35, 125, 126, 127, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 128,
+ 0, 0, 0, 395, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 131, 0, 0, 0, 0,
+ 0, 397, 49, 52, 50, 132, 133, 134, 0, 136,
+ 137, 138, 139, 140, 141, 0, 0, 129, 135, 121,
+ 114, 116, 130, 0, 0, 0, 0, 0, 0, 0,
46, 34, 51, 0, 0, 0, 0, 0, 0, 0,
0, 0, 111, 112, 113, 0, 0, 115, 117, 118,
0, 0, 119, 0, 120, 0, 0, 0, 122, 123,
124, 0, 0, 0, 0, 0, 0, 35, 125, 126,
127, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 128, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 128, 0, 0, 0, 395, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 131, 0, 0,
- 0, 0, 0, 0, 49, 52, 50, 132, 133, 134,
+ 0, 0, 0, 397, 49, 52, 50, 132, 133, 134,
0, 136, 137, 138, 139, 140, 141, 0, 0, 129,
135, 121, 114, 116, 130, 0, 0, 0, 0, 0,
- 0, 46, 34, 51, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 111, 112, 113, 0, 0, 115, 117,
- 118, 0, 0, 119, 0, 120, 0, 0, 0, 122,
- 123, 124, 0, 0, 0, 0, 0, 0, 35, 125,
- 126, 127, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 128, 0, 0, 0, 395, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 131, 0,
- 0, 0, 0, 0, 397, 49, 52, 50, 132, 133,
- 134, 0, 136, 137, 138, 139, 140, 141, 0, 0,
- 129, 135, 121, 114, 116, 130, 0, 0, 0, 0,
- 0, 0, 46, 34, 51, 0, 0, 0, 0, 0,
+ 0, 0, 46, 374, 380, 0, 0, 0, 0, 0,
0, 0, 0, 0, 111, 112, 113, 0, 0, 115,
117, 118, 0, 0, 119, 0, 120, 0, 0, 0,
122, 123, 124, 0, 0, 0, 0, 0, 0, 35,
125, 126, 127, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 128, 0, 0, 0, 395, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 131,
+ 0, 0, 0, 0, 0, 396, 0, 0, 0, 131,
0, 0, 0, 0, 0, 397, 49, 52, 50, 132,
133, 134, 0, 136, 137, 138, 139, 140, 141, 0,
0, 129, 135, 121, 114, 116, 130, 0, 0, 0,
- 0, 0, 0, 46, 374, 380, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 111, 112, 113, 0, 0,
- 115, 117, 118, 0, 0, 119, 0, 120, 0, 0,
- 0, 122, 123, 124, 0, 0, 0, 0, 0, 0,
- 35, 125, 126, 127, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 128, 0, 0, 0, 395, 0,
- 0, 0, 0, 0, 0, 0, 396, 0, 0, 0,
- 131, 0, 0, 0, 0, 0, 397, 49, 52, 50,
- 132, 133, 134, 0, 136, 137, 138, 139, 140, 141,
- 0, 0, 129, 135, 121, 114, 116, 130, 0, 0,
0, 0, 0, 0, 46, 374, 380, 0, 0, 0,
0, 0, 0, 0, 0, 0, 213, 0, 0, 0,
0, 215, 0, 29, 30, 31, 217, 0, 0, 0,
- 0, 0, 0, 218, 33, 0, 0, 0, 0, 0,
+ 0, 0, 0, 218, 219, 0, 0, 0, 0, 0,
0, 35, 220, 0, 0, 221, 37, 0, 38, 0,
0, 0, 39, 0, 40, 42, 43, 0, 0, 45,
0, 0, 0, 47, 0, 48, 0, 0, 0, 0,
0, 222, 0, 223, 0, 0, 0, 53, 49, 52,
50, 224, 54, 225, 55, 226, 57, 227, 58, 228,
229, 0, 0, 44, 56, 32, 214, 216, 0, 41,
- 0, 0, 0, 0, 0, 46, 34, 51, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 213, 0, 0,
- 0, 0, 215, 0, 29, 30, 31, 217, 0, 0,
- 0, 0, 0, 0, 218, 219, 0, 0, 0, 0,
- 0, 0, 35, 220, 0, 0, 221, 37, 0, 38,
- 0, 0, 0, 39, 0, 40, 42, 43, 0, 0,
- 45, 0, 0, 0, 47, 0, 48, 0, 0, 0,
- 0, 0, 222, 0, 223, 0, 0, 0, 53, 49,
- 52, 50, 224, 54, 225, 55, 226, 57, 227, 58,
- 228, 229, 0, 0, 44, 56, 32, 214, 216, 0,
- 41, 0, 0, 0, 0, 0, 46, 34, 51, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 600, 112,
- 113, 0, 0, 602, 117, 604, 30, 31, 605, 0,
- 120, 0, 0, 0, 122, 607, 608, 0, 0, 0,
- 0, 0, 0, 35, 609, 126, 127, 221, 37, 0,
- 38, 0, 0, 0, 39, 0, 40, 610, 43, 0,
- 0, 612, 0, 0, 0, 47, 0, 48, 0, 0,
- 0, 0, 0, 613, 0, 223, 0, 0, 0, 614,
- 49, 52, 50, 615, 616, 617, 55, 619, 620, 621,
- 622, 623, 624, 0, 0, 611, 618, 606, 601, 603,
- 130, 41, 0, 0, 0, 0, 0, 46, 374, 380,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 365,
- 112, 113, 0, 0, 367, 117, 369, 30, 31, 370,
- 0, 120, 0, 0, 0, 122, 372, 373, 0, 0,
- 0, 0, 0, 0, 35, 375, 126, 127, 221, 37,
- 0, 38, 0, 0, 0, 39, 0, 40, 376, 43,
- 0, 0, 378, 0, 0, 0, 47, 0, 48, 0,
- -271, 0, 0, 0, 379, 0, 223, 0, 0, 0,
- 381, 49, 52, 50, 382, 383, 384, 55, 386, 387,
- 388, 389, 390, 391, 0, 0, 377, 385, 371, 366,
- 368, 130, 41, 0, 0, 0, 0, 0, 46, 374,
- 380, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 46, 34, 51, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 213, 0,
+ 0, 0, 0, 215, 0, 29, 30, 31, 217, 0,
+ 0, 0, 0, 0, 0, 218, 33, 0, 0, 0,
+ 0, 0, 0, 35, 220, 0, 0, 221, 37, 0,
+ 38, 0, 0, 0, 39, 0, 40, 42, 43, 0,
+ 0, 45, 0, 0, 0, 47, 0, 48, 0, 0,
+ 0, 0, 0, 222, 0, 223, 0, 0, 0, 53,
+ 49, 52, 50, 224, 54, 225, 55, 226, 57, 227,
+ 58, 228, 229, 0, 0, 44, 56, 32, 214, 216,
+ 0, 41, 0, 0, 0, 0, 0, 0, 46, 34,
+ 51, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 600, 112, 113, 0, 0, 602, 117, 604, 30, 31,
+ 605, 0, 120, 0, 0, 0, 122, 607, 608, 0,
+ 0, 0, 0, 0, 0, 35, 609, 126, 127, 221,
+ 37, 0, 38, 0, 0, 0, 39, 0, 40, 610,
+ 43, 0, 0, 612, 0, 0, 0, 47, 0, 48,
+ 0, 0, 0, 0, 0, 613, 0, 223, 0, 0,
+ 0, 614, 49, 52, 50, 615, 616, 617, 55, 619,
+ 620, 621, 622, 623, 624, 0, 0, 611, 618, 606,
+ 601, 603, 130, 41, 0, 0, 0, 0, 0, 0,
+ 46, 374, 380, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 365, 112, 113, 0, 0, 367, 117, 369,
+ 30, 31, 370, 0, 120, 0, 0, 0, 122, 372,
+ 373, 0, 0, 0, 0, 0, 0, 35, 375, 126,
+ 127, 221, 37, 0, 38, 0, 0, 0, 39, 0,
+ 40, 376, 43, 0, 0, 378, 0, 0, 0, 47,
+ 0, 48, 0, -277, 0, 0, 0, 379, 0, 223,
+ 0, 0, 0, 381, 49, 52, 50, 382, 383, 384,
+ 55, 386, 387, 388, 389, 390, 391, 0, 0, 377,
+ 385, 371, 366, 368, 130, 41, 0, 0, 0, 0,
+ 0, 0, 46, 374, 380, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0,
- 565, 148, 545, 16, 649, 547, 541, 469, 320, 529,
- 528, 630, 183, 248, 263, 500, 485, 447, 629, 183,
- 627, 444, 253, 393, 587, 652, 313, 152, 643, 572,
- 591, 575, 586, 638, 331, 574, 453, 455, 466, 253,
- 437, 178, 433, 253, 0, 248, 584, 458, 248, 313,
- 441, 183, 444, 457, 237, 190, 447, 188, 206, 425,
- 400, 462, 351, 313, 347, 150, 165, 447, 475, 444,
- 183, 145, 393, 260, 0, 409, 173, 409, 260, 362,
- 171, 514, 409, 495, 362, 393, 206, 498, 628, 313,
- 313, 206, 356, 142, 206, 331, 362, 599, 403, 0,
- 345, 62, 62, 62, 182, 62, 299, 182, 295, 206,
- 410, 417, 410, 206, 62, 393, 62, 410, 62, 296,
- 148, 298, 148, 297, 62, 62, 182, 504, 412, 62,
- 180, 502, 511, 206, 512, 62, 108, 460, 188, 62,
- 394, 188, 62, 206, 460, 247, 62, 206, 459, 206,
- 62, 102, 459, 62, 62, 514, 206, 62, 653, 503,
- 407, 343, 341, 62, 313, 110, 419, 167, 188, 187,
- 170, 340, 514, 104, 0, 553, 422, 206, 62, 206,
- 62, 63, 62, 72, 62, 510, 71, 97, 62, 514,
- 70, 62, 557, 69, 355, 62, 239, 62, 493, 318,
- 86, 469, 492, 62, 483, 74, 242, 206, 93, 62,
- 353, 62, 206, 260, 95, 0, 96, 62, 62, 62,
- 322, 62, 94, 206, 100, 98, 206, 99, 62, 247,
- 277, 464, 0, 206, 79, 281, 314, 468, 62, 62,
- 206, 507, 91, 246, 206, 62, 62, 349, 505, 90,
- 206, 62, 62, 460, 459, 62, 206, 506, 62, 401,
- 206, 62, 92, 309, 62, 108, 281, 362, 281, 281,
- 0, 313, 206, 62, 304, 479, 0, 309, 281, 62,
- 206, 327, 281, 0, 281, 337, 300, 309, 324, 0,
- 0, 62, 281, 0, 110, 177, 281, 62, 301, 308,
- 309, 0, 281, 309, 302, 281, 62, 62, 281, 330,
- 62, 281, 281, 289, 514, 281, 0, 0, 306, 284,
- 0, 522, 328, 569, 561, 311, 553, 564, 625, 0,
- 0, 0, 514, 513, 523, 514, 0, 0, 0, 522,
- 0, 0, 522, 316, 0, 0, 0, 0, 0, 485,
- 440, 513, 523, 0, 513, 523, 533, 534, 535, 536,
- 540, 537, 538, 577, 533, 534, 535, 536, 540, 537,
- 538, 594, 0, 0, 0, 0, 362, 0, 597, 598,
- 533, 534, 535, 536, 540, 537, 538, 0, 0, 206,
+ 148, 142, 183, 447, 469, 347, 575, 444, 547, 627,
+ 248, 320, 587, 572, 584, 586, 485, 591, 565, 529,
+ 313, 545, 447, 393, 253, 528, 500, 183, 574, 453,
+ 331, 652, 447, 437, 444, 313, 462, 455, 263, 457,
+ 237, 441, 206, 188, 190, 150, 16, 178, 433, 630,
+ 425, 641, 165, 400, 658, 458, 642, 171, 173, 248,
+ 475, 351, 498, 248, 253, 313, 183, 466, 183, 541,
+ 495, 629, 253, 512, 511, 188, 145, 206, 260, 645,
+ 644, 62, 0, 62, 362, 507, 298, 469, 206, 206,
+ 247, 514, 514, 62, 206, 460, 646, 409, 152, 409,
+ 599, 628, 355, 239, 206, 62, 62, 62, 362, 260,
+ 296, 297, 299, 331, 62, 62, 313, 504, 206, 295,
+ 62, 62, 459, 460, 356, 206, 277, 62, 62, 502,
+ 182, 281, 206, 62, 410, 182, 410, 401, 62, 353,
+ 459, 62, 62, 506, 505, 62, 62, 503, 493, 349,
+ 91, 62, 492, 206, 63, 206, 313, 62, 345, 483,
+ 393, 479, 62, 62, 260, 206, 444, 206, 510, 102,
+ 148, 62, 104, 182, 206, 188, 188, 468, 180, 170,
+ 206, 62, 148, 247, 62, 394, 460, 393, 409, 340,
+ 412, 341, 362, 206, 422, 167, 393, 206, 62, 108,
+ 459, 313, 62, 187, 419, 62, 62, 86, 206, 62,
+ 318, 98, 100, 403, 62, 99, 69, 322, 514, 514,
+ 313, 62, 417, 553, 557, 410, 206, 79, 110, 246,
+ 62, 343, 206, 206, 62, 0, 70, 62, 74, 71,
+ 62, 62, 206, 108, 90, 206, 93, 62, 62, 62,
+ 72, 62, 92, 62, 94, 62, 95, 309, 96, 407,
+ 97, 309, 281, 62, 362, 362, 281, 0, 281, 242,
+ 302, 0, 110, 177, 464, 0, 316, 309, 0, 308,
+ 206, 206, 281, 311, 309, 0, 62, 62, 309, 281,
+ 206, 281, 281, 281, 0, 314, 0, 0, 62, 330,
+ 62, 324, 0, 281, 327, 281, 337, 300, 62, 62,
+ 328, 304, 62, 281, 281, 301, 564, 281, 62, 289,
+ 306, 569, 561, 281, 0, 514, 553, 284, 625, 0,
+ 0, 514, 0, 0, 522, 0, 0, 0, 0, 0,
+ 522, 0, 0, 0, 0, 0, 513, 523, 0, 485,
+ 443, 440, 513, 523, 533, 534, 535, 536, 540, 537,
+ 538, 577, 533, 534, 535, 536, 540, 537, 538, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 514, 569, 0, 0, 0, 0, 0,
+ 0, 0, 522, 570, 571, 533, 534, 535, 536, 540,
+ 537, 538, 0, 0, 513, 523, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 443,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 569, 0, 0, 0, 0, 0, 0, 570,
- 571, 533, 534, 535, 536, 540, 537, 538, 0, 0,
+ 594, 0, 0, 0, 0, 0, 0, 0, 0, 597,
+ 598, 533, 534, 535, 536, 540, 537, 538, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -708,126 +726,128 @@ const short QQmlJSGrammar::action_info [] = {
0, 0, 0, 0, 0, 0, 0};
const short QQmlJSGrammar::action_check [] = {
- 60, 7, 7, 7, 34, 91, 24, 7, 61, 36,
- 33, 36, 7, 7, 7, 60, 33, 33, 55, 66,
- 8, 33, 55, 36, 16, 7, 36, 29, 8, 7,
- 7, 55, 17, 36, 7, 7, 7, 7, 7, 36,
- 55, 7, 7, 33, 33, 36, 33, 33, 7, 60,
- 7, 60, 20, 36, 33, 36, 55, 7, 33, 60,
- 5, 37, 36, 5, 60, 5, 7, 2, 66, 36,
- 33, 33, 36, 7, 1, 8, 60, 8, 33, 2,
- 36, 1, 8, 36, 2, 1, 8, 2, 17, 1,
- 0, 8, -1, 7, 55, 33, 33, -1, -1, 48,
- 60, -1, 6, 31, 55, 48, 36, 61, 60, 8,
- -1, 36, 60, -1, 7, 61, 20, 36, 8, 77,
- 15, 60, 8, 55, 48, 36, 10, 36, 36, 36,
- 7, 8, 79, 8, 8, 79, 8, 42, 8, 34,
- 8, 8, 48, 40, 8, 8, -1, 60, 53, 50,
- -1, 8, -1, 54, 51, 91, 15, 8, 79, 61,
- 62, 60, 8, 61, 62, 61, 62, 61, 62, 40,
- 60, 55, 61, 62, 60, 34, 61, 62, 61, 62,
- 51, 56, 61, 62, 56, 50, 60, 40, 15, 54,
- 60, 40, 60, 56, 61, 25, 60, 27, 51, 61,
- 62, 29, 51, 60, 29, 56, 15, 34, 38, 36,
- 15, 29, 8, 8, 12, 61, 62, 61, 62, 12,
- 36, 25, 7, 27, 25, 34, 27, 36, 25, 34,
- 27, 36, 7, 15, 38, 29, 25, 38, 27, 7,
- -1, 38, 25, 29, 27, 61, 62, 75, 92, 38,
- 75, 12, 34, 7, 36, 38, -1, 75, 86, 57,
- 56, 86, -1, -1, 57, 63, 61, 62, 86, 25,
- 63, 27, 25, -1, 27, -1, 61, 62, 25, 33,
- 27, 75, 38, 61, 62, 38, 61, 62, 25, 75,
- 27, 38, 86, 61, 62, 25, 57, 27, 29, -1,
- 86, 38, 63, 25, 25, 27, 27, 15, 38, 8,
- -1, 89, -1, 18, 19, 47, 38, 38, 18, 19,
- 18, 19, -1, -1, -1, 33, 34, -1, 36, 61,
- 62, 15, 97, 98, 99, 100, 101, 102, -1, 93,
- 45, 46, 23, 24, 75, 45, 46, 45, 46, 33,
- 34, 32, 36, -1, 35, 86, 37, 23, 24, -1,
- 92, -1, 61, 62, 23, 24, 32, -1, -1, 35,
- -1, 37, -1, 32, 23, 24, 35, -1, 37, -1,
- 23, 24, -1, 32, -1, -1, 35, -1, 37, 32,
- 23, 24, 35, 29, 37, -1, -1, -1, 31, 32,
- 23, 24, 35, 29, 37, -1, 18, 19, 31, 32,
- 23, 24, 35, 29, 37, -1, -1, -1, 31, 32,
- -1, -1, 35, 29, 37, -1, 29, -1, -1, -1,
- 66, 67, 68, 45, 46, -1, -1, -1, -1, -1,
- 66, 67, 68, -1, 29, -1, -1, 29, -1, -1,
- 66, 67, 68, -1, -1, -1, -1, 93, 94, 95,
- 66, 67, 68, 66, 67, 68, -1, 93, 94, 95,
- -1, -1, -1, -1, -1, -1, -1, 93, 94, 95,
- 29, 66, 67, 68, 66, 67, 68, 93, 94, 95,
- 93, 94, 95, 23, 24, 29, -1, -1, 29, -1,
- -1, 31, 32, -1, -1, 35, -1, 37, 93, 94,
- 95, 93, 94, 95, 29, -1, -1, 66, 67, 68,
- -1, 36, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 29, 66, 67, 68, 66, 67, 68, 36, -1,
- -1, -1, -1, -1, 93, 94, 95, -1, -1, -1,
- -1, 66, 67, 68, 29, -1, -1, -1, -1, 93,
- 94, 95, 93, 94, 95, 29, -1, -1, 66, 67,
- 68, -1, 36, -1, -1, 29, -1, -1, 93, 94,
- 95, -1, -1, -1, 29, -1, 61, 62, -1, -1,
- -1, 66, 67, 68, -1, 93, 94, 95, -1, -1,
- -1, -1, 66, 67, 68, 29, -1, -1, -1, -1,
- -1, -1, 66, 67, 68, -1, 61, 62, 93, 94,
- 95, 66, 67, 68, -1, -1, -1, -1, -1, 93,
- 94, 95, -1, -1, -1, -1, -1, 61, 62, 93,
- 94, 95, 66, 67, 68, -1, -1, -1, 93, 94,
- 95, 29, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 93,
- 94, 95, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 61, 62, 3, -1, -1, 66, 67,
- 68, -1, -1, -1, -1, 13, -1, -1, -1, 17,
- -1, -1, -1, -1, -1, -1, -1, -1, 26, -1,
- 28, -1, -1, 31, -1, 93, 94, 95, -1, -1,
- -1, 39, -1, 41, 42, -1, -1, 3, -1, -1,
- -1, 49, -1, -1, 52, 53, -1, 13, -1, -1,
- 58, 17, -1, -1, -1, -1, 64, -1, -1, -1,
- 26, -1, 28, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 80, 39, -1, 41, 42, -1, -1, -1,
- -1, -1, -1, 49, -1, -1, 52, 53, -1, -1,
- -1, -1, 58, -1, -1, -1, -1, -1, 64, -1,
+ 2, 55, 34, 7, 60, 36, 31, 37, 61, 17,
+ 24, 16, 2, 20, 33, 60, 5, 8, 36, 79,
+ 60, 36, 33, 33, 7, 48, 55, 1, 55, 0,
+ 33, 7, 60, 33, 60, 36, 60, 36, 8, 7,
+ 36, 8, 7, 55, 7, 5, 55, 33, 7, 7,
+ 48, 7, 36, 7, 36, 5, 7, 36, 1, 36,
+ 7, 36, 7, 7, 61, 7, 60, 33, 8, 1,
+ 7, 77, 36, 7, 36, 60, 7, 29, 8, 36,
+ 7, 36, 55, 36, 79, 33, 79, 36, 66, 8,
+ 36, 60, 33, 17, 33, 7, 2, 8, 36, 79,
+ 36, 2, 7, 7, 7, 66, 8, 33, 33, 7,
+ -1, 33, 8, 48, 8, 15, 15, 33, 36, 36,
+ 33, 8, 55, 7, 8, 8, 15, 6, 48, 10,
+ 8, 60, 8, 61, 34, 34, 8, 60, 8, 60,
+ 55, 20, 8, -1, 8, 34, 8, 61, 62, 8,
+ 40, 61, 62, 61, 62, 50, 42, 8, 60, 54,
+ 56, 51, 7, -1, 61, 62, 60, 53, 61, 62,
+ 61, 62, 8, 60, 55, 40, 29, 60, 56, -1,
+ 56, 29, 91, 92, 61, 62, 51, 61, 62, 61,
+ 60, 40, 56, 15, 60, 50, -1, 56, 60, 54,
+ 61, 62, 51, 1, 61, 62, 91, 92, 40, 60,
+ 29, 25, 34, 27, 36, -1, 61, 62, 12, 51,
+ 61, 62, 75, 12, 38, 61, 62, 75, 25, 25,
+ 27, 27, 25, 86, 27, 12, 7, 25, 86, 27,
+ 15, 38, 38, 29, 25, 38, 27, 25, 89, 27,
+ 38, 25, 25, 27, 27, 7, 75, 38, 15, 34,
+ 38, 36, 8, 57, 38, 38, 29, 86, 57, 63,
+ 61, 62, 36, 29, 63, 8, -1, 34, -1, 36,
+ 57, 25, 25, 27, 27, -1, 63, -1, -1, 75,
+ 61, 62, 15, -1, 38, 38, -1, 61, 62, -1,
+ 86, 25, 93, 27, 25, -1, 27, -1, 7, 61,
+ 62, 34, 75, 36, 38, 61, 62, 38, 47, 75,
+ 18, 19, -1, 86, 18, 19, 18, 19, 61, 62,
+ 86, -1, 61, 62, 33, 18, 19, 98, 99, 100,
+ 101, 102, 103, -1, -1, -1, -1, 45, 46, -1,
+ -1, 45, 46, 45, 46, -1, 23, 24, -1, -1,
+ 23, 24, 45, 46, 93, 32, 23, 24, 35, 32,
+ 37, -1, 35, -1, 37, 32, 23, 24, 35, -1,
+ 37, 29, 23, 24, 29, 32, -1, -1, 35, -1,
+ 37, 32, 23, 24, 35, 94, 37, 29, -1, -1,
+ 31, 32, 23, 24, 35, 29, 37, 15, -1, -1,
+ 31, 32, -1, -1, 35, 29, 37, -1, 66, 67,
+ 68, 66, 67, 68, -1, 33, 34, -1, 36, 29,
+ -1, -1, -1, -1, 66, 67, 68, 29, -1, -1,
+ -1, -1, 66, 67, 68, -1, 94, 95, 96, 94,
+ 95, 96, 66, 67, 68, -1, -1, -1, -1, -1,
+ -1, -1, 94, 95, 96, -1, 66, 67, 68, -1,
+ 94, 95, 96, -1, 66, 67, 68, 29, -1, -1,
+ 94, 95, 96, 29, -1, -1, 29, -1, -1, 29,
+ -1, -1, 29, -1, 94, 95, 96, 29, 23, 24,
+ 29, -1, 94, 95, 96, -1, 31, 32, -1, -1,
+ 35, -1, 37, -1, 66, 67, 68, -1, -1, -1,
+ 66, 67, 68, 66, 67, 68, 66, 67, 68, 66,
+ 67, 68, -1, 29, 66, 67, 68, 66, 67, 68,
+ 36, -1, 94, 95, 96, -1, -1, -1, 94, 95,
+ 96, 94, 95, 96, 94, 95, 96, 94, 95, 96,
+ -1, -1, 94, 95, 96, 94, 95, 96, 29, -1,
+ 66, 67, 68, 29, -1, 36, 29, -1, -1, -1,
+ 36, 29, -1, -1, 29, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 94, 95,
+ 96, -1, -1, -1, -1, 66, 67, 68, 61, 62,
+ 66, 67, 68, 66, 67, 68, 61, 62, 66, 67,
+ 68, 66, 67, 68, -1, -1, -1, 29, -1, -1,
+ -1, -1, -1, 94, 95, 96, -1, -1, 94, 95,
+ 96, 94, 95, 96, -1, -1, 94, 95, 96, 94,
+ 95, 96, -1, -1, -1, -1, -1, -1, 29, 61,
+ 62, -1, -1, -1, 66, 67, 68, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 80, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 12,
- 13, -1, -1, -1, -1, -1, -1, -1, -1, 22,
- -1, -1, -1, -1, -1, -1, 29, -1, -1, -1,
- 33, 34, -1, 36, -1, -1, -1, -1, -1, -1,
- 43, -1, -1, -1, 47, -1, -1, -1, -1, -1,
+ 61, 62, 94, 95, 96, 66, 67, 68, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 65, 66, 67, 68, -1, 70, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 81, 82,
- 83, -1, -1, -1, 87, -1, -1, -1, -1, -1,
- 93, 94, 95, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 12, 13, -1, -1, -1, -1, -1, -1,
- -1, -1, 22, -1, -1, -1, -1, -1, -1, 29,
- -1, -1, -1, 33, 34, -1, 36, -1, -1, -1,
- -1, -1, -1, 43, -1, -1, -1, 47, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 65, 66, 67, 68, -1,
- 70, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 81, 82, 83, -1, -1, -1, 87, -1, -1,
- -1, -1, -1, 93, 94, 95, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 10, -1, 12, 13, -1,
- -1, -1, -1, -1, -1, -1, -1, 22, -1, -1,
- -1, -1, -1, -1, 29, -1, -1, -1, 33, 34,
- -1, 36, -1, -1, -1, -1, -1, -1, 43, -1,
- -1, -1, 47, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 94, 95, 96, -1, -1, -1, -1,
+ -1, -1, -1, 12, 13, 3, -1, -1, -1, -1,
+ -1, -1, -1, 22, -1, 13, -1, -1, -1, 17,
+ 29, -1, -1, -1, 33, 34, -1, 36, 26, -1,
+ 28, -1, -1, -1, 43, -1, -1, -1, 47, -1,
+ -1, 39, -1, 41, 42, -1, -1, -1, -1, -1,
+ -1, 49, -1, -1, 52, 53, 65, 66, 67, 68,
+ 58, 70, -1, -1, -1, -1, 64, -1, -1, -1,
+ -1, -1, 81, 82, 83, -1, -1, -1, 87, -1,
+ -1, -1, 80, -1, -1, 94, 95, 96, -1, -1,
+ -1, -1, -1, -1, -1, 12, 13, -1, -1, -1,
+ -1, -1, -1, -1, -1, 22, -1, -1, 3, -1,
+ -1, -1, 29, -1, -1, -1, 33, 34, 13, 36,
+ -1, -1, 17, -1, -1, -1, 43, -1, -1, -1,
+ 47, 26, -1, 28, -1, -1, 31, -1, -1, -1,
+ -1, -1, -1, -1, 39, -1, 41, 42, 65, 66,
+ 67, 68, -1, 70, 49, -1, -1, 52, 53, -1,
+ -1, -1, -1, 58, 81, 82, 83, -1, -1, 64,
+ 87, -1, -1, -1, -1, -1, -1, 94, 95, 96,
+ -1, -1, -1, -1, -1, 80, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 65, 66, 67, 68, -1, 70, -1, -1, -1, -1,
- 75, -1, -1, -1, -1, -1, 81, 82, 83, 84,
- -1, -1, 87, -1, -1, -1, -1, -1, 93, 94,
- 95, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 10, -1, 12, 13, -1, -1, -1, -1, -1, -1,
- -1, -1, 22, -1, -1, -1, -1, -1, -1, 29,
- -1, -1, -1, 33, 34, -1, 36, -1, -1, -1,
- -1, -1, -1, 43, -1, -1, -1, 47, -1, -1,
- -1, -1, -1, -1, -1, 55, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 65, 66, 67, 68, -1,
- 70, -1, -1, -1, -1, 75, -1, -1, -1, -1,
- -1, 81, 82, 83, 84, -1, -1, 87, -1, -1,
- -1, -1, -1, 93, 94, 95, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 12, 13, -1, -1, -1, -1, -1, -1, -1,
+ -1, 22, -1, -1, -1, -1, -1, -1, 29, -1,
+ -1, -1, 33, 34, -1, 36, -1, -1, -1, -1,
+ -1, -1, 43, -1, -1, -1, 47, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 65, 66, 67, 68, -1, 70,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 81, 82, 83, -1, -1, -1, 87, -1, -1, -1,
+ -1, -1, -1, 94, 95, 96, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 12, 13, -1, -1, -1,
+ -1, -1, -1, -1, -1, 22, -1, -1, -1, -1,
+ -1, -1, 29, -1, -1, -1, 33, 34, -1, 36,
+ -1, -1, -1, -1, -1, -1, 43, -1, -1, -1,
+ 47, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 65, 66,
+ 67, 68, -1, 70, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 81, 82, 83, -1, -1, -1,
+ 87, -1, -1, -1, -1, -1, -1, 94, 95, 96,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 10,
+ -1, 12, 13, -1, -1, -1, -1, -1, -1, -1,
+ -1, 22, -1, -1, -1, -1, -1, -1, 29, -1,
+ -1, -1, 33, 34, -1, 36, -1, -1, -1, -1,
+ -1, -1, 43, -1, -1, -1, 47, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 65, 66, 67, 68, -1, 70,
+ -1, -1, -1, -1, 75, -1, -1, -1, -1, -1,
+ 81, 82, 83, 84, -1, -1, 87, -1, -1, -1,
+ -1, -1, -1, 94, 95, 96, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 10, -1, 12, 13, -1,
-1, -1, -1, -1, -1, -1, -1, 22, -1, -1,
-1, -1, -1, -1, 29, -1, -1, -1, 33, 34,
@@ -836,36 +856,46 @@ const short QQmlJSGrammar::action_check [] = {
55, -1, -1, -1, -1, -1, -1, -1, -1, -1,
65, 66, 67, 68, -1, 70, -1, -1, -1, -1,
75, -1, -1, -1, -1, -1, 81, 82, 83, 84,
- -1, -1, 87, -1, -1, -1, -1, -1, 93, 94,
- 95, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- 11, 12, 13, -1, -1, -1, -1, -1, -1, -1,
- -1, 22, -1, -1, -1, -1, -1, -1, 29, -1,
- -1, -1, 33, 34, -1, 36, -1, -1, -1, 40,
- -1, 42, 43, 44, -1, -1, 47, -1, -1, -1,
- 51, -1, 53, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 65, 66, 67, 68, -1, 70,
- -1, 72, -1, 74, -1, 76, -1, -1, -1, -1,
- 81, 82, 83, -1, -1, -1, 87, -1, -1, -1,
- -1, -1, 93, 94, 95, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 7, -1, -1, -1, 11, 12,
- 13, -1, -1, -1, -1, -1, -1, -1, -1, 22,
- -1, -1, -1, -1, -1, -1, 29, -1, -1, -1,
- 33, 34, -1, 36, -1, -1, -1, 40, -1, 42,
- 43, 44, -1, -1, 47, -1, -1, -1, 51, -1,
- 53, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 65, 66, 67, 68, -1, 70, -1, 72,
- -1, 74, -1, 76, -1, -1, -1, -1, 81, 82,
- 83, -1, -1, -1, 87, -1, -1, -1, -1, -1,
- 93, 94, 95, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 11, 12, 13, -1, -1, -1, -1, -1,
+ -1, -1, 87, -1, -1, -1, -1, -1, -1, 94,
+ 95, 96, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 10, -1, 12, 13, -1, -1, -1, -1, -1,
-1, -1, -1, 22, -1, -1, -1, -1, -1, -1,
29, -1, -1, -1, 33, 34, -1, 36, -1, -1,
- -1, 40, -1, 42, 43, 44, -1, -1, 47, -1,
- -1, -1, 51, -1, 53, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 43, -1, -1, -1, 47, -1,
+ -1, -1, -1, -1, -1, -1, 55, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 65, 66, 67, 68,
- -1, 70, -1, 72, -1, 74, 75, 76, -1, -1,
- -1, -1, 81, 82, 83, -1, -1, -1, 87, -1,
- -1, -1, -1, -1, 93, 94, 95, -1, -1, -1,
+ -1, 70, -1, -1, -1, -1, 75, -1, -1, -1,
+ -1, -1, 81, 82, 83, 84, -1, -1, 87, -1,
+ -1, -1, -1, -1, -1, 94, 95, 96, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 11, 12, 13,
+ -1, -1, -1, -1, -1, -1, -1, -1, 22, -1,
+ -1, -1, -1, -1, -1, 29, -1, -1, -1, 33,
+ 34, -1, 36, -1, -1, -1, 40, -1, 42, 43,
+ 44, -1, -1, 47, -1, -1, -1, 51, -1, 53,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 65, 66, 67, 68, -1, 70, -1, 72, -1,
+ 74, -1, 76, -1, -1, -1, -1, 81, 82, 83,
+ -1, -1, -1, 87, -1, -1, -1, -1, -1, -1,
+ 94, 95, 96, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 7, -1, -1, -1, 11, 12, 13, -1,
+ -1, -1, -1, -1, -1, -1, -1, 22, -1, -1,
+ -1, -1, -1, -1, 29, -1, -1, -1, 33, 34,
+ -1, 36, -1, -1, -1, 40, -1, 42, 43, 44,
+ -1, -1, 47, -1, -1, -1, 51, -1, 53, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 65, 66, 67, 68, -1, 70, -1, 72, -1, 74,
+ -1, 76, -1, -1, -1, -1, 81, 82, 83, -1,
+ -1, -1, 87, -1, -1, -1, -1, -1, -1, 94,
+ 95, 96, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 11, 12, 13, -1, -1, -1, -1, -1, -1,
+ -1, -1, 22, -1, -1, -1, -1, -1, -1, 29,
+ -1, -1, -1, 33, 34, -1, 36, -1, -1, -1,
+ 40, -1, 42, 43, 44, -1, -1, 47, -1, -1,
+ -1, 51, -1, 53, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 65, 66, 67, 68, -1,
+ 70, -1, 72, -1, 74, 75, 76, -1, -1, -1,
+ -1, 81, 82, 83, -1, -1, -1, 87, -1, -1,
+ -1, -1, -1, -1, 94, 95, 96, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 8, -1, -1, 11,
12, 13, -1, -1, -1, -1, -1, -1, -1, -1,
22, -1, -1, -1, -1, -1, -1, 29, -1, -1,
@@ -875,17 +905,27 @@ const short QQmlJSGrammar::action_check [] = {
-1, -1, -1, 65, 66, 67, 68, -1, 70, -1,
72, -1, 74, -1, 76, -1, -1, -1, -1, 81,
82, 83, -1, -1, -1, 87, -1, -1, -1, -1,
- -1, 93, 94, 95, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 8, -1, -1, 11, 12, 13, -1,
- -1, -1, -1, -1, -1, -1, -1, 22, -1, -1,
- -1, -1, -1, -1, 29, -1, -1, -1, 33, 34,
- -1, 36, -1, -1, -1, 40, -1, 42, 43, 44,
- -1, -1, 47, -1, -1, -1, 51, -1, 53, -1,
- -1, 56, -1, -1, -1, -1, -1, -1, -1, -1,
- 65, 66, 67, 68, -1, 70, -1, 72, -1, 74,
- -1, 76, -1, -1, -1, -1, 81, 82, 83, -1,
- -1, -1, 87, -1, -1, -1, -1, -1, 93, 94,
- 95, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 94, 95, 96, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, 8, -1, -1, 11, 12, 13,
+ -1, -1, -1, -1, -1, -1, -1, -1, 22, -1,
+ -1, -1, -1, -1, -1, 29, -1, -1, -1, 33,
+ 34, -1, 36, -1, -1, -1, 40, -1, 42, 43,
+ 44, -1, -1, 47, -1, -1, -1, 51, -1, 53,
+ -1, -1, 56, -1, -1, -1, -1, -1, -1, -1,
+ -1, 65, 66, 67, 68, -1, 70, -1, 72, -1,
+ 74, -1, 76, -1, -1, -1, -1, 81, 82, 83,
+ -1, -1, -1, 87, -1, -1, -1, -1, -1, -1,
+ 94, 95, 96, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 8, -1, -1, 11, 12, 13, -1, -1,
+ -1, -1, -1, -1, -1, -1, 22, -1, -1, -1,
+ -1, -1, -1, 29, -1, -1, -1, 33, 34, -1,
+ 36, -1, -1, -1, 40, -1, 42, 43, 44, -1,
+ -1, 47, -1, -1, -1, 51, -1, 53, -1, -1,
+ 56, -1, -1, -1, -1, -1, -1, -1, -1, 65,
+ 66, 67, 68, -1, 70, -1, 72, -1, 74, -1,
+ 76, -1, -1, -1, -1, 81, 82, 83, -1, -1,
+ -1, 87, -1, -1, -1, -1, -1, -1, 94, 95,
+ 96, -1, -1, -1, -1, -1, -1, -1, -1, -1,
8, -1, -1, 11, 12, 13, -1, -1, -1, -1,
-1, -1, -1, -1, 22, -1, -1, -1, -1, -1,
-1, 29, -1, -1, -1, 33, 34, -1, 36, -1,
@@ -894,26 +934,7 @@ const short QQmlJSGrammar::action_check [] = {
-1, -1, -1, -1, -1, -1, -1, 65, 66, 67,
68, -1, 70, -1, 72, -1, 74, -1, 76, -1,
-1, -1, -1, 81, 82, 83, -1, -1, -1, 87,
- -1, -1, -1, -1, -1, 93, 94, 95, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 8, -1, -1,
- 11, 12, 13, -1, -1, -1, -1, -1, -1, -1,
- -1, 22, -1, -1, -1, -1, -1, -1, 29, -1,
- -1, -1, 33, 34, -1, 36, -1, -1, -1, 40,
- -1, 42, 43, 44, -1, -1, 47, -1, -1, -1,
- 51, -1, 53, -1, -1, 56, -1, -1, -1, -1,
- -1, -1, -1, -1, 65, 66, 67, 68, -1, 70,
- -1, 72, -1, 74, -1, 76, -1, -1, -1, -1,
- 81, 82, 83, -1, -1, -1, 87, -1, -1, -1,
- -1, -1, 93, 94, 95, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 11, 12, 13, -1, -1, -1,
- -1, -1, -1, -1, -1, 22, -1, -1, -1, -1,
- -1, -1, 29, 30, -1, -1, 33, 34, -1, 36,
- -1, -1, -1, 40, -1, 42, 43, 44, -1, -1,
- 47, -1, -1, -1, 51, -1, 53, -1, -1, -1,
- -1, -1, -1, -1, 61, -1, -1, -1, 65, 66,
- 67, 68, 69, 70, -1, 72, 73, 74, -1, 76,
- -1, 78, -1, -1, 81, 82, 83, -1, -1, -1,
- 87, -1, -1, -1, -1, -1, 93, 94, 95, -1,
+ -1, -1, -1, -1, -1, -1, 94, 95, 96, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 11, 12,
13, -1, -1, -1, -1, -1, -1, -1, -1, 22,
-1, -1, -1, -1, -1, -1, 29, 30, -1, -1,
@@ -923,47 +944,57 @@ const short QQmlJSGrammar::action_check [] = {
-1, -1, 65, 66, 67, 68, 69, 70, -1, 72,
73, 74, -1, 76, -1, 78, -1, -1, 81, 82,
83, -1, -1, -1, 87, -1, -1, -1, -1, -1,
- 93, 94, 95, -1, -1, -1, -1, -1, -1, -1,
+ -1, 94, 95, 96, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 11, 12, 13, -1, -1, -1, -1,
+ -1, -1, -1, -1, 22, -1, -1, -1, -1, -1,
+ -1, 29, 30, -1, -1, 33, 34, -1, 36, -1,
+ -1, -1, 40, -1, 42, 43, 44, -1, -1, 47,
+ -1, -1, -1, 51, -1, 53, -1, -1, -1, -1,
+ -1, -1, -1, 61, -1, -1, -1, 65, 66, 67,
+ 68, 69, 70, -1, 72, 73, 74, -1, 76, -1,
+ 78, -1, -1, 81, 82, 83, -1, -1, -1, 87,
+ -1, -1, -1, -1, -1, -1, 94, 95, 96, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 4, 5,
+ 6, -1, -1, 9, 10, 11, -1, -1, 14, -1,
+ 16, -1, -1, -1, 20, 21, 22, -1, -1, -1,
+ -1, -1, -1, 29, 30, 31, 32, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 43, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 59, -1, -1, -1, -1, -1, -1,
+ 66, 67, 68, 69, 70, 71, -1, 73, 74, 75,
+ 76, 77, 78, -1, -1, 81, 82, 83, 84, 85,
+ 86, -1, -1, -1, -1, -1, -1, -1, 94, 95,
+ 96, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 4, 5, 6, -1, -1, 9, 10, 11, -1, -1,
+ 14, -1, 16, -1, -1, -1, 20, 21, 22, -1,
+ -1, -1, -1, -1, -1, 29, 30, 31, 32, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 43,
+ -1, -1, -1, 47, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 59, -1, -1, -1, -1,
+ -1, 65, 66, 67, 68, 69, 70, 71, -1, 73,
+ 74, 75, 76, 77, 78, -1, -1, 81, 82, 83,
+ 84, 85, 86, -1, -1, -1, -1, -1, -1, -1,
+ 94, 95, 96, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 4, 5, 6, -1, -1, 9, 10, 11,
-1, -1, 14, -1, 16, -1, -1, -1, 20, 21,
22, -1, -1, -1, -1, -1, -1, 29, 30, 31,
32, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 43, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 43, -1, -1, -1, 47, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 59, -1, -1,
- -1, -1, -1, -1, 66, 67, 68, 69, 70, 71,
+ -1, -1, -1, 65, 66, 67, 68, 69, 70, 71,
-1, 73, 74, 75, 76, 77, 78, -1, -1, 81,
82, 83, 84, 85, 86, -1, -1, -1, -1, -1,
- -1, 93, 94, 95, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 4, 5, 6, -1, -1, 9, 10,
- 11, -1, -1, 14, -1, 16, -1, -1, -1, 20,
- 21, 22, -1, -1, -1, -1, -1, -1, 29, 30,
- 31, 32, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 43, -1, -1, -1, 47, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 59, -1,
- -1, -1, -1, -1, 65, 66, 67, 68, 69, 70,
- 71, -1, 73, 74, 75, 76, 77, 78, -1, -1,
- 81, 82, 83, 84, 85, 86, -1, -1, -1, -1,
- -1, -1, 93, 94, 95, -1, -1, -1, -1, -1,
+ -1, -1, 94, 95, 96, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 4, 5, 6, -1, -1, 9,
10, 11, -1, -1, 14, -1, 16, -1, -1, -1,
20, 21, 22, -1, -1, -1, -1, -1, -1, 29,
30, 31, 32, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 43, -1, -1, -1, 47, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 59,
+ -1, -1, -1, -1, -1, 55, -1, -1, -1, 59,
-1, -1, -1, -1, -1, 65, 66, 67, 68, 69,
70, 71, -1, 73, 74, 75, 76, 77, 78, -1,
-1, 81, 82, 83, 84, 85, 86, -1, -1, -1,
- -1, -1, -1, 93, 94, 95, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, 4, 5, 6, -1, -1,
- 9, 10, 11, -1, -1, 14, -1, 16, -1, -1,
- -1, 20, 21, 22, -1, -1, -1, -1, -1, -1,
- 29, 30, 31, 32, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, 43, -1, -1, -1, 47, -1,
- -1, -1, -1, -1, -1, -1, 55, -1, -1, -1,
- 59, -1, -1, -1, -1, -1, 65, 66, 67, 68,
- 69, 70, 71, -1, 73, 74, 75, 76, 77, 78,
- -1, -1, 81, 82, 83, 84, 85, 86, -1, -1,
- -1, -1, -1, -1, 93, 94, 95, -1, -1, -1,
+ -1, -1, -1, -1, 94, 95, 96, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 4, -1, -1, -1,
-1, 9, -1, 11, 12, 13, 14, -1, -1, -1,
-1, -1, -1, 21, 22, -1, -1, -1, -1, -1,
@@ -973,89 +1004,90 @@ const short QQmlJSGrammar::action_check [] = {
-1, 59, -1, 61, -1, -1, -1, 65, 66, 67,
68, 69, 70, 71, 72, 73, 74, 75, 76, 77,
78, -1, -1, 81, 82, 83, 84, 85, -1, 87,
- -1, -1, -1, -1, -1, 93, 94, 95, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 4, -1, -1,
- -1, -1, 9, -1, 11, 12, 13, 14, -1, -1,
- -1, -1, -1, -1, 21, 22, -1, -1, -1, -1,
- -1, -1, 29, 30, -1, -1, 33, 34, -1, 36,
- -1, -1, -1, 40, -1, 42, 43, 44, -1, -1,
- 47, -1, -1, -1, 51, -1, 53, -1, -1, -1,
- -1, -1, 59, -1, 61, -1, -1, -1, 65, 66,
- 67, 68, 69, 70, 71, 72, 73, 74, 75, 76,
- 77, 78, -1, -1, 81, 82, 83, 84, 85, -1,
- 87, -1, -1, -1, -1, -1, 93, 94, 95, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, 4, 5,
- 6, -1, -1, 9, 10, 11, 12, 13, 14, -1,
- 16, -1, -1, -1, 20, 21, 22, -1, -1, -1,
- -1, -1, -1, 29, 30, 31, 32, 33, 34, -1,
+ -1, -1, -1, -1, -1, -1, 94, 95, 96, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, 4, -1,
+ -1, -1, -1, 9, -1, 11, 12, 13, 14, -1,
+ -1, -1, -1, -1, -1, 21, 22, -1, -1, -1,
+ -1, -1, -1, 29, 30, -1, -1, 33, 34, -1,
36, -1, -1, -1, 40, -1, 42, 43, 44, -1,
-1, 47, -1, -1, -1, 51, -1, 53, -1, -1,
-1, -1, -1, 59, -1, 61, -1, -1, -1, 65,
66, 67, 68, 69, 70, 71, 72, 73, 74, 75,
76, 77, 78, -1, -1, 81, 82, 83, 84, 85,
- 86, 87, -1, -1, -1, -1, -1, 93, 94, 95,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 4,
- 5, 6, -1, -1, 9, 10, 11, 12, 13, 14,
- -1, 16, -1, -1, -1, 20, 21, 22, -1, -1,
- -1, -1, -1, -1, 29, 30, 31, 32, 33, 34,
- -1, 36, -1, -1, -1, 40, -1, 42, 43, 44,
- -1, -1, 47, -1, -1, -1, 51, -1, 53, -1,
- 55, -1, -1, -1, 59, -1, 61, -1, -1, -1,
- 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
- 75, 76, 77, 78, -1, -1, 81, 82, 83, 84,
- 85, 86, 87, -1, -1, -1, -1, -1, 93, 94,
- 95, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 87, -1, -1, -1, -1, -1, -1, 94, 95,
+ 96, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 4, 5, 6, -1, -1, 9, 10, 11, 12, 13,
+ 14, -1, 16, -1, -1, -1, 20, 21, 22, -1,
+ -1, -1, -1, -1, -1, 29, 30, 31, 32, 33,
+ 34, -1, 36, -1, -1, -1, 40, -1, 42, 43,
+ 44, -1, -1, 47, -1, -1, -1, 51, -1, 53,
+ -1, -1, -1, -1, -1, 59, -1, 61, -1, -1,
+ -1, 65, 66, 67, 68, 69, 70, 71, 72, 73,
+ 74, 75, 76, 77, 78, -1, -1, 81, 82, 83,
+ 84, 85, 86, 87, -1, -1, -1, -1, -1, -1,
+ 94, 95, 96, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 4, 5, 6, -1, -1, 9, 10, 11,
+ 12, 13, 14, -1, 16, -1, -1, -1, 20, 21,
+ 22, -1, -1, -1, -1, -1, -1, 29, 30, 31,
+ 32, 33, 34, -1, 36, -1, -1, -1, 40, -1,
+ 42, 43, 44, -1, -1, 47, -1, -1, -1, 51,
+ -1, 53, -1, 55, -1, -1, -1, 59, -1, 61,
+ -1, -1, -1, 65, 66, 67, 68, 69, 70, 71,
+ 72, 73, 74, 75, 76, 77, 78, -1, -1, 81,
+ 82, 83, 84, 85, 86, 87, -1, -1, -1, -1,
+ -1, -1, 94, 95, 96, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1,
- 15, 39, 29, 3, 15, 15, 13, 15, 3, 15,
- 29, 9, 15, 15, 3, 3, 39, 22, 19, 15,
- 19, 3, 15, 15, 15, 11, 3, 74, 15, 19,
- 15, 15, 29, 13, 15, 29, 102, 15, 3, 15,
- 97, 3, 100, 15, -1, 15, 29, 22, 15, 3,
- 3, 15, 3, 22, 15, 15, 22, 15, 15, 3,
- 39, 3, 3, 3, 3, 39, 39, 22, 39, 3,
- 15, 39, 15, 2, -1, 13, 39, 13, 2, 2,
- 39, 13, 13, 39, 2, 15, 15, 39, 20, 3,
- 3, 15, 15, 3, 15, 15, 2, 15, 41, -1,
- 2, 51, 51, 51, 53, 51, 56, 53, 56, 15,
- 48, 41, 48, 15, 51, 15, 51, 48, 51, 56,
- 39, 56, 39, 56, 51, 51, 53, 53, 47, 51,
- 47, 53, 4, 15, 2, 51, 15, 53, 15, 51,
- 40, 15, 51, 15, 53, 4, 51, 15, 53, 15,
- 51, 63, 53, 51, 51, 13, 15, 51, 16, 53,
- 42, 75, 75, 51, 3, 44, 43, 65, 15, 43,
- 67, 91, 13, 61, -1, 16, 42, 15, 51, 15,
- 51, 54, 51, 54, 51, 106, 53, 56, 51, 13,
- 53, 51, 16, 53, 2, 51, 43, 51, 35, 2,
- 56, 15, 39, 51, 42, 59, 42, 15, 56, 51,
- 2, 51, 15, 2, 56, -1, 56, 51, 51, 51,
- 2, 51, 56, 15, 57, 57, 15, 57, 51, 4,
- 51, 2, -1, 15, 57, 56, 75, 2, 51, 51,
- 15, 53, 55, 2, 15, 51, 51, 2, 53, 55,
- 15, 51, 51, 53, 53, 51, 15, 53, 51, 2,
- 15, 51, 55, 51, 51, 15, 56, 2, 56, 56,
- -1, 3, 15, 51, 64, 89, -1, 51, 56, 51,
- 15, 68, 56, -1, 56, 73, 58, 51, 66, -1,
- -1, 51, 56, -1, 44, 45, 56, 51, 58, 73,
- 51, -1, 56, 51, 58, 56, 51, 51, 56, 73,
- 51, 56, 56, 58, 13, 56, -1, -1, 62, 60,
- -1, 20, 73, 13, 5, 73, 16, 5, 18, -1,
- -1, -1, 13, 32, 33, 13, -1, -1, -1, 20,
- -1, -1, 20, 75, -1, -1, -1, -1, -1, 39,
- 85, 32, 33, -1, 32, 33, 22, 23, 24, 25,
- 26, 27, 28, 21, 22, 23, 24, 25, 26, 27,
- 28, 13, -1, -1, -1, -1, 2, -1, 20, 21,
- 22, 23, 24, 25, 26, 27, 28, -1, -1, 15,
+ 42, 3, 18, 25, 18, 3, 18, 3, 18, 22,
+ 18, 3, 18, 22, 32, 32, 42, 18, 18, 18,
+ 3, 32, 25, 18, 18, 32, 3, 18, 32, 105,
+ 18, 18, 25, 100, 3, 3, 3, 18, 3, 25,
+ 18, 3, 18, 18, 18, 42, 3, 3, 103, 9,
+ 3, 14, 42, 42, 18, 25, 14, 42, 42, 18,
+ 42, 3, 42, 18, 18, 3, 18, 3, 18, 14,
+ 42, 22, 18, 2, 4, 18, 42, 18, 2, 11,
+ 12, 54, -1, 54, 2, 56, 59, 18, 18, 18,
+ 4, 14, 14, 54, 18, 56, 19, 14, 77, 14,
+ 18, 23, 2, 46, 18, 54, 54, 54, 2, 2,
+ 59, 59, 59, 18, 54, 54, 3, 56, 18, 59,
+ 54, 54, 56, 56, 18, 18, 54, 54, 54, 56,
+ 56, 59, 18, 54, 51, 56, 51, 2, 54, 2,
+ 56, 54, 54, 56, 56, 54, 54, 56, 38, 2,
+ 58, 54, 42, 18, 57, 18, 3, 54, 2, 45,
+ 18, 92, 54, 54, 2, 18, 3, 18, 109, 66,
+ 42, 54, 64, 56, 18, 18, 18, 2, 50, 70,
+ 18, 54, 42, 4, 54, 43, 56, 18, 14, 94,
+ 50, 78, 2, 18, 45, 68, 18, 18, 54, 18,
+ 56, 3, 54, 46, 46, 54, 54, 59, 18, 54,
+ 2, 60, 60, 44, 54, 60, 56, 2, 14, 14,
+ 3, 54, 44, 19, 19, 51, 18, 60, 47, 2,
+ 54, 78, 18, 18, 54, -1, 56, 54, 62, 56,
+ 54, 54, 18, 18, 58, 18, 59, 54, 54, 54,
+ 57, 54, 58, 54, 59, 54, 59, 54, 59, 45,
+ 59, 54, 59, 54, 2, 2, 59, -1, 59, 45,
+ 61, -1, 47, 48, 2, -1, 78, 54, -1, 76,
+ 18, 18, 59, 76, 54, -1, 54, 54, 54, 59,
+ 18, 59, 59, 59, -1, 78, -1, -1, 54, 76,
+ 54, 69, -1, 59, 71, 59, 76, 61, 54, 54,
+ 76, 67, 54, 59, 59, 61, 5, 59, 54, 61,
+ 65, 14, 5, 59, -1, 14, 19, 63, 21, -1,
+ -1, 14, -1, -1, 23, -1, -1, -1, -1, -1,
+ 23, -1, -1, -1, -1, -1, 35, 36, -1, 42,
+ 88, 88, 35, 36, 25, 26, 27, 28, 29, 30,
+ 31, 24, 25, 26, 27, 28, 29, 30, 31, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 14, 14, -1, -1, -1, -1, -1,
+ -1, -1, 23, 23, 24, 25, 26, 27, 28, 29,
+ 30, 31, -1, -1, 35, 36, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 85,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 13, -1, -1, -1, -1, -1, -1, 20,
- 21, 22, 23, 24, 25, 26, 27, 28, -1, -1,
+ 14, -1, -1, -1, -1, -1, -1, -1, -1, 23,
+ 24, 25, 26, 27, 28, 29, 30, 31, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
diff --git a/src/tools/qdoc/qmlparser/qqmljsgrammar_p.h b/src/tools/qdoc/qmlparser/qqmljsgrammar_p.h
index 9ef4695d69..054b7cc2e0 100644
--- a/src/tools/qdoc/qmlparser/qqmljsgrammar_p.h
+++ b/src/tools/qdoc/qmlparser/qqmljsgrammar_p.h
@@ -63,12 +63,12 @@ class QQmlJSGrammar
public:
enum VariousConstants {
EOF_SYMBOL = 0,
- REDUCE_HERE = 104,
- SHIFT_THERE = 103,
+ REDUCE_HERE = 105,
+ SHIFT_THERE = 104,
T_AND = 1,
T_AND_AND = 2,
T_AND_EQ = 3,
- T_AS = 92,
+ T_AS = 93,
T_AUTOMATIC_SEMICOLON = 62,
T_BREAK = 4,
T_CASE = 5,
@@ -90,19 +90,19 @@ public:
T_EQ = 17,
T_EQ_EQ = 18,
T_EQ_EQ_EQ = 19,
- T_ERROR = 96,
+ T_ERROR = 97,
T_FALSE = 83,
- T_FEED_JS_EXPRESSION = 100,
- T_FEED_JS_PROGRAM = 102,
- T_FEED_JS_SOURCE_ELEMENT = 101,
- T_FEED_JS_STATEMENT = 99,
- T_FEED_UI_OBJECT_MEMBER = 98,
- T_FEED_UI_PROGRAM = 97,
+ T_FEED_JS_EXPRESSION = 101,
+ T_FEED_JS_PROGRAM = 103,
+ T_FEED_JS_SOURCE_ELEMENT = 102,
+ T_FEED_JS_STATEMENT = 100,
+ T_FEED_UI_OBJECT_MEMBER = 99,
+ T_FEED_UI_PROGRAM = 98,
T_FINALLY = 20,
T_FOR = 21,
T_FUNCTION = 22,
T_GE = 23,
- T_GET = 94,
+ T_GET = 95,
T_GT = 24,
T_GT_GT = 25,
T_GT_GT_EQ = 26,
@@ -130,13 +130,14 @@ public:
T_NOT_EQ_EQ = 46,
T_NULL = 81,
T_NUMERIC_LITERAL = 47,
- T_ON = 93,
+ T_ON = 94,
T_OR = 48,
T_OR_EQ = 49,
T_OR_OR = 50,
T_PLUS = 51,
T_PLUS_EQ = 52,
T_PLUS_PLUS = 53,
+ T_PRAGMA = 92,
T_PROPERTY = 66,
T_PUBLIC = 90,
T_QUESTION = 54,
@@ -149,7 +150,7 @@ public:
T_RETURN = 59,
T_RPAREN = 60,
T_SEMICOLON = 61,
- T_SET = 95,
+ T_SET = 96,
T_SIGNAL = 67,
T_STAR = 63,
T_STAR_EQ = 64,
@@ -168,15 +169,15 @@ public:
T_XOR = 79,
T_XOR_EQ = 80,
- ACCEPT_STATE = 655,
- RULE_COUNT = 351,
- STATE_COUNT = 656,
- TERMINAL_COUNT = 105,
- NON_TERMINAL_COUNT = 108,
+ ACCEPT_STATE = 663,
+ RULE_COUNT = 357,
+ STATE_COUNT = 664,
+ TERMINAL_COUNT = 106,
+ NON_TERMINAL_COUNT = 111,
- GOTO_INDEX_OFFSET = 656,
- GOTO_INFO_OFFSET = 2970,
- GOTO_CHECK_OFFSET = 2970
+ GOTO_INDEX_OFFSET = 664,
+ GOTO_INFO_OFFSET = 3104,
+ GOTO_CHECK_OFFSET = 3104
};
static const char *const spell [];
diff --git a/src/tools/qdoc/qmlparser/qqmljskeywords_p.h b/src/tools/qdoc/qmlparser/qqmljskeywords_p.h
index 7fcf001303..c6277e0fcc 100644
--- a/src/tools/qdoc/qmlparser/qqmljskeywords_p.h
+++ b/src/tools/qdoc/qmlparser/qqmljskeywords_p.h
@@ -436,6 +436,17 @@ static inline int classify6(const QChar *s, bool qmlMode) {
}
}
}
+ else if (s[1].unicode() == 'r') {
+ if (s[2].unicode() == 'a') {
+ if (s[3].unicode() == 'g') {
+ if (s[4].unicode() == 'm') {
+ if (s[5].unicode() == 'a') {
+ return qmlMode ? Lexer::T_PRAGMA : Lexer::T_IDENTIFIER;
+ }
+ }
+ }
+ }
+ }
}
else if (s[0].unicode() == 'r') {
if (s[1].unicode() == 'e') {
diff --git a/src/tools/qdoc/qmlparser/qqmljslexer.cpp b/src/tools/qdoc/qmlparser/qqmljslexer.cpp
index edd85ec878..8e8ed954ad 100644
--- a/src/tools/qdoc/qmlparser/qqmljslexer.cpp
+++ b/src/tools/qdoc/qmlparser/qqmljslexer.cpp
@@ -54,7 +54,7 @@ QT_END_NAMESPACE
using namespace QQmlJS;
-static int regExpFlagFromChar(const QChar &ch)
+static inline int regExpFlagFromChar(const QChar &ch)
{
switch (ch.unicode()) {
case 'g': return Lexer::RegExp_Global;
@@ -64,7 +64,7 @@ static int regExpFlagFromChar(const QChar &ch)
return 0;
}
-static unsigned char convertHex(ushort c)
+static inline unsigned char convertHex(ushort c)
{
if (c >= '0' && c <= '9')
return (c - '0');
@@ -74,12 +74,12 @@ static unsigned char convertHex(ushort c)
return (c - 'A' + 10);
}
-static QChar convertHex(QChar c1, QChar c2)
+static inline QChar convertHex(QChar c1, QChar c2)
{
return QChar((convertHex(c1.unicode()) << 4) + convertHex(c2.unicode()));
}
-static QChar convertUnicode(QChar c1, QChar c2, QChar c3, QChar c4)
+static inline QChar convertUnicode(QChar c1, QChar c2, QChar c3, QChar c4)
{
return QChar((convertHex(c3.unicode()) << 4) + convertHex(c4.unicode()),
(convertHex(c1.unicode()) << 4) + convertHex(c2.unicode()));
@@ -259,6 +259,7 @@ int Lexer::lex()
_parenthesesCount = 0;
break;
+ case T_ELSE:
case T_DO:
_parenthesesState = BalancedParentheses;
break;
@@ -287,7 +288,8 @@ int Lexer::lex()
break;
case BalancedParentheses:
- _parenthesesState = IgnoreParentheses;
+ if (_tokenKind != T_DO && _tokenKind != T_ELSE)
+ _parenthesesState = IgnoreParentheses;
break;
} // switch
@@ -329,6 +331,27 @@ QChar Lexer::decodeUnicodeEscapeCharacter(bool *ok)
return QChar();
}
+QChar Lexer::decodeHexEscapeCharacter(bool *ok)
+{
+ if (isHexDigit(_codePtr[0]) && isHexDigit(_codePtr[1])) {
+ scanChar();
+
+ const QChar c1 = _char;
+ scanChar();
+
+ const QChar c2 = _char;
+ scanChar();
+
+ if (ok)
+ *ok = true;
+
+ return convertHex(c1, c2);
+ }
+
+ *ok = false;
+ return QChar();
+}
+
static inline bool isIdentifierStart(QChar ch)
{
// fast path for ascii
@@ -705,35 +728,29 @@ again:
scanChar();
QChar u;
- bool ok = false;
switch (_char.unicode()) {
// unicode escape sequence
- case 'u':
+ case 'u': {
+ bool ok = false;
u = decodeUnicodeEscapeCharacter(&ok);
if (! ok) {
_errorCode = IllegalUnicodeEscapeSequence;
_errorMessage = QCoreApplication::translate("QQmlParser", "Illegal unicode escape sequence");
return T_ERROR;
}
- break;
+ } break;
// hex escape sequence
- case 'x':
- if (isHexDigit(_codePtr[0]) && isHexDigit(_codePtr[1])) {
- scanChar();
-
- const QChar c1 = _char;
- scanChar();
-
- const QChar c2 = _char;
- scanChar();
-
- u = convertHex(c1, c2);
- } else {
- u = _char;
+ case 'x': {
+ bool ok = false;
+ u = decodeHexEscapeCharacter(&ok);
+ if (!ok) {
+ _errorCode = IllegalHexadecimalEscapeSequence;
+ _errorMessage = QCoreApplication::translate("QQmlParser", "Illegal hexadecimal escape sequence");
+ return T_ERROR;
}
- break;
+ } break;
// single character escape sequence
case '\\': u = QLatin1Char('\\'); scanChar(); break;
@@ -767,22 +784,11 @@ again:
return T_ERROR;
case '\r':
- if (isLineTerminatorSequence() == 2) {
- _tokenText += QLatin1Char('\r');
- u = QLatin1Char('\n');
- } else {
- u = QLatin1Char('\r');
- }
- scanChar();
- break;
-
case '\n':
case 0x2028u:
case 0x2029u:
- u = _char;
scanChar();
- break;
-
+ continue;
default:
// non escape character
@@ -1033,7 +1039,7 @@ bool Lexer::scanRegExp(RegExpBodyPrefix prefix)
_patternFlags = 0;
while (isIdentLetter(_char)) {
int flag = regExpFlagFromChar(_char);
- if (flag == 0) {
+ if (flag == 0 || _patternFlags & flag) {
_errorMessage = QCoreApplication::translate("QQmlParser", "Invalid regular expression flag '%0'")
.arg(QChar(_char));
return false;
diff --git a/src/tools/qdoc/qmlparser/qqmljslexer_p.h b/src/tools/qdoc/qmlparser/qqmljslexer_p.h
index e1b51da92b..23af61d650 100644
--- a/src/tools/qdoc/qmlparser/qqmljslexer_p.h
+++ b/src/tools/qdoc/qmlparser/qqmljslexer_p.h
@@ -128,7 +128,8 @@ public:
IllegalUnicodeEscapeSequence,
UnclosedComment,
IllegalExponentIndicator,
- IllegalIdentifier
+ IllegalIdentifier,
+ IllegalHexadecimalEscapeSequence
};
enum RegExpBodyPrefix {
@@ -203,6 +204,7 @@ private:
void syncProhibitAutomaticSemicolon();
QChar decodeUnicodeEscapeCharacter(bool *ok);
+ QChar decodeHexEscapeCharacter(bool *ok);
private:
Engine *_engine;
diff --git a/src/tools/qdoc/qmlparser/qqmljsparser.cpp b/src/tools/qdoc/qmlparser/qqmljsparser.cpp
index a0fa7a4711..b86b4a987f 100644
--- a/src/tools/qdoc/qmlparser/qqmljsparser.cpp
+++ b/src/tools/qdoc/qmlparser/qqmljsparser.cpp
@@ -50,6 +50,7 @@
#include <string.h>
+
#include "qqmljsparser_p.h"
#include <QtCore/qvarlengtharray.h>
@@ -146,6 +147,19 @@ AST::UiQualifiedId *Parser::reparseAsQualifiedId(AST::ExpressionNode *expr)
return 0;
}
+AST::UiQualifiedPragmaId *Parser::reparseAsQualifiedPragmaId(AST::ExpressionNode *expr)
+{
+ if (AST::IdentifierExpression *idExpr = AST::cast<AST::IdentifierExpression *>(expr)) {
+ AST::UiQualifiedPragmaId *q = new (pool) AST::UiQualifiedPragmaId(idExpr->name);
+ q->identifierToken = idExpr->identifierToken;
+
+ return q->finish();
+ }
+
+ return 0;
+}
+
+
bool Parser::parse(int startToken)
{
Lexer *lexer = driver->lexer();
@@ -232,32 +246,44 @@ case 5: {
} break;
case 6: {
- sym(1).UiProgram = new (pool) AST::UiProgram(sym(1).UiImportList,
+ sym(1).UiProgram = new (pool) AST::UiProgram(sym(1).UiHeaderItemList,
sym(2).UiObjectMemberList->finish());
} break;
case 8: {
- sym(1).Node = sym(1).UiImportList->finish();
+ sym(1).Node = sym(1).UiHeaderItemList->finish();
} break;
case 9: {
- sym(1).Node = new (pool) AST::UiImportList(sym(1).UiImport);
+ sym(1).Node = new (pool) AST::UiHeaderItemList(sym(1).UiPragma);
} break;
case 10: {
- sym(1).Node = new (pool) AST::UiImportList(sym(1).UiImportList, sym(2).UiImport);
+ sym(1).Node = new (pool) AST::UiHeaderItemList(sym(1).UiImport);
} break;
-case 13: {
+case 11: {
+ sym(1).Node = new (pool) AST::UiHeaderItemList(sym(1).UiHeaderItemList, sym(2).UiPragma);
+} break;
+
+case 12: {
+ sym(1).Node = new (pool) AST::UiHeaderItemList(sym(1).UiHeaderItemList, sym(2).UiImport);
+} break;
+
+case 16: {
+ sym(1).UiPragma->semicolonToken = loc(2);
+} break;
+
+case 18: {
sym(1).UiImport->semicolonToken = loc(2);
} break;
-case 15: {
+case 20: {
sym(1).UiImport->versionToken = loc(2);
sym(1).UiImport->semicolonToken = loc(3);
} break;
-case 17: {
+case 22: {
sym(1).UiImport->versionToken = loc(2);
sym(1).UiImport->asToken = loc(3);
sym(1).UiImport->importIdToken = loc(4);
@@ -265,14 +291,33 @@ case 17: {
sym(1).UiImport->semicolonToken = loc(5);
} break;
-case 19: {
+case 24: {
sym(1).UiImport->asToken = loc(2);
sym(1).UiImport->importIdToken = loc(3);
sym(1).UiImport->importId = stringRef(3);
sym(1).UiImport->semicolonToken = loc(4);
} break;
-case 20: {
+case 25: {
+ AST::UiPragma *node = 0;
+
+ if (AST::UiQualifiedPragmaId *qualifiedId = reparseAsQualifiedPragmaId(sym(2).Expression)) {
+ node = new (pool) AST::UiPragma(qualifiedId);
+ }
+
+ sym(1).Node = node;
+
+ if (node) {
+ node->pragmaToken = loc(1);
+ } else {
+ diagnostic_messages.append(DiagnosticMessage(DiagnosticMessage::Error, loc(1),
+ QLatin1String("Expected a qualified name id")));
+
+ return false; // ### remove me
+ }
+} break;
+
+case 26: {
AST::UiImport *node = 0;
if (AST::StringLiteral *importIdLiteral = AST::cast<AST::StringLiteral *>(sym(2).Expression)) {
@@ -295,56 +340,56 @@ case 20: {
}
} break;
-case 21: {
+case 27: {
sym(1).Node = 0;
} break;
-case 22: {
+case 28: {
sym(1).Node = new (pool) AST::UiObjectMemberList(sym(1).UiObjectMember);
} break;
-case 23: {
+case 29: {
sym(1).Node = new (pool) AST::UiObjectMemberList(sym(1).UiObjectMember);
} break;
-case 24: {
+case 30: {
AST::UiObjectMemberList *node = new (pool) AST:: UiObjectMemberList(
sym(1).UiObjectMemberList, sym(2).UiObjectMember);
sym(1).Node = node;
} break;
-case 25: {
+case 31: {
sym(1).Node = new (pool) AST::UiArrayMemberList(sym(1).UiObjectMember);
} break;
-case 26: {
+case 32: {
AST::UiArrayMemberList *node = new (pool) AST::UiArrayMemberList(
sym(1).UiArrayMemberList, sym(3).UiObjectMember);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 27: {
+case 33: {
AST::UiObjectInitializer *node = new (pool) AST::UiObjectInitializer((AST::UiObjectMemberList*)0);
node->lbraceToken = loc(1);
node->rbraceToken = loc(2);
sym(1).Node = node;
} break;
-case 28: {
+case 34: {
AST::UiObjectInitializer *node = new (pool) AST::UiObjectInitializer(sym(2).UiObjectMemberList->finish());
node->lbraceToken = loc(1);
node->rbraceToken = loc(3);
sym(1).Node = node;
} break;
-case 29: {
+case 35: {
AST::UiObjectDefinition *node = new (pool) AST::UiObjectDefinition(sym(1).UiQualifiedId,
sym(2).UiObjectInitializer);
sym(1).Node = node;
} break;
-case 31: {
+case 37: {
AST::UiArrayBinding *node = new (pool) AST::UiArrayBinding(
sym(1).UiQualifiedId, sym(4).UiArrayMemberList->finish());
node->colonToken = loc(2);
@@ -353,14 +398,14 @@ case 31: {
sym(1).Node = node;
} break;
-case 32: {
+case 38: {
AST::UiObjectBinding *node = new (pool) AST::UiObjectBinding(
sym(1).UiQualifiedId, sym(3).UiQualifiedId, sym(4).UiObjectInitializer);
node->colonToken = loc(2);
sym(1).Node = node;
} break;
-case 33: {
+case 39: {
AST::UiObjectBinding *node = new (pool) AST::UiObjectBinding(
sym(3).UiQualifiedId, sym(1).UiQualifiedId, sym(4).UiObjectInitializer);
node->colonToken = loc(2);
@@ -368,7 +413,7 @@ case 33: {
sym(1).Node = node;
} break;
-case 41:
+case 47:
{
AST::UiScriptBinding *node = new (pool) AST::UiScriptBinding(
sym(1).UiQualifiedId, sym(3).Statement);
@@ -376,22 +421,22 @@ case 41:
sym(1).Node = node;
} break;
-case 45: {
+case 51: {
sym(1).Node = 0;
} break;
-case 46: {
+case 52: {
sym(1).Node = sym(1).UiParameterList->finish ();
} break;
-case 47: {
+case 53: {
AST::UiParameterList *node = new (pool) AST::UiParameterList(stringRef(1), stringRef(2));
node->propertyTypeToken = loc(1);
node->identifierToken = loc(2);
sym(1).Node = node;
} break;
-case 48: {
+case 54: {
AST::UiParameterList *node = new (pool) AST::UiParameterList(sym(1).UiParameterList, stringRef(3), stringRef(4));
node->propertyTypeToken = loc(3);
node->commaToken = loc(2);
@@ -399,7 +444,7 @@ case 48: {
sym(1).Node = node;
} break;
-case 50: {
+case 56: {
AST::UiPublicMember *node = new (pool) AST::UiPublicMember(QStringRef(), stringRef(2));
node->type = AST::UiPublicMember::Signal;
node->propertyToken = loc(1);
@@ -410,7 +455,7 @@ case 50: {
sym(1).Node = node;
} break;
-case 52: {
+case 58: {
AST::UiPublicMember *node = new (pool) AST::UiPublicMember(QStringRef(), stringRef(2));
node->type = AST::UiPublicMember::Signal;
node->propertyToken = loc(1);
@@ -420,7 +465,7 @@ case 52: {
sym(1).Node = node;
} break;
-case 54: {
+case 60: {
AST::UiPublicMember *node = new (pool) AST::UiPublicMember(stringRef(4), stringRef(6));
node->typeModifier = stringRef(2);
node->propertyToken = loc(1);
@@ -431,7 +476,7 @@ case 54: {
sym(1).Node = node;
} break;
-case 56: {
+case 62: {
AST::UiPublicMember *node = new (pool) AST::UiPublicMember(stringRef(2), stringRef(3));
node->propertyToken = loc(1);
node->typeToken = loc(2);
@@ -440,7 +485,7 @@ case 56: {
sym(1).Node = node;
} break;
-case 58: {
+case 64: {
AST::UiPublicMember *node = new (pool) AST::UiPublicMember(stringRef(3), stringRef(4));
node->isDefaultMember = true;
node->defaultToken = loc(1);
@@ -451,7 +496,7 @@ case 58: {
sym(1).Node = node;
} break;
-case 59: {
+case 65: {
AST::UiPublicMember *node = new (pool) AST::UiPublicMember(stringRef(2), stringRef(3),
sym(5).Statement);
node->propertyToken = loc(1);
@@ -461,7 +506,7 @@ case 59: {
sym(1).Node = node;
} break;
-case 60: {
+case 66: {
AST::UiPublicMember *node = new (pool) AST::UiPublicMember(stringRef(3), stringRef(4),
sym(6).Statement);
node->isReadonlyMember = true;
@@ -473,7 +518,7 @@ case 60: {
sym(1).Node = node;
} break;
-case 61: {
+case 67: {
AST::UiPublicMember *node = new (pool) AST::UiPublicMember(stringRef(3), stringRef(4),
sym(6).Statement);
node->isDefaultMember = true;
@@ -485,7 +530,7 @@ case 61: {
sym(1).Node = node;
} break;
-case 62: {
+case 68: {
AST::UiPublicMember *node = new (pool) AST::UiPublicMember(stringRef(4), stringRef(6));
node->typeModifier = stringRef(2);
node->propertyToken = loc(1);
@@ -509,7 +554,7 @@ case 62: {
sym(1).Node = node;
} break;
-case 63: {
+case 69: {
AST::UiPublicMember *node = new (pool) AST::UiPublicMember(stringRef(2), stringRef(3));
node->propertyToken = loc(1);
node->typeToken = loc(2);
@@ -529,57 +574,57 @@ case 63: {
sym(1).Node = node;
} break;
-case 64: {
+case 70: {
sym(1).Node = new (pool) AST::UiSourceElement(sym(1).Node);
} break;
-case 65: {
+case 71: {
sym(1).Node = new (pool) AST::UiSourceElement(sym(1).Node);
} break;
-case 73: {
+case 79: {
AST::ThisExpression *node = new (pool) AST::ThisExpression();
node->thisToken = loc(1);
sym(1).Node = node;
} break;
-case 74: {
+case 80: {
AST::IdentifierExpression *node = new (pool) AST::IdentifierExpression(stringRef(1));
node->identifierToken = loc(1);
sym(1).Node = node;
} break;
-case 75: {
+case 81: {
AST::NullExpression *node = new (pool) AST::NullExpression();
node->nullToken = loc(1);
sym(1).Node = node;
} break;
-case 76: {
+case 82: {
AST::TrueLiteral *node = new (pool) AST::TrueLiteral();
node->trueToken = loc(1);
sym(1).Node = node;
} break;
-case 77: {
+case 83: {
AST::FalseLiteral *node = new (pool) AST::FalseLiteral();
node->falseToken = loc(1);
sym(1).Node = node;
} break;
-case 78: {
+case 84: {
AST::NumericLiteral *node = new (pool) AST::NumericLiteral(sym(1).dval);
node->literalToken = loc(1);
sym(1).Node = node;
} break;
-case 79:
-case 80: {
+case 85:
+case 86: {
AST::StringLiteral *node = new (pool) AST::StringLiteral(stringRef(1));
node->literalToken = loc(1);
sym(1).Node = node;
} break;
-case 81: {
+case 87: {
bool rx = lexer->scanRegExp(Lexer::NoPrefix);
if (!rx) {
diagnostic_messages.append(DiagnosticMessage(DiagnosticMessage::Error, location(lexer), lexer->errorMessage()));
@@ -595,7 +640,7 @@ case 81: {
sym(1).Node = node;
} break;
-case 82: {
+case 88: {
bool rx = lexer->scanRegExp(Lexer::EqualPrefix);
if (!rx) {
diagnostic_messages.append(DiagnosticMessage(DiagnosticMessage::Error, location(lexer), lexer->errorMessage()));
@@ -611,28 +656,28 @@ case 82: {
sym(1).Node = node;
} break;
-case 83: {
+case 89: {
AST::ArrayLiteral *node = new (pool) AST::ArrayLiteral((AST::Elision *) 0);
node->lbracketToken = loc(1);
node->rbracketToken = loc(2);
sym(1).Node = node;
} break;
-case 84: {
+case 90: {
AST::ArrayLiteral *node = new (pool) AST::ArrayLiteral(sym(2).Elision->finish());
node->lbracketToken = loc(1);
node->rbracketToken = loc(3);
sym(1).Node = node;
} break;
-case 85: {
+case 91: {
AST::ArrayLiteral *node = new (pool) AST::ArrayLiteral(sym(2).ElementList->finish ());
node->lbracketToken = loc(1);
node->rbracketToken = loc(3);
sym(1).Node = node;
} break;
-case 86: {
+case 92: {
AST::ArrayLiteral *node = new (pool) AST::ArrayLiteral(sym(2).ElementList->finish (),
(AST::Elision *) 0);
node->lbracketToken = loc(1);
@@ -641,7 +686,7 @@ case 86: {
sym(1).Node = node;
} break;
-case 87: {
+case 93: {
AST::ArrayLiteral *node = new (pool) AST::ArrayLiteral(sym(2).ElementList->finish (),
sym(4).Elision->finish());
node->lbracketToken = loc(1);
@@ -650,7 +695,7 @@ case 87: {
sym(1).Node = node;
} break;
-case 88: {
+case 94: {
AST::ObjectLiteral *node = 0;
if (sym(2).Node)
node = new (pool) AST::ObjectLiteral(
@@ -662,7 +707,7 @@ case 88: {
sym(1).Node = node;
} break;
-case 89: {
+case 95: {
AST::ObjectLiteral *node = new (pool) AST::ObjectLiteral(
sym(2).PropertyAssignmentList->finish ());
node->lbraceToken = loc(1);
@@ -670,14 +715,14 @@ case 89: {
sym(1).Node = node;
} break;
-case 90: {
+case 96: {
AST::NestedExpression *node = new (pool) AST::NestedExpression(sym(2).Expression);
node->lparenToken = loc(1);
node->rparenToken = loc(3);
sym(1).Node = node;
} break;
-case 91: {
+case 97: {
if (AST::ArrayMemberExpression *mem = AST::cast<AST::ArrayMemberExpression *>(sym(1).Expression)) {
diagnostic_messages.append(DiagnosticMessage(DiagnosticMessage::Warning, mem->lbracketToken,
QLatin1String("Ignored annotation")));
@@ -697,48 +742,48 @@ case 91: {
}
} break;
-case 92: {
+case 98: {
sym(1).Node = new (pool) AST::ElementList((AST::Elision *) 0, sym(1).Expression);
} break;
-case 93: {
+case 99: {
sym(1).Node = new (pool) AST::ElementList(sym(1).Elision->finish(), sym(2).Expression);
} break;
-case 94: {
+case 100: {
AST::ElementList *node = new (pool) AST::ElementList(sym(1).ElementList,
(AST::Elision *) 0, sym(3).Expression);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 95: {
+case 101: {
AST::ElementList *node = new (pool) AST::ElementList(sym(1).ElementList, sym(3).Elision->finish(),
sym(4).Expression);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 96: {
+case 102: {
AST::Elision *node = new (pool) AST::Elision();
node->commaToken = loc(1);
sym(1).Node = node;
} break;
-case 97: {
+case 103: {
AST::Elision *node = new (pool) AST::Elision(sym(1).Elision);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 98: {
+case 104: {
AST::PropertyNameAndValue *node = new (pool) AST::PropertyNameAndValue(
sym(1).PropertyName, sym(3).Expression);
node->colonToken = loc(2);
sym(1).Node = node;
} break;
-case 99: {
+case 105: {
AST::PropertyGetterSetter *node = new (pool) AST::PropertyGetterSetter(
sym(2).PropertyName, sym(6).FunctionBody);
node->getSetToken = loc(1);
@@ -749,7 +794,7 @@ case 99: {
sym(1).Node = node;
} break;
-case 100: {
+case 106: {
AST::PropertyGetterSetter *node = new (pool) AST::PropertyGetterSetter(
sym(2).PropertyName, sym(4).FormalParameterList, sym(7).FunctionBody);
node->getSetToken = loc(1);
@@ -760,56 +805,56 @@ case 100: {
sym(1).Node = node;
} break;
-case 101: {
+case 107: {
sym(1).Node = new (pool) AST::PropertyAssignmentList(sym(1).PropertyAssignment);
} break;
-case 102: {
+case 108: {
AST::PropertyAssignmentList *node = new (pool) AST::PropertyAssignmentList(
sym(1).PropertyAssignmentList, sym(3).PropertyAssignment);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 103: {
+case 109: {
AST::IdentifierPropertyName *node = new (pool) AST::IdentifierPropertyName(stringRef(1));
node->propertyNameToken = loc(1);
sym(1).Node = node;
} break;
-case 104: {
+case 110: {
AST::StringLiteralPropertyName *node = new (pool) AST::StringLiteralPropertyName(stringRef(1));
node->propertyNameToken = loc(1);
sym(1).Node = node;
} break;
-case 105: {
+case 111: {
AST::NumericLiteralPropertyName *node = new (pool) AST::NumericLiteralPropertyName(sym(1).dval);
node->propertyNameToken = loc(1);
sym(1).Node = node;
} break;
-case 106: {
+case 112: {
AST::IdentifierPropertyName *node = new (pool) AST::IdentifierPropertyName(stringRef(1));
node->propertyNameToken = loc(1);
sym(1).Node = node;
} break;
-case 142: {
+case 148: {
AST::ArrayMemberExpression *node = new (pool) AST::ArrayMemberExpression(sym(1).Expression, sym(3).Expression);
node->lbracketToken = loc(2);
node->rbracketToken = loc(4);
sym(1).Node = node;
} break;
-case 143: {
+case 149: {
AST::FieldMemberExpression *node = new (pool) AST::FieldMemberExpression(sym(1).Expression, stringRef(3));
node->dotToken = loc(2);
node->identifierToken = loc(3);
sym(1).Node = node;
} break;
-case 144: {
+case 150: {
AST::NewMemberExpression *node = new (pool) AST::NewMemberExpression(sym(2).Expression, sym(4).ArgumentList);
node->newToken = loc(1);
node->lparenToken = loc(3);
@@ -817,384 +862,384 @@ case 144: {
sym(1).Node = node;
} break;
-case 146: {
+case 152: {
AST::NewExpression *node = new (pool) AST::NewExpression(sym(2).Expression);
node->newToken = loc(1);
sym(1).Node = node;
} break;
-case 147: {
+case 153: {
AST::CallExpression *node = new (pool) AST::CallExpression(sym(1).Expression, sym(3).ArgumentList);
node->lparenToken = loc(2);
node->rparenToken = loc(4);
sym(1).Node = node;
} break;
-case 148: {
+case 154: {
AST::CallExpression *node = new (pool) AST::CallExpression(sym(1).Expression, sym(3).ArgumentList);
node->lparenToken = loc(2);
node->rparenToken = loc(4);
sym(1).Node = node;
} break;
-case 149: {
+case 155: {
AST::ArrayMemberExpression *node = new (pool) AST::ArrayMemberExpression(sym(1).Expression, sym(3).Expression);
node->lbracketToken = loc(2);
node->rbracketToken = loc(4);
sym(1).Node = node;
} break;
-case 150: {
+case 156: {
AST::FieldMemberExpression *node = new (pool) AST::FieldMemberExpression(sym(1).Expression, stringRef(3));
node->dotToken = loc(2);
node->identifierToken = loc(3);
sym(1).Node = node;
} break;
-case 151: {
+case 157: {
sym(1).Node = 0;
} break;
-case 152: {
+case 158: {
sym(1).Node = sym(1).ArgumentList->finish();
} break;
-case 153: {
+case 159: {
sym(1).Node = new (pool) AST::ArgumentList(sym(1).Expression);
} break;
-case 154: {
+case 160: {
AST::ArgumentList *node = new (pool) AST::ArgumentList(sym(1).ArgumentList, sym(3).Expression);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 158: {
+case 164: {
AST::PostIncrementExpression *node = new (pool) AST::PostIncrementExpression(sym(1).Expression);
node->incrementToken = loc(2);
sym(1).Node = node;
} break;
-case 159: {
+case 165: {
AST::PostDecrementExpression *node = new (pool) AST::PostDecrementExpression(sym(1).Expression);
node->decrementToken = loc(2);
sym(1).Node = node;
} break;
-case 161: {
+case 167: {
AST::DeleteExpression *node = new (pool) AST::DeleteExpression(sym(2).Expression);
node->deleteToken = loc(1);
sym(1).Node = node;
} break;
-case 162: {
+case 168: {
AST::VoidExpression *node = new (pool) AST::VoidExpression(sym(2).Expression);
node->voidToken = loc(1);
sym(1).Node = node;
} break;
-case 163: {
+case 169: {
AST::TypeOfExpression *node = new (pool) AST::TypeOfExpression(sym(2).Expression);
node->typeofToken = loc(1);
sym(1).Node = node;
} break;
-case 164: {
+case 170: {
AST::PreIncrementExpression *node = new (pool) AST::PreIncrementExpression(sym(2).Expression);
node->incrementToken = loc(1);
sym(1).Node = node;
} break;
-case 165: {
+case 171: {
AST::PreDecrementExpression *node = new (pool) AST::PreDecrementExpression(sym(2).Expression);
node->decrementToken = loc(1);
sym(1).Node = node;
} break;
-case 166: {
+case 172: {
AST::UnaryPlusExpression *node = new (pool) AST::UnaryPlusExpression(sym(2).Expression);
node->plusToken = loc(1);
sym(1).Node = node;
} break;
-case 167: {
+case 173: {
AST::UnaryMinusExpression *node = new (pool) AST::UnaryMinusExpression(sym(2).Expression);
node->minusToken = loc(1);
sym(1).Node = node;
} break;
-case 168: {
+case 174: {
AST::TildeExpression *node = new (pool) AST::TildeExpression(sym(2).Expression);
node->tildeToken = loc(1);
sym(1).Node = node;
} break;
-case 169: {
+case 175: {
AST::NotExpression *node = new (pool) AST::NotExpression(sym(2).Expression);
node->notToken = loc(1);
sym(1).Node = node;
} break;
-case 171: {
+case 177: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Mul, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 172: {
+case 178: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Div, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 173: {
+case 179: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Mod, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 175: {
+case 181: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Add, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 176: {
+case 182: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Sub, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 178: {
+case 184: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::LShift, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 179: {
+case 185: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::RShift, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 180: {
+case 186: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::URShift, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 182: {
+case 188: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Lt, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 183: {
+case 189: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Gt, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 184: {
+case 190: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Le, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 185: {
+case 191: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Ge, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 186: {
+case 192: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::InstanceOf, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 187: {
+case 193: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::In, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 189: {
+case 195: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Lt, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 190: {
+case 196: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Gt, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 191: {
+case 197: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Le, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 192: {
+case 198: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Ge, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 193: {
+case 199: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::InstanceOf, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 195: {
+case 201: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Equal, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 196: {
+case 202: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::NotEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 197: {
+case 203: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::StrictEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 198: {
+case 204: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::StrictNotEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 200: {
+case 206: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Equal, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 201: {
+case 207: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::NotEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 202: {
+case 208: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::StrictEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 203: {
+case 209: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::StrictNotEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 205: {
+case 211: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::BitAnd, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 207: {
+case 213: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::BitAnd, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 209: {
+case 215: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::BitXor, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 211: {
+case 217: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::BitXor, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 213: {
+case 219: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::BitOr, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 215: {
+case 221: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::BitOr, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 217: {
+case 223: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::And, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 219: {
+case 225: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::And, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 221: {
+case 227: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Or, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 223: {
+case 229: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
QSOperator::Or, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 225: {
+case 231: {
AST::ConditionalExpression *node = new (pool) AST::ConditionalExpression(sym(1).Expression,
sym(3).Expression, sym(5).Expression);
node->questionToken = loc(2);
@@ -1202,7 +1247,7 @@ case 225: {
sym(1).Node = node;
} break;
-case 227: {
+case 233: {
AST::ConditionalExpression *node = new (pool) AST::ConditionalExpression(sym(1).Expression,
sym(3).Expression, sym(5).Expression);
node->questionToken = loc(2);
@@ -1210,112 +1255,112 @@ case 227: {
sym(1).Node = node;
} break;
-case 229: {
+case 235: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
sym(2).ival, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 231: {
+case 237: {
AST::BinaryExpression *node = new (pool) AST::BinaryExpression(sym(1).Expression,
sym(2).ival, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 232: {
+case 238: {
sym(1).ival = QSOperator::Assign;
} break;
-case 233: {
+case 239: {
sym(1).ival = QSOperator::InplaceMul;
} break;
-case 234: {
+case 240: {
sym(1).ival = QSOperator::InplaceDiv;
} break;
-case 235: {
+case 241: {
sym(1).ival = QSOperator::InplaceMod;
} break;
-case 236: {
+case 242: {
sym(1).ival = QSOperator::InplaceAdd;
} break;
-case 237: {
+case 243: {
sym(1).ival = QSOperator::InplaceSub;
} break;
-case 238: {
+case 244: {
sym(1).ival = QSOperator::InplaceLeftShift;
} break;
-case 239: {
+case 245: {
sym(1).ival = QSOperator::InplaceRightShift;
} break;
-case 240: {
+case 246: {
sym(1).ival = QSOperator::InplaceURightShift;
} break;
-case 241: {
+case 247: {
sym(1).ival = QSOperator::InplaceAnd;
} break;
-case 242: {
+case 248: {
sym(1).ival = QSOperator::InplaceXor;
} break;
-case 243: {
+case 249: {
sym(1).ival = QSOperator::InplaceOr;
} break;
-case 245: {
+case 251: {
AST::Expression *node = new (pool) AST::Expression(sym(1).Expression, sym(3).Expression);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 246: {
+case 252: {
sym(1).Node = 0;
} break;
-case 249: {
+case 255: {
AST::Expression *node = new (pool) AST::Expression(sym(1).Expression, sym(3).Expression);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 250: {
+case 256: {
sym(1).Node = 0;
} break;
-case 267: {
+case 273: {
AST::Block *node = new (pool) AST::Block(sym(2).StatementList);
node->lbraceToken = loc(1);
node->rbraceToken = loc(3);
sym(1).Node = node;
} break;
-case 268: {
+case 274: {
sym(1).Node = new (pool) AST::StatementList(sym(1).Statement);
} break;
-case 269: {
+case 275: {
sym(1).Node = new (pool) AST::StatementList(sym(1).StatementList, sym(2).Statement);
} break;
-case 270: {
+case 276: {
sym(1).Node = 0;
} break;
-case 271: {
+case 277: {
sym(1).Node = sym(1).StatementList->finish ();
} break;
-case 273: {
+case 279: {
AST::VariableStatement *node = new (pool) AST::VariableStatement(
sym(2).VariableDeclarationList->finish (/*readOnly=*/sym(1).ival == T_CONST));
node->declarationKindToken = loc(1);
@@ -1323,76 +1368,76 @@ case 273: {
sym(1).Node = node;
} break;
-case 274: {
+case 280: {
sym(1).ival = T_CONST;
} break;
-case 275: {
+case 281: {
sym(1).ival = T_VAR;
} break;
-case 276: {
+case 282: {
sym(1).Node = new (pool) AST::VariableDeclarationList(sym(1).VariableDeclaration);
} break;
-case 277: {
+case 283: {
AST::VariableDeclarationList *node = new (pool) AST::VariableDeclarationList(
sym(1).VariableDeclarationList, sym(3).VariableDeclaration);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 278: {
+case 284: {
sym(1).Node = new (pool) AST::VariableDeclarationList(sym(1).VariableDeclaration);
} break;
-case 279: {
+case 285: {
sym(1).Node = new (pool) AST::VariableDeclarationList(sym(1).VariableDeclarationList, sym(3).VariableDeclaration);
} break;
-case 280: {
+case 286: {
AST::VariableDeclaration *node = new (pool) AST::VariableDeclaration(stringRef(1), sym(2).Expression);
node->identifierToken = loc(1);
sym(1).Node = node;
} break;
-case 281: {
+case 287: {
AST::VariableDeclaration *node = new (pool) AST::VariableDeclaration(stringRef(1), sym(2).Expression);
node->identifierToken = loc(1);
sym(1).Node = node;
} break;
-case 282: {
+case 288: {
// ### TODO: AST for initializer
sym(1) = sym(2);
} break;
-case 283: {
+case 289: {
sym(1).Node = 0;
} break;
-case 285: {
+case 291: {
// ### TODO: AST for initializer
sym(1) = sym(2);
} break;
-case 286: {
+case 292: {
sym(1).Node = 0;
} break;
-case 288: {
+case 294: {
AST::EmptyStatement *node = new (pool) AST::EmptyStatement();
node->semicolonToken = loc(1);
sym(1).Node = node;
} break;
-case 290: {
+case 296: {
AST::ExpressionStatement *node = new (pool) AST::ExpressionStatement(sym(1).Expression);
node->semicolonToken = loc(2);
sym(1).Node = node;
} break;
-case 291: {
+case 297: {
AST::IfStatement *node = new (pool) AST::IfStatement(sym(3).Expression, sym(5).Statement, sym(7).Statement);
node->ifToken = loc(1);
node->lparenToken = loc(2);
@@ -1401,7 +1446,7 @@ case 291: {
sym(1).Node = node;
} break;
-case 292: {
+case 298: {
AST::IfStatement *node = new (pool) AST::IfStatement(sym(3).Expression, sym(5).Statement);
node->ifToken = loc(1);
node->lparenToken = loc(2);
@@ -1409,7 +1454,7 @@ case 292: {
sym(1).Node = node;
} break;
-case 295: {
+case 301: {
AST::DoWhileStatement *node = new (pool) AST::DoWhileStatement(sym(2).Statement, sym(5).Expression);
node->doToken = loc(1);
node->whileToken = loc(3);
@@ -1419,7 +1464,7 @@ case 295: {
sym(1).Node = node;
} break;
-case 296: {
+case 302: {
AST::WhileStatement *node = new (pool) AST::WhileStatement(sym(3).Expression, sym(5).Statement);
node->whileToken = loc(1);
node->lparenToken = loc(2);
@@ -1427,7 +1472,7 @@ case 296: {
sym(1).Node = node;
} break;
-case 297: {
+case 303: {
AST::ForStatement *node = new (pool) AST::ForStatement(sym(3).Expression,
sym(5).Expression, sym(7).Expression, sym(9).Statement);
node->forToken = loc(1);
@@ -1438,7 +1483,7 @@ case 297: {
sym(1).Node = node;
} break;
-case 298: {
+case 304: {
AST::LocalForStatement *node = new (pool) AST::LocalForStatement(
sym(4).VariableDeclarationList->finish (/*readOnly=*/false), sym(6).Expression,
sym(8).Expression, sym(10).Statement);
@@ -1451,7 +1496,7 @@ case 298: {
sym(1).Node = node;
} break;
-case 299: {
+case 305: {
AST:: ForEachStatement *node = new (pool) AST::ForEachStatement(sym(3).Expression,
sym(5).Expression, sym(7).Statement);
node->forToken = loc(1);
@@ -1461,7 +1506,7 @@ case 299: {
sym(1).Node = node;
} break;
-case 300: {
+case 306: {
AST::LocalForEachStatement *node = new (pool) AST::LocalForEachStatement(
sym(4).VariableDeclaration, sym(6).Expression, sym(8).Statement);
node->forToken = loc(1);
@@ -1472,14 +1517,14 @@ case 300: {
sym(1).Node = node;
} break;
-case 302: {
+case 308: {
AST::ContinueStatement *node = new (pool) AST::ContinueStatement();
node->continueToken = loc(1);
node->semicolonToken = loc(2);
sym(1).Node = node;
} break;
-case 304: {
+case 310: {
AST::ContinueStatement *node = new (pool) AST::ContinueStatement(stringRef(2));
node->continueToken = loc(1);
node->identifierToken = loc(2);
@@ -1487,14 +1532,14 @@ case 304: {
sym(1).Node = node;
} break;
-case 306: {
+case 312: {
AST::BreakStatement *node = new (pool) AST::BreakStatement(QStringRef());
node->breakToken = loc(1);
node->semicolonToken = loc(2);
sym(1).Node = node;
} break;
-case 308: {
+case 314: {
AST::BreakStatement *node = new (pool) AST::BreakStatement(stringRef(2));
node->breakToken = loc(1);
node->identifierToken = loc(2);
@@ -1502,14 +1547,14 @@ case 308: {
sym(1).Node = node;
} break;
-case 310: {
+case 316: {
AST::ReturnStatement *node = new (pool) AST::ReturnStatement(sym(2).Expression);
node->returnToken = loc(1);
node->semicolonToken = loc(3);
sym(1).Node = node;
} break;
-case 311: {
+case 317: {
AST::WithStatement *node = new (pool) AST::WithStatement(sym(3).Expression, sym(5).Statement);
node->withToken = loc(1);
node->lparenToken = loc(2);
@@ -1517,7 +1562,7 @@ case 311: {
sym(1).Node = node;
} break;
-case 312: {
+case 318: {
AST::SwitchStatement *node = new (pool) AST::SwitchStatement(sym(3).Expression, sym(5).CaseBlock);
node->switchToken = loc(1);
node->lparenToken = loc(2);
@@ -1525,83 +1570,83 @@ case 312: {
sym(1).Node = node;
} break;
-case 313: {
+case 319: {
AST::CaseBlock *node = new (pool) AST::CaseBlock(sym(2).CaseClauses);
node->lbraceToken = loc(1);
node->rbraceToken = loc(3);
sym(1).Node = node;
} break;
-case 314: {
+case 320: {
AST::CaseBlock *node = new (pool) AST::CaseBlock(sym(2).CaseClauses, sym(3).DefaultClause, sym(4).CaseClauses);
node->lbraceToken = loc(1);
node->rbraceToken = loc(5);
sym(1).Node = node;
} break;
-case 315: {
+case 321: {
sym(1).Node = new (pool) AST::CaseClauses(sym(1).CaseClause);
} break;
-case 316: {
+case 322: {
sym(1).Node = new (pool) AST::CaseClauses(sym(1).CaseClauses, sym(2).CaseClause);
} break;
-case 317: {
+case 323: {
sym(1).Node = 0;
} break;
-case 318: {
+case 324: {
sym(1).Node = sym(1).CaseClauses->finish ();
} break;
-case 319: {
+case 325: {
AST::CaseClause *node = new (pool) AST::CaseClause(sym(2).Expression, sym(4).StatementList);
node->caseToken = loc(1);
node->colonToken = loc(3);
sym(1).Node = node;
} break;
-case 320: {
+case 326: {
AST::DefaultClause *node = new (pool) AST::DefaultClause(sym(3).StatementList);
node->defaultToken = loc(1);
node->colonToken = loc(2);
sym(1).Node = node;
} break;
-case 321: {
+case 327: {
AST::LabelledStatement *node = new (pool) AST::LabelledStatement(stringRef(1), sym(3).Statement);
node->identifierToken = loc(1);
node->colonToken = loc(2);
sym(1).Node = node;
} break;
-case 323: {
+case 329: {
AST::ThrowStatement *node = new (pool) AST::ThrowStatement(sym(2).Expression);
node->throwToken = loc(1);
node->semicolonToken = loc(3);
sym(1).Node = node;
} break;
-case 324: {
+case 330: {
AST::TryStatement *node = new (pool) AST::TryStatement(sym(2).Statement, sym(3).Catch);
node->tryToken = loc(1);
sym(1).Node = node;
} break;
-case 325: {
+case 331: {
AST::TryStatement *node = new (pool) AST::TryStatement(sym(2).Statement, sym(3).Finally);
node->tryToken = loc(1);
sym(1).Node = node;
} break;
-case 326: {
+case 332: {
AST::TryStatement *node = new (pool) AST::TryStatement(sym(2).Statement, sym(3).Catch, sym(4).Finally);
node->tryToken = loc(1);
sym(1).Node = node;
} break;
-case 327: {
+case 333: {
AST::Catch *node = new (pool) AST::Catch(stringRef(3), sym(5).Block);
node->catchToken = loc(1);
node->lparenToken = loc(2);
@@ -1610,20 +1655,20 @@ case 327: {
sym(1).Node = node;
} break;
-case 328: {
+case 334: {
AST::Finally *node = new (pool) AST::Finally(sym(2).Block);
node->finallyToken = loc(1);
sym(1).Node = node;
} break;
-case 330: {
+case 336: {
AST::DebuggerStatement *node = new (pool) AST::DebuggerStatement();
node->debuggerToken = loc(1);
node->semicolonToken = loc(2);
sym(1).Node = node;
} break;
-case 332: {
+case 338: {
AST::FunctionDeclaration *node = new (pool) AST::FunctionDeclaration(stringRef(2), sym(4).FormalParameterList, sym(7).FunctionBody);
node->functionToken = loc(1);
node->identifierToken = loc(2);
@@ -1634,7 +1679,7 @@ case 332: {
sym(1).Node = node;
} break;
-case 333: {
+case 339: {
AST::FunctionExpression *node = new (pool) AST::FunctionExpression(stringRef(2), sym(4).FormalParameterList, sym(7).FunctionBody);
node->functionToken = loc(1);
if (! stringRef(2).isNull())
@@ -1646,7 +1691,7 @@ case 333: {
sym(1).Node = node;
} break;
-case 334: {
+case 340: {
AST::FunctionExpression *node = new (pool) AST::FunctionExpression(QStringRef(), sym(3).FormalParameterList, sym(6).FunctionBody);
node->functionToken = loc(1);
node->lparenToken = loc(2);
@@ -1656,56 +1701,56 @@ case 334: {
sym(1).Node = node;
} break;
-case 335: {
+case 341: {
AST::FormalParameterList *node = new (pool) AST::FormalParameterList(stringRef(1));
node->identifierToken = loc(1);
sym(1).Node = node;
} break;
-case 336: {
+case 342: {
AST::FormalParameterList *node = new (pool) AST::FormalParameterList(sym(1).FormalParameterList, stringRef(3));
node->commaToken = loc(2);
node->identifierToken = loc(3);
sym(1).Node = node;
} break;
-case 337: {
+case 343: {
sym(1).Node = 0;
} break;
-case 338: {
+case 344: {
sym(1).Node = sym(1).FormalParameterList->finish ();
} break;
-case 339: {
+case 345: {
sym(1).Node = 0;
} break;
-case 341: {
+case 347: {
sym(1).Node = new (pool) AST::FunctionBody(sym(1).SourceElements->finish ());
} break;
-case 343: {
+case 349: {
sym(1).Node = new (pool) AST::Program(sym(1).SourceElements->finish ());
} break;
-case 344: {
+case 350: {
sym(1).Node = new (pool) AST::SourceElements(sym(1).SourceElement);
} break;
-case 345: {
+case 351: {
sym(1).Node = new (pool) AST::SourceElements(sym(1).SourceElements, sym(2).SourceElement);
} break;
-case 346: {
+case 352: {
sym(1).Node = new (pool) AST::StatementSourceElement(sym(1).Statement);
} break;
-case 347: {
+case 353: {
sym(1).Node = new (pool) AST::FunctionSourceElement(sym(1).FunctionDeclaration);
} break;
-case 348: {
+case 354: {
sym(1).Node = 0;
} break;
diff --git a/src/tools/qdoc/qmlparser/qqmljsparser_p.h b/src/tools/qdoc/qmlparser/qqmljsparser_p.h
index 6edfd844d0..bf963718fb 100644
--- a/src/tools/qdoc/qmlparser/qqmljsparser_p.h
+++ b/src/tools/qdoc/qmlparser/qqmljsparser_p.h
@@ -112,7 +112,8 @@ public:
AST::VariableDeclarationList *VariableDeclarationList;
AST::UiProgram *UiProgram;
- AST::UiImportList *UiImportList;
+ AST::UiHeaderItemList *UiHeaderItemList;
+ AST::UiPragma *UiPragma;
AST::UiImport *UiImport;
AST::UiParameterList *UiParameterList;
AST::UiPublicMember *UiPublicMember;
@@ -125,6 +126,7 @@ public:
AST::UiObjectMemberList *UiObjectMemberList;
AST::UiArrayMemberList *UiArrayMemberList;
AST::UiQualifiedId *UiQualifiedId;
+ AST::UiQualifiedPragmaId *UiQualifiedPragmaId;
};
public:
@@ -206,6 +208,7 @@ protected:
{ return location_stack [tos + index - 1]; }
AST::UiQualifiedId *reparseAsQualifiedId(AST::ExpressionNode *expr);
+ AST::UiQualifiedPragmaId *reparseAsQualifiedPragmaId(AST::ExpressionNode *expr);
protected:
Engine *driver;
@@ -245,9 +248,9 @@ protected:
-#define J_SCRIPT_REGEXPLITERAL_RULE1 81
+#define J_SCRIPT_REGEXPLITERAL_RULE1 87
-#define J_SCRIPT_REGEXPLITERAL_RULE2 82
+#define J_SCRIPT_REGEXPLITERAL_RULE2 88
QT_QML_END_NAMESPACE
diff --git a/src/tools/qdoc/qmlvisitor.cpp b/src/tools/qdoc/qmlvisitor.cpp
index 323c312eb5..ec1ef41256 100644
--- a/src/tools/qdoc/qmlvisitor.cpp
+++ b/src/tools/qdoc/qmlvisitor.cpp
@@ -404,7 +404,6 @@ void QmlDocVisitor::applyMetacommands(QQmlJS::AST::SourceLocation,
}
}
else if (command == COMMAND_INTERNAL) {
- node->setAccess(Node::Private);
node->setStatus(Node::Internal);
}
else if (command == COMMAND_OBSOLETE) {
@@ -465,6 +464,7 @@ bool QmlDocVisitor::visit(QQmlJS::AST::UiObjectDefinition *definition)
QmlClassNode *component = new QmlClassNode(current, name);
component->setTitle(name);
component->setImportList(importList);
+ importList.clear();
if (applyDocumentation(definition->firstSourceLocation(), component)) {
QmlClassNode::addInheritedBy(type, component);
component->setQmlBaseName(type);
@@ -489,34 +489,21 @@ void QmlDocVisitor::endVisit(QQmlJS::AST::UiObjectDefinition *definition)
lastEndOffset = definition->lastSourceLocation().end();
}
-/*!
- Note that the imports list can be traversed by iteration to obtain
- all the imports in the document at once, having found just one:
-
- *it = imports; it; it = it->next
-
- */
-bool QmlDocVisitor::visit(QQmlJS::AST::UiImportList *imports)
+bool QmlDocVisitor::visit(QQmlJS::AST::UiImport *import)
{
- while (imports != 0) {
- QQmlJS::AST::UiImport* imp = imports->import;
-
- QString name = document.mid(imp->fileNameToken.offset, imp->fileNameToken.length);
- if (name[0] == '\"')
- name = name.mid(1, name.length()-2);
- QString version = document.mid(imp->versionToken.offset, imp->versionToken.length);
- QString importId = document.mid(imp->importIdToken.offset, imp->importIdToken.length);
- QString importUri = getFullyQualifiedId(imp->importUri);
- importList.append(ImportRec(name, version, importId, importUri));
- imports = imports->next;
- }
+ QString name = document.mid(import->fileNameToken.offset, import->fileNameToken.length);
+ if (name[0] == '\"')
+ name = name.mid(1, name.length()-2);
+ QString version = document.mid(import->versionToken.offset, import->versionToken.length);
+ QString importId = document.mid(import->importIdToken.offset, import->importIdToken.length);
+ QString importUri = getFullyQualifiedId(import->importUri);
+ QString reconstructed = importUri + QString(" ") + version;
+ importList.append(ImportRec(name, version, importId, importUri));
+
return true;
}
-/*!
- End the visit of the imports list.
- */
-void QmlDocVisitor::endVisit(QQmlJS::AST::UiImportList *definition)
+void QmlDocVisitor::endVisit(QQmlJS::AST::UiImport *definition)
{
lastEndOffset = definition->lastSourceLocation().end();
}
diff --git a/src/tools/qdoc/qmlvisitor.h b/src/tools/qdoc/qmlvisitor.h
index cdb7ae7391..feeeb13497 100644
--- a/src/tools/qdoc/qmlvisitor.h
+++ b/src/tools/qdoc/qmlvisitor.h
@@ -75,8 +75,8 @@ public:
const QSet<QString> &topics);
virtual ~QmlDocVisitor();
- bool visit(QQmlJS::AST::UiImportList *imports);
- void endVisit(QQmlJS::AST::UiImportList *definition);
+ bool visit(QQmlJS::AST::UiImport *import);
+ void endVisit(QQmlJS::AST::UiImport *definition);
bool visit(QQmlJS::AST::UiObjectDefinition *definition);
void endVisit(QQmlJS::AST::UiObjectDefinition *definition);