summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/declarative/modules/builtin-version.qml3
-rw-r--r--examples/declarative/modules/installed-qualified.qml4
-rw-r--r--examples/declarative/modules/installed-version.qml7
-rw-r--r--examples/declarative/modules/installed.qml2
-rw-r--r--examples/declarative/modules/local-qualified.qml7
-rw-r--r--examples/declarative/modules/local.qml2
-rw-r--r--examples/declarative/modules/remote-qualified.qml4
-rw-r--r--examples/declarative/modules/remote-zipped.qml4
-rw-r--r--examples/declarative/modules/wrong-installed-version.qml2
-rw-r--r--examples/declarative/modules/wrong-installed.qml3
-rw-r--r--examples/declarative/modules/wrong-local-qualified.qml4
-rw-r--r--examples/declarative/modules/wrong-local.qml6
-rw-r--r--examples/declarative/modules/zipped-qualified.qml5
-rw-r--r--examples/declarative/modules/zipped.qml5
-rw-r--r--src/declarative/qml/parser/qmljs.g33
-rw-r--r--src/declarative/qml/parser/qmljsast_p.h1
-rw-r--r--src/declarative/qml/parser/qmljsgrammar.cpp1834
-rw-r--r--src/declarative/qml/parser/qmljsgrammar_p.h22
-rw-r--r--src/declarative/qml/parser/qmljsparser.cpp987
-rw-r--r--src/declarative/qml/parser/qmljsparser_p.h12
-rw-r--r--src/declarative/qml/qmlcompositetypemanager.cpp31
-rw-r--r--src/declarative/qml/qmlengine.cpp138
-rw-r--r--src/declarative/qml/qmlengine.h7
-rw-r--r--src/declarative/qml/qmlengine_p.h1
-rw-r--r--src/declarative/qml/qmlscriptparser.cpp7
-rw-r--r--src/declarative/qml/qmlscriptparser_p.h7
-rw-r--r--tools/qmlviewer/main.cpp5
-rw-r--r--tools/qmlviewer/qmlviewer.cpp5
28 files changed, 2145 insertions, 1003 deletions
diff --git a/examples/declarative/modules/builtin-version.qml b/examples/declarative/modules/builtin-version.qml
new file mode 100644
index 0000000..78eb860
--- /dev/null
+++ b/examples/declarative/modules/builtin-version.qml
@@ -0,0 +1,3 @@
+import com.nokia.Qt 4.7
+Rect {}
+// and later... SuperRect{}
diff --git a/examples/declarative/modules/installed-qualified.qml b/examples/declarative/modules/installed-qualified.qml
new file mode 100644
index 0000000..c3217cf
--- /dev/null
+++ b/examples/declarative/modules/installed-qualified.qml
@@ -0,0 +1,4 @@
+import com.nokia.Foo as F
+Item {
+ F.Bar { }
+}
diff --git a/examples/declarative/modules/installed-version.qml b/examples/declarative/modules/installed-version.qml
new file mode 100644
index 0000000..4ba9a2b
--- /dev/null
+++ b/examples/declarative/modules/installed-version.qml
@@ -0,0 +1,7 @@
+import com.nokia.Foo 1.6
+import com.nokia.Foo 1.7 as NewFoo
+VerticalLayout {
+ Bar { }
+ Baz { }
+ NewFoo.Bar { }
+}
diff --git a/examples/declarative/modules/installed.qml b/examples/declarative/modules/installed.qml
new file mode 100644
index 0000000..4ce5f76
--- /dev/null
+++ b/examples/declarative/modules/installed.qml
@@ -0,0 +1,2 @@
+import com.nokia.Foo
+Foo.Bar { }
diff --git a/examples/declarative/modules/local-qualified.qml b/examples/declarative/modules/local-qualified.qml
new file mode 100644
index 0000000..36af092
--- /dev/null
+++ b/examples/declarative/modules/local-qualified.qml
@@ -0,0 +1,7 @@
+import "local" as X
+import "local/SubLib" as Y
+
+VerticalLayout {
+ X.Foo { }
+ Y.Bar { }
+}
diff --git a/examples/declarative/modules/local.qml b/examples/declarative/modules/local.qml
new file mode 100644
index 0000000..70c90df
--- /dev/null
+++ b/examples/declarative/modules/local.qml
@@ -0,0 +1,2 @@
+import "local"
+Foo { }
diff --git a/examples/declarative/modules/remote-qualified.qml b/examples/declarative/modules/remote-qualified.qml
new file mode 100644
index 0000000..d807af7
--- /dev/null
+++ b/examples/declarative/modules/remote-qualified.qml
@@ -0,0 +1,4 @@
+import "http://qml.nokia.com/Clock.zip"
+Item {
+ Clock.Hand { ... }
+}
diff --git a/examples/declarative/modules/remote-zipped.qml b/examples/declarative/modules/remote-zipped.qml
new file mode 100644
index 0000000..aee838f
--- /dev/null
+++ b/examples/declarative/modules/remote-zipped.qml
@@ -0,0 +1,4 @@
+import "http://qml.nokia.com/Clock.zip"
+Item {
+ Clock { ... }
+}
diff --git a/examples/declarative/modules/wrong-installed-version.qml b/examples/declarative/modules/wrong-installed-version.qml
new file mode 100644
index 0000000..3d2e3e5
--- /dev/null
+++ b/examples/declarative/modules/wrong-installed-version.qml
@@ -0,0 +1,2 @@
+import com.nokia.Foo 1.5
+Baz { } // Not available in 1.5, only 1.6!
diff --git a/examples/declarative/modules/wrong-installed.qml b/examples/declarative/modules/wrong-installed.qml
new file mode 100644
index 0000000..b0f2355
--- /dev/null
+++ b/examples/declarative/modules/wrong-installed.qml
@@ -0,0 +1,3 @@
+import com.nokia.NonExistent
+
+Rect {}
diff --git a/examples/declarative/modules/wrong-local-qualified.qml b/examples/declarative/modules/wrong-local-qualified.qml
new file mode 100644
index 0000000..92cbbf3
--- /dev/null
+++ b/examples/declarative/modules/wrong-local-qualified.qml
@@ -0,0 +1,4 @@
+import "local" as X
+
+// WRONG: if imported qualified, must qualify
+Foo { }
diff --git a/examples/declarative/modules/wrong-local.qml b/examples/declarative/modules/wrong-local.qml
new file mode 100644
index 0000000..6cb00c4
--- /dev/null
+++ b/examples/declarative/modules/wrong-local.qml
@@ -0,0 +1,6 @@
+import "local"
+
+// WRONG - cannot use qualification to access "local sublibraries".
+// (would have to import lib.SubLib)
+SubLib.Bar {
+}
diff --git a/examples/declarative/modules/zipped-qualified.qml b/examples/declarative/modules/zipped-qualified.qml
new file mode 100644
index 0000000..101df14
--- /dev/null
+++ b/examples/declarative/modules/zipped-qualified.qml
@@ -0,0 +1,5 @@
+// Not currently supported
+import "zips/ClockPack.zip" as CP
+Item {
+ CP.Clock { ... }
+}
diff --git a/examples/declarative/modules/zipped.qml b/examples/declarative/modules/zipped.qml
new file mode 100644
index 0000000..9a0775c
--- /dev/null
+++ b/examples/declarative/modules/zipped.qml
@@ -0,0 +1,5 @@
+// Not currently supported
+import "zips/ClockPack.zip"
+Item {
+ Clock { ... }
+}
diff --git a/src/declarative/qml/parser/qmljs.g b/src/declarative/qml/parser/qmljs.g
index 3ed6ee2..8297c08 100644
--- a/src/declarative/qml/parser/qmljs.g
+++ b/src/declarative/qml/parser/qmljs.g
@@ -557,7 +557,7 @@ UiImport: T_IMPORT UiQualifiedId T_AUTOMATIC_SEMICOLON;
UiImport: T_IMPORT UiQualifiedId T_SEMICOLON;
/.
case $rule_number: {
- AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId);
+ AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId->finish());
node->importToken = loc(1);
node->fileNameToken = loc(2);
node->semicolonToken = loc(3);
@@ -565,11 +565,40 @@ case $rule_number: {
} break;
./
+UiImport: T_IMPORT UiQualifiedId T_NUMERIC_LITERAL T_AUTOMATIC_SEMICOLON;
+UiImport: T_IMPORT UiQualifiedId T_NUMERIC_LITERAL T_SEMICOLON;
+/.
+case $rule_number: {
+ AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId->finish());
+ node->importToken = loc(1);
+ node->fileNameToken = loc(2);
+ node->versionToken = loc(3);
+ node->semicolonToken = loc(4);
+ sym(1).Node = node;
+} break;
+./
+
+UiImport: T_IMPORT UiQualifiedId T_NUMERIC_LITERAL T_AS JsIdentifier T_AUTOMATIC_SEMICOLON;
+UiImport: T_IMPORT UiQualifiedId T_NUMERIC_LITERAL T_AS JsIdentifier T_SEMICOLON;
+/.
+case $rule_number: {
+ AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId->finish());
+ node->importId = sym(5).sval;
+ node->importToken = loc(1);
+ node->fileNameToken = loc(2);
+ node->versionToken = loc(3);
+ node->asToken = loc(4);
+ node->importIdToken = loc(5);
+ node->semicolonToken = loc(6);
+ sym(1).Node = node;
+} break;
+./
+
UiImport: T_IMPORT UiQualifiedId T_AS JsIdentifier T_AUTOMATIC_SEMICOLON;
UiImport: T_IMPORT UiQualifiedId T_AS JsIdentifier T_SEMICOLON;
/.
case $rule_number: {
- AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId);
+ AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId->finish());
node->importId = sym(4).sval;
node->importToken = loc(1);
node->fileNameToken = loc(2);
diff --git a/src/declarative/qml/parser/qmljsast_p.h b/src/declarative/qml/parser/qmljsast_p.h
index bde78c0..6d269ac 100644
--- a/src/declarative/qml/parser/qmljsast_p.h
+++ b/src/declarative/qml/parser/qmljsast_p.h
@@ -2236,6 +2236,7 @@ public:
NameId *importId;
SourceLocation importToken;
SourceLocation fileNameToken;
+ SourceLocation versionToken;
SourceLocation asToken;
SourceLocation importIdToken;
SourceLocation semicolonToken;
diff --git a/src/declarative/qml/parser/qmljsgrammar.cpp b/src/declarative/qml/parser/qmljsgrammar.cpp
index 5ff2ed8..ff25d65 100644
--- a/src/declarative/qml/parser/qmljsgrammar.cpp
+++ b/src/declarative/qml/parser/qmljsgrammar.cpp
@@ -2,7 +2,7 @@
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the QtCore module of the Qt Toolkit.
**
@@ -35,7 +35,7 @@
** met: http://www.gnu.org/copyleft/gpl.html.
**
** If you are unsure which license is appropriate for your use, please
-** contact the sales department at http://www.qtsoftware.com/contact.
+** contact the sales department at qt-sales@nokia.com.
** $QT_END_LICENSE$
**
****************************************************************************/
@@ -52,800 +52,1198 @@ const char *const QmlJSGrammar::spell [] = {
")", ";", 0, "*", "*=", "string literal", "property", "signal", "switch", "this",
"throw", "~", "try", "typeof", "var", "void", "while", "with", "^", "^=",
"null", "true", "false", "const", "debugger", "reserved word", "multiline string literal", "public", "import", "as",
- 0, 0};
+ 0, 0,
+#ifndef QLALR_NO_QMLJSGRAMMAR_DEBUG_INFO
+"UiProgram", "UiImportListOpt", "UiRootMember", "Empty", "UiImportList", "UiImport", "JsIdentifier", "UiQualifiedId",
+ "UiObjectDefinition", "UiObjectMemberList", "UiObjectMember", "UiArrayMemberList", "UiObjectInitializer", "UiMultilineStringLiteral", "UiMultilineStringStatement", "Expression", "Block", "EmptyStatement",
+ "ExpressionStatement", "DebuggerStatement", "IfStatement", "UiPropertyType", "UiParameterListOpt", "UiParameterList", "FunctionDeclaration", "VariableStatement", "PrimaryExpression", "Elision",
+ "ElementList", "PropertyNameAndValueListOpt", "PropertyNameAndValueList", "AssignmentExpression", "PropertyName", "ReservedIdentifier", "PropertyIdentifier", "MemberExpression", "FunctionExpression", "ArgumentListOpt",
+ "NewExpression", "CallExpression", "ArgumentList", "LeftHandSideExpression", "PostfixExpression", "UnaryExpression", "MultiplicativeExpression", "AdditiveExpression", "ShiftExpression", "RelationalExpression",
+ "RelationalExpressionNotIn", "EqualityExpression", "EqualityExpressionNotIn", "BitwiseANDExpression", "BitwiseANDExpressionNotIn", "BitwiseXORExpression", "BitwiseXORExpressionNotIn", "BitwiseORExpression", "BitwiseORExpressionNotIn", "LogicalANDExpression",
+ "LogicalANDExpressionNotIn", "LogicalORExpression", "LogicalORExpressionNotIn", "ConditionalExpression", "ConditionalExpressionNotIn", "AssignmentExpressionNotIn", "AssignmentOperator", "ExpressionOpt", "ExpressionNotIn", "ExpressionNotInOpt",
+ "Statement", "IterationStatement", "ContinueStatement", "BreakStatement", "ReturnStatement", "WithStatement", "LabelledStatement", "SwitchStatement", "ThrowStatement", "TryStatement",
+ "StatementListOpt", "StatementList", "VariableDeclarationKind", "VariableDeclarationList", "VariableDeclaration", "VariableDeclarationListNotIn", "VariableDeclarationNotIn", "InitialiserOpt", "InitialiserNotInOpt", "Initialiser",
+ "InitialiserNotIn", "CaseBlock", "CaseClausesOpt", "DefaultClause", "CaseClauses", "CaseClause", "Catch", "Finally", "FormalParameterListOpt", "FunctionBodyOpt",
+ "IdentifierOpt", "FormalParameterList", "FunctionBody", "SourceElements", "SourceElement", "$accept"
+#endif // QLALR_NO_QMLJSGRAMMAR_DEBUG_INFO
+};
const int QmlJSGrammar::lhs [] = {
92, 93, 93, 96, 96, 97, 97, 97, 97, 97,
- 97, 97, 97, 95, 94, 101, 101, 103, 103, 104,
- 104, 100, 102, 102, 105, 106, 106, 102, 102, 102,
- 102, 102, 102, 102, 113, 113, 113, 114, 114, 115,
- 115, 102, 102, 102, 102, 102, 102, 102, 102, 102,
- 102, 102, 102, 99, 99, 98, 98, 98, 118, 118,
- 118, 118, 118, 118, 118, 118, 118, 118, 118, 118,
- 118, 118, 118, 118, 118, 99, 99, 120, 120, 120,
- 120, 119, 119, 122, 122, 124, 124, 124, 124, 124,
- 124, 125, 125, 125, 125, 125, 125, 125, 125, 125,
+ 97, 97, 97, 97, 97, 97, 97, 95, 94, 101,
+ 101, 103, 103, 104, 104, 100, 102, 102, 105, 106,
+ 106, 102, 102, 102, 102, 102, 102, 102, 113, 113,
+ 113, 114, 114, 115, 115, 102, 102, 102, 102, 102,
+ 102, 102, 102, 102, 102, 102, 102, 99, 99, 98,
+ 98, 98, 118, 118, 118, 118, 118, 118, 118, 118,
+ 118, 118, 118, 118, 118, 118, 118, 118, 118, 99,
+ 99, 120, 120, 120, 120, 119, 119, 122, 122, 124,
+ 124, 124, 124, 124, 124, 125, 125, 125, 125, 125,
125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
125, 125, 125, 125, 125, 125, 125, 125, 125, 125,
- 125, 125, 126, 126, 127, 127, 127, 127, 127, 130,
- 130, 131, 131, 131, 131, 129, 129, 132, 132, 133,
- 133, 134, 134, 134, 135, 135, 135, 135, 135, 135,
- 135, 135, 135, 135, 136, 136, 136, 136, 137, 137,
- 137, 138, 138, 138, 138, 139, 139, 139, 139, 139,
- 139, 139, 140, 140, 140, 140, 140, 140, 141, 141,
- 141, 141, 141, 142, 142, 142, 142, 142, 143, 143,
- 144, 144, 145, 145, 146, 146, 147, 147, 148, 148,
- 149, 149, 150, 150, 151, 151, 152, 152, 153, 153,
- 154, 154, 123, 123, 155, 155, 156, 156, 156, 156,
- 156, 156, 156, 156, 156, 156, 156, 156, 107, 107,
- 157, 157, 158, 158, 159, 159, 160, 160, 160, 160,
+ 125, 125, 125, 125, 125, 125, 126, 126, 127, 127,
+ 127, 127, 127, 130, 130, 131, 131, 131, 131, 129,
+ 129, 132, 132, 133, 133, 134, 134, 134, 135, 135,
+ 135, 135, 135, 135, 135, 135, 135, 135, 136, 136,
+ 136, 136, 137, 137, 137, 138, 138, 138, 138, 139,
+ 139, 139, 139, 139, 139, 139, 140, 140, 140, 140,
+ 140, 140, 141, 141, 141, 141, 141, 142, 142, 142,
+ 142, 142, 143, 143, 144, 144, 145, 145, 146, 146,
+ 147, 147, 148, 148, 149, 149, 150, 150, 151, 151,
+ 152, 152, 153, 153, 154, 154, 123, 123, 155, 155,
+ 156, 156, 156, 156, 156, 156, 156, 156, 156, 156,
+ 156, 156, 107, 107, 157, 157, 158, 158, 159, 159,
160, 160, 160, 160, 160, 160, 160, 160, 160, 160,
- 160, 108, 171, 171, 170, 170, 117, 117, 172, 172,
- 173, 173, 175, 175, 174, 176, 179, 177, 177, 180,
- 178, 178, 109, 110, 110, 112, 112, 161, 161, 161,
- 161, 161, 161, 161, 162, 162, 162, 162, 163, 163,
- 163, 163, 164, 164, 165, 167, 181, 181, 184, 184,
- 182, 182, 185, 183, 166, 166, 166, 168, 168, 169,
- 169, 169, 186, 187, 111, 111, 116, 128, 191, 191,
- 188, 188, 189, 189, 192, 193, 193, 194, 194, 190,
- 190, 121, 121, 195};
+ 160, 160, 160, 160, 160, 108, 171, 171, 170, 170,
+ 117, 117, 172, 172, 173, 173, 175, 175, 174, 176,
+ 179, 177, 177, 180, 178, 178, 109, 110, 110, 112,
+ 112, 161, 161, 161, 161, 161, 161, 161, 162, 162,
+ 162, 162, 163, 163, 163, 163, 164, 164, 165, 167,
+ 181, 181, 184, 184, 182, 182, 185, 183, 166, 166,
+ 166, 168, 168, 169, 169, 169, 186, 187, 111, 111,
+ 116, 128, 191, 191, 188, 188, 189, 189, 192, 193,
+ 193, 194, 194, 190, 190, 121, 121, 195};
const int QmlJSGrammar:: rhs[] = {
2, 1, 1, 1, 2, 3, 3, 5, 5, 3,
- 3, 5, 5, 0, 1, 1, 2, 1, 3, 2,
- 3, 2, 1, 5, 1, 2, 2, 4, 3, 3,
- 3, 3, 3, 3, 1, 1, 1, 0, 1, 2,
- 4, 5, 2, 4, 4, 5, 5, 6, 6, 7,
- 7, 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, 3, 1, 2, 3,
- 4, 1, 2, 3, 5, 1, 1, 1, 1, 1,
+ 3, 4, 4, 6, 6, 5, 5, 0, 1, 1,
+ 2, 1, 3, 2, 3, 2, 1, 5, 1, 2,
+ 2, 4, 3, 3, 3, 3, 3, 3, 1, 1,
+ 1, 0, 1, 2, 4, 5, 2, 4, 4, 5,
+ 5, 6, 6, 7, 7, 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,
+ 3, 1, 2, 3, 4, 1, 2, 3, 5, 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, 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, 3,
1, 3, 1, 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, 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, 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, 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, 3,
- 3, 4, 5, 2, 2, 2, 8, 8, 1, 3,
- 0, 1, 0, 1, 1, 1, 2, 1, 1, 0,
- 1, 0, 1, 2};
+ 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, 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, 3, 3, 4, 5, 2, 2, 2,
+ 8, 8, 1, 3, 0, 1, 0, 1, 1, 1,
+ 2, 1, 1, 0, 1, 0, 1, 2};
+
+
+#ifndef QLALR_NO_QMLJSGRAMMAR_DEBUG_INFO
+const int QmlJSGrammar::rule_info [] = {
+ 92, 93, 94
+ , 93, 95
+ , 93, 96
+ , 96, 97
+ , 96, 96, 97
+ , 97, 88, 65, 62
+ , 97, 88, 65, 61
+ , 97, 88, 65, 89, 98, 62
+ , 97, 88, 65, 89, 98, 61
+ , 97, 88, 99, 62
+ , 97, 88, 99, 61
+ , 97, 88, 99, 47, 62
+ , 97, 88, 99, 47, 61
+ , 97, 88, 99, 47, 89, 98, 62
+ , 97, 88, 99, 47, 89, 98, 61
+ , 97, 88, 99, 89, 98, 62
+ , 97, 88, 99, 89, 98, 61
+ , 95
+ , 94, 100
+ , 101, 102
+ , 101, 101, 102
+ , 103, 100
+ , 103, 103, 8, 100
+ , 104, 33, 55
+ , 104, 33, 101, 55
+ , 100, 99, 104
+ , 102, 100
+ , 102, 99, 7, 34, 103, 56
+ , 105, 86
+ , 106, 105, 62
+ , 106, 105, 61
+ , 102, 99, 7, 107, 104
+ , 102, 99, 7, 108
+ , 102, 99, 7, 109
+ , 102, 99, 7, 110
+ , 102, 99, 7, 111
+ , 102, 99, 7, 106
+ , 102, 99, 7, 112
+ , 113, 74
+ , 113, 85
+ , 113, 29
+ , 114
+ , 114, 115
+ , 115, 113, 98
+ , 115, 115, 8, 113, 98
+ , 102, 67, 29, 36, 114, 60
+ , 102, 67, 29
+ , 102, 66, 113, 29, 62
+ , 102, 66, 113, 29, 61
+ , 102, 10, 66, 113, 29, 62
+ , 102, 10, 66, 113, 29, 61
+ , 102, 66, 113, 29, 7, 107, 62
+ , 102, 66, 113, 29, 7, 107, 61
+ , 102, 10, 66, 113, 29, 7, 107, 62
+ , 102, 10, 66, 113, 29, 7, 107, 61
+ , 102, 116
+ , 102, 117
+ , 99, 85
+ , 99, 59
+ , 98, 29
+ , 98, 66
+ , 98, 67
+ , 118, 69
+ , 118, 98
+ , 118, 80
+ , 118, 81
+ , 118, 82
+ , 118, 47
+ , 118, 65
+ , 118, 12
+ , 118, 13
+ , 118, 34, 56
+ , 118, 34, 119, 56
+ , 118, 34, 120, 56
+ , 118, 34, 120, 8, 56
+ , 118, 34, 120, 8, 119, 56
+ , 118, 33, 121, 55
+ , 118, 33, 122, 8, 55
+ , 118, 36, 107, 60
+ , 99, 98
+ , 99, 99, 15, 98
+ , 120, 123
+ , 120, 119, 123
+ , 120, 120, 8, 123
+ , 120, 120, 8, 119, 123
+ , 119, 8
+ , 119, 119, 8
+ , 122, 124, 7, 123
+ , 122, 122, 8, 124, 7, 123
+ , 124, 29
+ , 124, 67
+ , 124, 66
+ , 124, 65
+ , 124, 47
+ , 124, 125
+ , 125, 4
+ , 125, 5
+ , 125, 6
+ , 125, 9
+ , 125, 10
+ , 125, 11
+ , 125, 14
+ , 125, 16
+ , 125, 82
+ , 125, 20
+ , 125, 21
+ , 125, 22
+ , 125, 30
+ , 125, 31
+ , 125, 32
+ , 125, 43
+ , 125, 80
+ , 125, 59
+ , 125, 68
+ , 125, 69
+ , 125, 70
+ , 125, 81
+ , 125, 72
+ , 125, 73
+ , 125, 74
+ , 125, 75
+ , 125, 76
+ , 125, 83
+ , 125, 84
+ , 125, 85
+ , 125, 77
+ , 126, 98
+ , 126, 125
+ , 127, 118
+ , 127, 128
+ , 127, 127, 34, 107, 56
+ , 127, 127, 15, 126
+ , 127, 43, 127, 36, 129, 60
+ , 130, 127
+ , 130, 43, 130
+ , 131, 127, 36, 129, 60
+ , 131, 131, 36, 129, 60
+ , 131, 131, 34, 107, 56
+ , 131, 131, 15, 126
+ , 129
+ , 129, 132
+ , 132, 123
+ , 132, 132, 8, 123
+ , 133, 130
+ , 133, 131
+ , 134, 133
+ , 134, 133, 53
+ , 134, 133, 42
+ , 135, 134
+ , 135, 11, 135
+ , 135, 75, 135
+ , 135, 73, 135
+ , 135, 53, 135
+ , 135, 42, 135
+ , 135, 51, 135
+ , 135, 40, 135
+ , 135, 71, 135
+ , 135, 44, 135
+ , 136, 135
+ , 136, 136, 63, 135
+ , 136, 136, 12, 135
+ , 136, 136, 57, 135
+ , 137, 136
+ , 137, 137, 51, 136
+ , 137, 137, 40, 136
+ , 138, 137
+ , 138, 138, 38, 137
+ , 138, 138, 25, 137
+ , 138, 138, 27, 137
+ , 139, 138
+ , 139, 139, 37, 138
+ , 139, 139, 24, 138
+ , 139, 139, 35, 138
+ , 139, 139, 23, 138
+ , 139, 139, 32, 138
+ , 139, 139, 31, 138
+ , 140, 138
+ , 140, 140, 37, 138
+ , 140, 140, 24, 138
+ , 140, 140, 35, 138
+ , 140, 140, 23, 138
+ , 140, 140, 32, 138
+ , 141, 139
+ , 141, 141, 18, 139
+ , 141, 141, 45, 139
+ , 141, 141, 19, 139
+ , 141, 141, 46, 139
+ , 142, 140
+ , 142, 142, 18, 140
+ , 142, 142, 45, 140
+ , 142, 142, 19, 140
+ , 142, 142, 46, 140
+ , 143, 141
+ , 143, 143, 1, 141
+ , 144, 142
+ , 144, 144, 1, 142
+ , 145, 143
+ , 145, 145, 78, 143
+ , 146, 144
+ , 146, 146, 78, 144
+ , 147, 145
+ , 147, 147, 48, 145
+ , 148, 146
+ , 148, 148, 48, 146
+ , 149, 147
+ , 149, 149, 2, 147
+ , 150, 148
+ , 150, 150, 2, 148
+ , 151, 149
+ , 151, 151, 50, 149
+ , 152, 150
+ , 152, 152, 50, 150
+ , 153, 151
+ , 153, 151, 54, 123, 7, 123
+ , 154, 152
+ , 154, 152, 54, 155, 7, 155
+ , 123, 153
+ , 123, 133, 156, 123
+ , 155, 154
+ , 155, 133, 156, 155
+ , 156, 17
+ , 156, 64
+ , 156, 13
+ , 156, 58
+ , 156, 52
+ , 156, 41
+ , 156, 39
+ , 156, 26
+ , 156, 28
+ , 156, 3
+ , 156, 79
+ , 156, 49
+ , 107, 123
+ , 107, 107, 8, 123
+ , 157
+ , 157, 107
+ , 158, 155
+ , 158, 158, 8, 155
+ , 159
+ , 159, 158
+ , 160, 108
+ , 160, 117
+ , 160, 109
+ , 160, 110
+ , 160, 112
+ , 160, 161
+ , 160, 162
+ , 160, 163
+ , 160, 164
+ , 160, 165
+ , 160, 166
+ , 160, 167
+ , 160, 168
+ , 160, 169
+ , 160, 111
+ , 108, 33, 170, 55
+ , 171, 160
+ , 171, 171, 160
+ , 170
+ , 170, 171
+ , 117, 172, 173, 62
+ , 117, 172, 173, 61
+ , 172, 83
+ , 172, 74
+ , 173, 174
+ , 173, 173, 8, 174
+ , 175, 176
+ , 175, 175, 8, 176
+ , 174, 98, 177
+ , 176, 98, 178
+ , 179, 17, 123
+ , 177
+ , 177, 179
+ , 180, 17, 155
+ , 178
+ , 178, 180
+ , 109, 61
+ , 110, 107, 62
+ , 110, 107, 61
+ , 112, 30, 36, 107, 60, 160, 16, 160
+ , 112, 30, 36, 107, 60, 160
+ , 161, 14, 160, 76, 36, 107, 60, 62
+ , 161, 14, 160, 76, 36, 107, 60, 61
+ , 161, 76, 36, 107, 60, 160
+ , 161, 21, 36, 159, 61, 157, 61, 157, 60, 160
+ , 161, 21, 36, 74, 175, 61, 157, 61, 157, 60, 160
+ , 161, 21, 36, 133, 31, 107, 60, 160
+ , 161, 21, 36, 74, 176, 31, 107, 60, 160
+ , 162, 9, 62
+ , 162, 9, 61
+ , 162, 9, 98, 62
+ , 162, 9, 98, 61
+ , 163, 4, 62
+ , 163, 4, 61
+ , 163, 4, 98, 62
+ , 163, 4, 98, 61
+ , 164, 59, 157, 62
+ , 164, 59, 157, 61
+ , 165, 77, 36, 107, 60, 160
+ , 167, 68, 36, 107, 60, 181
+ , 181, 33, 182, 55
+ , 181, 33, 182, 183, 182, 55
+ , 184, 185
+ , 184, 184, 185
+ , 182
+ , 182, 184
+ , 185, 5, 107, 7, 170
+ , 183, 10, 7, 170
+ , 166, 67, 7, 160
+ , 166, 66, 7, 160
+ , 166, 29, 7, 160
+ , 168, 70, 107, 62
+ , 168, 70, 107, 61
+ , 169, 72, 108, 186
+ , 169, 72, 108, 187
+ , 169, 72, 108, 186, 187
+ , 186, 6, 36, 98, 60, 108
+ , 187, 20, 108
+ , 111, 84, 62
+ , 111, 84, 61
+ , 116, 22, 98, 36, 188, 60, 33, 189, 55
+ , 128, 22, 190, 36, 188, 60, 33, 189, 55
+ , 191, 98
+ , 191, 191, 8, 98
+ , 188
+ , 188, 191
+ , 189
+ , 189, 192
+ , 192, 193
+ , 193, 194
+ , 193, 193, 194
+ , 194, 160
+ , 194, 116
+ , 190
+ , 190, 98
+ , 121
+ , 121, 122
+ , 195, 92, 0};
+
+const int QmlJSGrammar::rule_index [] = {
+ 0, 3, 5, 7, 9, 12, 16, 20, 26, 32,
+ 36, 40, 45, 50, 57, 64, 70, 76, 77, 79,
+ 81, 84, 86, 90, 93, 97, 100, 102, 108, 110,
+ 113, 116, 121, 125, 129, 133, 137, 141, 145, 147,
+ 149, 151, 152, 154, 157, 162, 168, 171, 176, 181,
+ 187, 193, 200, 207, 215, 223, 225, 227, 229, 231,
+ 233, 235, 237, 239, 241, 243, 245, 247, 249, 251,
+ 253, 255, 258, 262, 266, 271, 277, 281, 286, 290,
+ 292, 296, 298, 301, 305, 310, 312, 315, 319, 325,
+ 327, 329, 331, 333, 335, 337, 339, 341, 343, 345,
+ 347, 349, 351, 353, 355, 357, 359, 361, 363, 365,
+ 367, 369, 371, 373, 375, 377, 379, 381, 383, 385,
+ 387, 389, 391, 393, 395, 397, 399, 401, 403, 405,
+ 407, 412, 416, 422, 424, 427, 432, 437, 442, 446,
+ 447, 449, 451, 455, 457, 459, 461, 464, 467, 469,
+ 472, 475, 478, 481, 484, 487, 490, 493, 496, 498,
+ 502, 506, 510, 512, 516, 520, 522, 526, 530, 534,
+ 536, 540, 544, 548, 552, 556, 560, 562, 566, 570,
+ 574, 578, 582, 584, 588, 592, 596, 600, 602, 606,
+ 610, 614, 618, 620, 624, 626, 630, 632, 636, 638,
+ 642, 644, 648, 650, 654, 656, 660, 662, 666, 668,
+ 672, 674, 678, 680, 686, 688, 694, 696, 700, 702,
+ 706, 708, 710, 712, 714, 716, 718, 720, 722, 724,
+ 726, 728, 730, 732, 736, 737, 739, 741, 745, 746,
+ 748, 750, 752, 754, 756, 758, 760, 762, 764, 766,
+ 768, 770, 772, 774, 776, 778, 782, 784, 787, 788,
+ 790, 794, 798, 800, 802, 804, 808, 810, 814, 817,
+ 820, 823, 824, 826, 829, 830, 832, 834, 837, 840,
+ 848, 854, 862, 870, 876, 886, 897, 905, 914, 917,
+ 920, 924, 928, 931, 934, 938, 942, 946, 950, 956,
+ 962, 966, 972, 974, 977, 978, 980, 985, 989, 993,
+ 997, 1001, 1005, 1009, 1013, 1017, 1022, 1028, 1031, 1034,
+ 1037, 1046, 1055, 1057, 1061, 1062, 1064, 1065, 1067, 1069,
+ 1071, 1074, 1076, 1078, 1079, 1081, 1082, 1084};
+#endif // QLALR_NO_QMLJSGRAMMAR_DEBUG_INFO
const int QmlJSGrammar::action_default [] = {
- 14, 2, 0, 4, 3, 0, 0, 76, 56, 57,
- 54, 55, 58, 0, 0, 0, 6, 7, 0, 8,
- 9, 0, 10, 0, 11, 0, 12, 13, 77, 5,
- 15, 0, 1, 0, 22, 52, 259, 0, 0, 57,
- 20, 58, 260, 23, 16, 0, 0, 0, 53, 0,
- 37, 36, 35, 0, 0, 46, 0, 47, 162, 229,
- 193, 201, 197, 141, 213, 189, 0, 126, 60, 142,
- 205, 209, 130, 159, 140, 145, 125, 179, 166, 0,
- 66, 67, 63, 330, 332, 0, 0, 0, 0, 0,
- 0, 61, 64, 0, 0, 65, 59, 0, 62, 0,
- 0, 155, 0, 0, 142, 161, 144, 143, 0, 0,
- 0, 157, 158, 156, 160, 0, 190, 0, 0, 0,
- 0, 180, 0, 0, 0, 0, 0, 0, 170, 0,
- 0, 0, 164, 165, 163, 168, 172, 171, 169, 167,
- 182, 181, 183, 0, 198, 0, 194, 0, 0, 136,
- 123, 135, 124, 92, 93, 94, 119, 95, 120, 96,
- 97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
- 107, 108, 121, 109, 110, 111, 112, 113, 114, 115,
- 116, 117, 118, 122, 0, 0, 134, 230, 137, 0,
- 138, 0, 139, 133, 50, 51, 0, 226, 219, 217,
- 224, 225, 223, 222, 228, 221, 220, 218, 227, 214,
- 0, 202, 0, 0, 206, 0, 0, 210, 0, 0,
- 136, 128, 0, 127, 0, 132, 146, 0, 331, 321,
- 322, 0, 319, 0, 320, 0, 323, 237, 244, 243,
- 251, 239, 0, 240, 324, 0, 329, 241, 242, 247,
- 245, 326, 325, 328, 248, 0, 0, 0, 0, 0,
- 330, 56, 0, 332, 57, 231, 273, 58, 0, 0,
- 0, 0, 0, 249, 250, 238, 246, 274, 275, 318,
- 327, 0, 289, 290, 291, 292, 0, 285, 286, 287,
- 288, 315, 316, 0, 0, 0, 0, 0, 278, 279,
- 235, 233, 195, 203, 199, 215, 191, 236, 0, 142,
- 207, 211, 184, 173, 0, 0, 192, 0, 0, 0,
- 0, 185, 0, 0, 0, 0, 0, 177, 175, 178,
- 176, 174, 187, 186, 188, 0, 200, 0, 196, 0,
- 234, 142, 0, 216, 231, 232, 0, 231, 0, 0,
- 281, 0, 0, 0, 283, 0, 204, 0, 0, 208,
- 0, 0, 212, 271, 0, 263, 272, 266, 0, 270,
- 0, 231, 264, 0, 231, 0, 0, 282, 0, 0,
- 0, 284, 331, 321, 0, 0, 323, 0, 317, 0,
- 307, 0, 0, 0, 277, 0, 276, 0, 333, 0,
- 91, 253, 256, 0, 92, 259, 95, 120, 97, 98,
- 63, 102, 103, 56, 104, 107, 61, 64, 57, 231,
- 58, 65, 110, 59, 112, 62, 114, 115, 260, 117,
- 118, 122, 0, 84, 0, 0, 86, 90, 88, 74,
- 87, 89, 0, 85, 73, 254, 252, 130, 131, 136,
- 0, 129, 0, 306, 0, 293, 294, 0, 305, 0,
- 0, 0, 296, 301, 299, 302, 0, 0, 300, 301,
- 0, 297, 0, 298, 255, 304, 0, 255, 303, 0,
- 308, 309, 0, 255, 310, 311, 0, 0, 312, 0,
- 0, 0, 313, 314, 148, 147, 0, 0, 0, 280,
- 0, 0, 0, 295, 78, 0, 0, 82, 68, 0,
- 70, 80, 0, 71, 81, 83, 72, 79, 69, 0,
- 75, 152, 150, 154, 151, 149, 153, 0, 0, 0,
- 44, 0, 45, 0, 48, 49, 43, 38, 39, 0,
- 0, 0, 0, 41, 42, 40, 21, 17, 0, 29,
- 32, 30, 0, 31, 34, 255, 0, 25, 0, 33,
- 28, 92, 259, 95, 120, 97, 98, 63, 102, 103,
- 56, 104, 107, 61, 64, 57, 231, 58, 65, 110,
- 59, 112, 62, 114, 115, 260, 117, 118, 122, 60,
- 0, 18, 0, 24, 19, 26, 27, 268, 261, 0,
- 269, 265, 0, 267, 257, 0, 258, 262, 334};
+ 18, 2, 0, 4, 3, 0, 0, 80, 60, 61,
+ 58, 59, 62, 0, 0, 0, 6, 7, 0, 8,
+ 9, 0, 10, 0, 0, 11, 0, 16, 17, 81,
+ 0, 12, 13, 0, 14, 15, 5, 19, 0, 1,
+ 0, 26, 56, 263, 0, 0, 61, 24, 62, 264,
+ 27, 20, 0, 0, 0, 57, 0, 41, 40, 39,
+ 0, 0, 50, 0, 51, 166, 233, 197, 205, 201,
+ 145, 217, 193, 0, 130, 64, 146, 209, 213, 134,
+ 163, 144, 149, 129, 183, 170, 0, 70, 71, 67,
+ 334, 336, 0, 0, 0, 0, 0, 0, 65, 68,
+ 0, 0, 69, 63, 0, 66, 0, 0, 159, 0,
+ 0, 146, 165, 148, 147, 0, 0, 0, 161, 162,
+ 160, 164, 0, 194, 0, 0, 0, 0, 184, 0,
+ 0, 0, 0, 0, 0, 174, 0, 0, 0, 168,
+ 169, 167, 172, 176, 175, 173, 171, 186, 185, 187,
+ 0, 202, 0, 198, 0, 0, 140, 127, 139, 128,
+ 96, 97, 98, 123, 99, 124, 100, 101, 102, 103,
+ 104, 105, 106, 107, 108, 109, 110, 111, 112, 125,
+ 113, 114, 115, 116, 117, 118, 119, 120, 121, 122,
+ 126, 0, 0, 138, 234, 141, 0, 142, 0, 143,
+ 137, 54, 55, 0, 230, 223, 221, 228, 229, 227,
+ 226, 232, 225, 224, 222, 231, 218, 0, 206, 0,
+ 0, 210, 0, 0, 214, 0, 0, 140, 132, 0,
+ 131, 0, 136, 150, 0, 335, 325, 326, 0, 323,
+ 0, 324, 0, 327, 241, 248, 247, 255, 243, 0,
+ 244, 328, 0, 333, 245, 246, 251, 249, 330, 329,
+ 332, 252, 0, 0, 0, 0, 0, 334, 60, 0,
+ 336, 61, 235, 277, 62, 0, 0, 0, 0, 0,
+ 253, 254, 242, 250, 278, 279, 322, 331, 0, 293,
+ 294, 295, 296, 0, 289, 290, 291, 292, 319, 320,
+ 0, 0, 0, 0, 0, 282, 283, 239, 237, 199,
+ 207, 203, 219, 195, 240, 0, 146, 211, 215, 188,
+ 177, 0, 0, 196, 0, 0, 0, 0, 189, 0,
+ 0, 0, 0, 0, 181, 179, 182, 180, 178, 191,
+ 190, 192, 0, 204, 0, 200, 0, 238, 146, 0,
+ 220, 235, 236, 0, 235, 0, 0, 285, 0, 0,
+ 0, 287, 0, 208, 0, 0, 212, 0, 0, 216,
+ 275, 0, 267, 276, 270, 0, 274, 0, 235, 268,
+ 0, 235, 0, 0, 286, 0, 0, 0, 288, 335,
+ 325, 0, 0, 327, 0, 321, 0, 311, 0, 0,
+ 0, 281, 0, 280, 0, 337, 0, 95, 257, 260,
+ 0, 96, 263, 99, 124, 101, 102, 67, 106, 107,
+ 60, 108, 111, 65, 68, 61, 235, 62, 69, 114,
+ 63, 116, 66, 118, 119, 264, 121, 122, 126, 0,
+ 88, 0, 0, 90, 94, 92, 78, 91, 93, 0,
+ 89, 77, 258, 256, 134, 135, 140, 0, 133, 0,
+ 310, 0, 297, 298, 0, 309, 0, 0, 0, 300,
+ 305, 303, 306, 0, 0, 304, 305, 0, 301, 0,
+ 302, 259, 308, 0, 259, 307, 0, 312, 313, 0,
+ 259, 314, 315, 0, 0, 316, 0, 0, 0, 317,
+ 318, 152, 151, 0, 0, 0, 284, 0, 0, 0,
+ 299, 82, 0, 0, 86, 72, 0, 74, 84, 0,
+ 75, 85, 87, 76, 83, 73, 0, 79, 156, 154,
+ 158, 155, 153, 157, 0, 0, 0, 48, 0, 49,
+ 0, 52, 53, 47, 42, 43, 0, 0, 0, 0,
+ 45, 46, 44, 25, 21, 0, 33, 36, 34, 0,
+ 35, 38, 259, 0, 29, 0, 37, 32, 96, 263,
+ 99, 124, 101, 102, 67, 106, 107, 60, 108, 111,
+ 65, 68, 61, 235, 62, 69, 114, 63, 116, 66,
+ 118, 119, 264, 121, 122, 126, 64, 0, 22, 0,
+ 28, 23, 30, 31, 272, 265, 0, 273, 269, 0,
+ 271, 261, 0, 262, 266, 338};
const int QmlJSGrammar::goto_default [] = {
- 6, 5, 32, 1, 4, 3, 68, 31, 43, 45,
- 44, 590, 34, 558, 559, 242, 237, 241, 243, 240,
- 247, 528, 539, 538, 246, 275, 76, 506, 505, 399,
- 398, 59, 397, 400, 151, 72, 67, 189, 74, 63,
- 188, 69, 75, 101, 73, 58, 78, 77, 312, 65,
- 306, 60, 302, 62, 304, 61, 303, 70, 310, 71,
- 311, 64, 305, 301, 342, 454, 307, 308, 401, 248,
- 239, 238, 250, 276, 249, 254, 273, 274, 403, 402,
- 47, 599, 598, 364, 365, 601, 367, 600, 366, 462,
- 466, 469, 465, 464, 484, 485, 231, 245, 227, 230,
- 244, 252, 251, 0};
+ 6, 5, 39, 1, 4, 3, 75, 38, 50, 52,
+ 51, 597, 41, 565, 566, 249, 244, 248, 250, 247,
+ 254, 535, 546, 545, 253, 282, 83, 513, 512, 406,
+ 405, 66, 404, 407, 158, 79, 74, 196, 81, 70,
+ 195, 76, 82, 108, 80, 65, 85, 84, 319, 72,
+ 313, 67, 309, 69, 311, 68, 310, 77, 317, 78,
+ 318, 71, 312, 308, 349, 461, 314, 315, 408, 255,
+ 246, 245, 257, 283, 256, 261, 280, 281, 410, 409,
+ 54, 606, 605, 371, 372, 608, 374, 607, 373, 469,
+ 473, 476, 472, 471, 491, 492, 238, 252, 234, 237,
+ 251, 259, 258, 0};
const int QmlJSGrammar::action_index [] = {
- -11, -92, 395, -92, 10, 364, 99, -92, -92, -92,
- -92, -92, -92, 135, 285, 214, -92, -92, 93, -92,
- -92, 214, -92, 214, -92, 101, -92, -92, -92, -92,
- -92, 97, -92, 462, -92, -92, -92, 72, 198, 193,
- -92, 75, -92, -92, -92, 485, 299, 171, -92, 174,
- -92, -92, -92, 74, 192, -92, 761, -92, 85, -92,
- 96, 73, 14, 227, -92, 292, 131, -92, -92, 600,
- 94, 123, 168, 176, -92, -92, -92, 511, 157, 761,
- -92, -92, -92, 139, 1604, 1263, 761, 761, 761, 680,
- 761, -92, -92, 761, 761, -92, -92, 761, -92, 761,
- 761, -92, 761, 761, 90, 205, -92, -92, 761, 761,
- 761, -92, -92, -92, 195, 761, 305, 761, 761, 761,
- 761, 511, 761, 761, 761, 761, 761, 761, 203, 761,
- 761, 761, 119, 77, 91, 191, 185, 188, 194, 222,
- 415, 405, 432, 761, 9, 761, 81, 1516, 761, 761,
- -92, -92, -92, -92, -92, -92, -92, -92, -92, -92,
+ 7, -92, 389, -92, -10, 343, 168, -92, -92, -92,
+ -92, -92, -92, 233, 308, 178, -92, -92, 86, -92,
+ -92, 173, -92, 151, 137, -92, 108, -92, -92, -92,
+ 184, -92, -92, 105, -92, -92, -92, -92, 82, -92,
+ 456, -92, -92, -92, 44, 190, 195, -92, -27, -92,
+ -92, -92, 431, 208, 187, -92, 214, -92, -92, -92,
+ -15, 224, -92, 764, -92, 109, -92, 8, -47, -78,
+ 194, -92, 376, 143, -92, -92, 603, 6, 85, 186,
+ 213, -92, -92, -92, 514, 302, 764, -92, -92, -92,
+ 237, 1607, 1014, 764, 764, 764, 683, 764, -92, -92,
+ 764, 764, -92, -92, 764, -92, 764, 764, -92, 764,
+ 764, 133, 220, -92, -92, 764, 764, 764, -92, -92,
+ -92, 149, 764, 376, 764, 764, 764, 764, 412, 764,
+ 764, 764, 764, 764, 764, 302, 764, 764, 764, 131,
+ 152, 145, 302, 235, 235, 302, 235, 514, 427, 392,
+ 764, -73, 764, 11, 1519, 764, 764, -92, -92, -92,
-92, -92, -92, -92, -92, -92, -92, -92, -92, -92,
-92, -92, -92, -92, -92, -92, -92, -92, -92, -92,
- -92, -92, -92, -92, 108, 761, -92, -92, 82, 67,
- -92, 761, -92, -92, -92, -92, 761, -92, -92, -92,
-92, -92, -92, -92, -92, -92, -92, -92, -92, -92,
- 761, 70, 761, 761, 78, 71, 761, -92, 1516, 761,
- 761, -92, 102, -92, 62, -92, -92, 59, -92, 214,
- 68, 60, -92, 255, -92, 55, 1780, -92, -92, -92,
- -92, -92, 232, -92, -92, 69, -92, -92, -92, -92,
- -92, -92, 1780, -92, -92, 344, 359, 95, 1868, 65,
- 246, 76, 58, 2044, 64, 761, -92, 63, 48, 761,
- 40, 39, 49, -92, -92, -92, -92, -92, -92, -92,
- -92, 104, -92, -92, -92, -92, 86, -92, -92, -92,
- -92, -92, -92, -4, 50, 761, 129, 118, -92, -92,
- 842, -92, 88, 43, -12, -92, 373, 66, 32, 536,
- 151, 124, 442, 264, 250, 761, 373, 761, 761, 761,
- 761, 329, 761, 761, 761, 761, 761, 244, 270, 280,
- 271, 245, 352, 442, 335, 761, -74, 761, 4, 761,
- -92, 600, 761, -92, 761, 2, -52, 761, -40, 1868,
- -92, 761, 127, 1868, -92, 761, -34, 761, 761, 15,
- 12, 761, -92, -1, 111, -16, -92, -92, 761, -92,
- 261, 761, -92, -31, 761, -36, 1868, -92, 761, 107,
- 1868, -92, -14, 237, -49, -32, 1780, -23, -92, 1868,
- -92, 761, 92, 1868, -10, 1868, -92, 51, 54, 26,
- -92, -92, 1868, 24, 319, 57, 333, 79, 761, 1868,
- 56, 29, 263, 42, 19, 680, 30, 31, -92, 927,
- -92, 28, 0, 22, 761, 33, 13, 761, 36, 761,
- 5, -3, 761, -92, 1692, 44, -92, -92, -92, -92,
- -92, -92, 761, -92, -92, -92, -92, 175, -92, 761,
- -58, -92, 1868, -92, 89, -92, -92, 1868, -92, 761,
- 100, 35, -92, 23, -92, 16, 116, 761, -92, 8,
- 11, -92, -28, -92, 1868, -92, 98, 1868, -92, 226,
- -92, -92, 103, 1868, -13, -92, -24, -8, -92, 169,
- -37, -7, -92, -92, -92, -92, 761, 125, 1868, -92,
- 761, 126, 1868, -92, -92, 138, 1011, -92, -92, 1179,
- -92, -92, 1095, -92, -92, -92, -92, -92, -92, 121,
- -92, -92, -92, -92, -92, -92, -92, -5, 18, 224,
- -92, 761, -92, 212, -92, -92, -33, 172, 61, -60,
- 214, 140, 214, -92, -92, -92, -92, -92, 1428, -92,
- -92, -92, 307, -92, -92, 1956, 1347, -92, 83, -92,
- -92, 316, 47, 336, 114, 761, 1868, 52, 21, 290,
- 46, 20, 680, 45, 53, -92, 927, -92, 37, 6,
- 38, 761, 41, 17, 761, 27, 761, 3, 25, 34,
- 105, -92, 342, -92, -92, -92, -92, -9, -92, 183,
- -92, -92, 761, -92, -92, 214, -92, -92, -92,
+ -92, 94, 764, -92, -92, 91, 78, -92, 764, -92,
+ -92, -92, -92, 764, -92, -92, -92, -92, -92, -92,
+ -92, -92, -92, -92, -92, -92, -92, 764, -41, 764,
+ 764, 45, 37, 764, -92, 1519, 764, 764, -92, 120,
+ -92, 41, -92, -92, 73, -92, 171, 54, 26, -92,
+ 258, -92, 52, 1871, -92, -92, -92, -92, -92, 253,
+ -92, -92, 2, -92, -92, -92, -92, -92, -92, 1871,
+ -92, -92, 346, 364, 126, 1783, 30, 250, 56, 25,
+ 2047, 58, 764, -92, 61, 40, 764, 39, 35, 34,
+ -92, -92, -92, -92, -92, -92, -92, -92, 122, -92,
+ -92, -92, -92, 128, -92, -92, -92, -92, -92, -92,
+ 27, 70, 764, 118, 132, -92, -92, 930, -92, 89,
+ 65, 67, -92, 320, 83, -2, 516, 92, 141, 445,
+ 235, 192, 764, 312, 764, 764, 764, 764, 445, 764,
+ 764, 764, 764, 764, 235, 235, 235, 235, 235, 336,
+ 445, 445, 764, -67, 764, 76, 764, -92, 603, 764,
+ -92, 764, -4, -37, 764, -12, 1783, -92, 764, 119,
+ 1783, -92, 764, 3, 764, 764, 50, 46, 764, -92,
+ 33, 136, 9, -92, -92, 764, -92, 245, 764, -92,
+ -30, 764, -22, 1783, -92, 764, 117, 1783, -92, -3,
+ 234, 69, 12, 1871, -23, -92, 1783, -92, 764, 97,
+ 1783, 20, 1783, -92, 28, 29, -13, -92, -92, 1783,
+ -21, 280, 18, 372, 81, 764, 1783, 19, -9, 284,
+ 23, -8, 683, 22, 36, -92, 849, -92, 42, 24,
+ 49, 764, 48, 21, 764, 32, 764, 5, 10, 764,
+ -92, 1695, 16, -92, -92, -92, -92, -92, -92, 764,
+ -92, -92, -92, -92, 193, -92, 764, -57, -92, 1783,
+ -92, 111, -92, -92, 1783, -92, 764, 114, -16, -92,
+ 13, -92, 17, 110, 764, -92, 15, 14, -92, -45,
+ -92, 1783, -92, 116, 1783, -92, 206, -92, -92, 112,
+ 1783, -7, -92, -20, -14, -92, 205, -54, -18, -92,
+ -92, -92, -92, 764, 99, 1783, -92, 764, 103, 1783,
+ -92, -92, 106, 1266, -92, -92, 1098, -92, -92, 1182,
+ -92, -92, -92, -92, -92, -92, 104, -92, -92, -92,
+ -92, -92, -92, -92, 60, 64, 174, -92, 764, -92,
+ 203, -92, -92, 72, 217, 90, 71, 226, 204, 181,
+ -92, -92, -92, -92, -92, 1431, -92, -92, -92, 274,
+ -92, -92, 1959, 1350, -92, 79, -92, -92, 323, 80,
+ 325, 93, 764, 1783, 62, 38, 297, 51, 31, 683,
+ 57, 66, -92, 849, -92, 68, 43, 74, 764, 75,
+ 59, 764, 77, 764, 53, 47, 55, 96, -92, 315,
+ -92, -92, -92, -92, 63, -92, 244, -92, -92, 764,
+ -92, -92, 252, -92, -92, -92,
- -104, -104, 87, -104, 69, 82, -104, -104, -104, -104,
- -104, -104, -104, -104, -104, 49, -104, -104, -104, -104,
- -104, 45, -104, 50, -104, -104, -104, -104, -104, -104,
- -104, -104, -104, 253, -104, -104, -104, -104, 26, -104,
- -104, -104, -104, -104, -104, 261, -104, 1, -104, -7,
- -104, -104, -104, -104, -104, -104, -11, -104, -104, -104,
- -104, -104, -104, -104, -104, -104, -104, -104, -104, -38,
- -104, -104, -104, -104, -104, -104, -104, -104, -104, 135,
- -104, -104, -104, 11, -104, -16, 8, 139, 147, 148,
- 144, -104, -104, 138, 127, -104, -104, 115, -104, 119,
- 150, -104, 120, 125, -104, -104, -104, -104, 116, 232,
- 172, -104, -104, -104, -104, 171, -104, 151, 154, 158,
- 161, -104, 163, 165, 143, 126, 64, 68, -104, 80,
- 86, 61, -104, -104, -104, -104, -104, -104, -104, -104,
- -104, -104, -104, 63, -104, 67, -104, 74, 20, 6,
+ -104, -104, 82, -104, 6, 78, -104, -104, -104, -104,
+ -104, -104, -104, -104, -104, 28, -104, -104, -104, -104,
+ -104, 15, -104, 11, -104, -104, -104, -104, -104, -104,
+ 19, -104, -104, -104, -104, -104, -104, -104, -104, -104,
+ 343, -104, -104, -104, -104, 27, -104, -104, -104, -104,
+ -104, -104, 260, -104, 26, -104, -6, -104, -104, -104,
+ -104, -104, -104, -11, -104, -104, -104, -104, -104, -104,
+ -104, -104, -104, -104, -104, -104, -56, -104, -104, -104,
+ -104, -104, -104, -104, -104, -104, 137, -104, -104, -104,
+ 60, -104, 50, 64, 141, 144, 90, 147, -104, -104,
+ 126, 106, -104, -104, 109, -104, 105, 110, -104, 182,
+ 121, -104, -104, -104, -104, 113, 101, 171, -104, -104,
+ -104, -104, 164, -104, 170, 152, 150, 151, -104, 154,
+ 99, 155, 161, 81, 55, -104, 57, 66, 63, -104,
-104, -104, -104, -104, -104, -104, -104, -104, -104, -104,
+ 80, -104, 69, -104, 93, 36, 38, -104, -104, -104,
-104, -104, -104, -104, -104, -104, -104, -104, -104, -104,
-104, -104, -104, -104, -104, -104, -104, -104, -104, -104,
- -104, -104, -104, -104, -104, 28, -104, -104, -104, -104,
- -104, 14, -104, -104, -104, -104, 12, -104, -104, -104,
-104, -104, -104, -104, -104, -104, -104, -104, -104, -104,
- 89, -104, 94, 31, -104, -104, 38, -104, 204, 51,
- 102, -104, -104, -104, -104, -104, -104, -104, -104, 7,
- -104, -104, -104, 16, -104, -104, -59, -104, -104, -104,
+ -104, -104, 41, -104, -104, -104, -104, -104, -12, -104,
+ -104, -104, -104, -17, -104, -104, -104, -104, -104, -104,
+ -104, -104, -104, -104, -104, -104, -104, 118, -104, 165,
+ -2, -104, -104, 25, -104, 209, 16, 172, -104, -104,
+ -104, -104, -104, -104, -104, -104, 17, -104, -104, -104,
+ 18, -104, -104, -46, -104, -104, -104, -104, -104, -104,
+ -104, -104, -104, -104, -104, -104, -104, -104, -104, 56,
+ -104, -104, 0, 30, -104, -65, -104, 12, -104, -104,
+ -104, -104, 119, -104, -104, -104, 13, 14, -104, -104,
+ -104, -104, -104, -104, -104, -104, -104, -104, -104, -104,
-104, -104, -104, -104, -104, -104, -104, -104, -104, -104,
- -104, -104, 44, -104, -104, 92, 19, -104, -41, -104,
- 24, -104, -104, -104, -104, 5, -104, -104, -104, -4,
- -8, -104, -104, -104, -104, -104, -104, -104, -104, -104,
+ -104, -104, 23, -104, -104, -104, -104, 148, -104, -104,
-104, -104, -104, -104, -104, -104, -104, -104, -104, -104,
- -104, -104, -104, -104, -104, 52, -104, -104, -104, -104,
- 91, -104, -104, -104, -104, -104, -104, -104, -104, -104,
- -104, -104, -104, -104, 66, 185, -104, 177, 173, 176,
- 188, -104, 88, 95, 97, 107, 101, -104, -104, -104,
- -104, -104, -104, -104, -104, 212, -104, 187, -104, 199,
- -104, -104, 201, -104, 108, -104, -104, 100, -104, -14,
- -104, 34, -104, -20, -104, 200, -104, 211, 209, -104,
- -104, 202, -104, -104, -104, -104, -104, -104, 186, -104,
- 90, 98, -104, -104, 85, -104, -22, -104, 37, -104,
- -10, -104, -104, 81, -104, -104, 43, -104, -104, -15,
- -104, 32, -104, -24, -104, -34, -104, -104, -104, -104,
- -104, -104, -32, -104, 92, -104, 33, -104, 76, -27,
- -104, -104, 36, -104, -104, 114, -104, -104, -104, 25,
- -104, -104, -104, -104, 18, -104, 59, 79, -104, 83,
- -104, -104, 42, -104, 39, -104, -104, -104, -104, -104,
- -104, -104, 55, -104, -104, -104, -104, -104, -104, 166,
- -104, -104, 15, -104, -104, -104, -104, -3, -104, 46,
- -104, -104, -104, -104, -104, -23, -104, 53, -104, -26,
- -104, -104, -104, -104, -21, -104, -104, -73, -104, -104,
- -104, -104, -104, -104, -94, -104, -104, 0, -104, 22,
- -104, 13, -104, -104, -104, -104, 3, -104, -47, -104,
- 9, -104, -49, -104, -104, -104, -19, -104, -104, 169,
- -104, -104, -25, -104, -104, -104, -104, -104, -104, -104,
+ -104, 7, 178, -104, 179, 188, 245, 191, -104, 133,
+ 131, 129, 140, 130, -104, -104, -104, -104, -104, -104,
+ -104, -104, 207, -104, 205, -104, 217, -104, -104, 199,
+ -104, 70, -104, -104, 65, -104, -10, -104, 45, -104,
+ -16, -104, 203, -104, 223, 219, -104, -104, 192, -104,
+ -104, -104, -104, -104, -104, 189, -104, 77, 76, -104,
+ -104, 72, -104, 2, -104, 47, -104, 49, -104, -104,
+ 87, -104, -104, 71, -104, -104, 10, -104, 34, -104,
+ -1, -104, -20, -104, -104, -104, -104, -104, -104, -5,
+ -104, 48, -104, 53, -104, 73, 3, -104, -104, 39,
+ -104, -104, 68, -104, -104, -104, 119, -104, -104, -104,
+ -104, 58, -104, 59, 54, -104, 114, -104, -104, 46,
+ -104, 44, -104, -104, -104, -104, -104, -104, -104, 43,
+ -104, -104, -104, -104, -104, -104, 173, -104, -104, -4,
+ -104, -104, -104, -104, -7, -104, 42, -104, -104, -104,
+ -104, -104, -49, -104, 40, -104, -40, -104, -104, -104,
+ -104, -31, -104, -104, 4, -104, -104, -104, -104, -104,
+ -104, -30, -104, -104, 52, -104, 37, -104, -15, -104,
+ -104, -104, -104, -13, -104, -68, -104, -3, -104, -63,
+ -104, -104, -104, -24, -104, -104, 92, -104, -104, -22,
-104, -104, -104, -104, -104, -104, -104, -104, -104, -104,
- -104, -13, -104, -104, -104, -104, -104, 10, -104, -104,
- -6, -18, 4, -104, -104, -104, -104, -104, 264, -104,
- -104, -104, 48, -104, -104, -104, 330, -104, -104, -104,
- -104, 92, -104, 71, -104, 60, 21, -104, -104, 70,
- -104, -104, 57, -104, -104, -104, 23, -104, -104, -104,
- -104, 35, -104, 47, 41, -104, 56, -104, -104, -104,
- -104, -104, 73, -104, -104, -104, -104, -104, -104, -104,
- -104, -104, 54, -104, -104, 72, -104, -104, -104};
+ -104, -104, -104, -104, -104, -104, -104, -104, 22, -104,
+ -104, -104, -104, -104, 21, -104, -104, 35, 32, 33,
+ -104, -104, -104, -104, -104, 256, -104, -104, -104, 8,
+ -104, -104, -104, 210, -104, -104, -104, -104, 20, -104,
+ 30, -104, 51, -41, -104, -104, 29, -104, -104, 74,
+ -104, -104, -104, 1, -104, -104, -104, -104, 31, -104,
+ 24, 88, -104, 95, -104, -104, -104, -104, -104, 107,
+ -104, -104, -104, -104, -104, -104, -104, -104, -104, -21,
+ -104, -104, 84, -104, -104, -104};
const int QmlJSGrammar::action_info [] = {
- 544, 386, 451, 537, 337, 315, 395, 487, 602, 347,
- 185, 385, 489, 467, 335, 378, 368, 355, 474, 361,
- 349, 467, 383, 491, 376, 483, 483, 473, 467, -111,
- 374, 383, 388, 500, -116, -89, 459, -108, -90, 496,
- -113, 496, 459, -116, -89, -111, 483, 529, -113, -86,
- 483, 442, -108, -86, -119, 391, 391, 300, 432, -100,
- -90, 500, 434, -100, -119, 300, 337, -76, 463, 541,
- 457, 452, 294, 483, 339, 496, 233, 2, 216, 446,
- 210, 444, 115, 389, 459, 500, 295, 145, 236, 315,
- 191, 335, 145, 344, 391, 229, 210, 115, 2, 608,
- 185, 300, 0, 54, 536, 477, 185, 0, 185, 486,
- 185, 0, 23, 592, 0, 185, 185, 102, 143, 370,
- 235, 143, 225, 487, 279, 102, 470, 193, 103, 185,
- 33, 102, 106, 185, 185, 185, 103, 185, 49, 185,
- 292, 291, 103, 107, 596, 595, 509, 290, 289, 0,
- 456, 455, 393, 355, 20, 19, 292, 291, 223, 102,
- 461, 593, 27, 26, 186, 285, 284, 380, 8, 50,
- 103, 471, 371, 212, 357, 292, 291, 213, 358, 299,
- 298, 520, 129, 218, 130, 498, 502, 353, 108, 297,
- 218, 605, 195, 194, 510, 131, 17, 16, 8, 56,
- 8, 50, 219, 50, 220, 9, 12, 108, 0, 219,
- 129, 449, 130, 129, 52, 130, 129, 108, 130, 129,
- 185, 130, 50, 131, 15, 51, 131, 8, 129, 131,
- 130, 531, 131, 109, 185, 9, 12, 9, 12, 110,
- 185, 131, 147, 8, 606, 604, 52, 129, 52, 130,
- 0, 0, 109, 57, 55, 0, 0, 51, 110, 51,
- 131, 148, 109, 149, 9, 12, 8, 52, 110, 129,
- 129, 130, 130, 535, 534, 8, 0, 0, 51, 8,
- 9, 12, 131, 131, 8, 532, 530, 481, 480, 129,
- 8, 130, 8, 278, 277, 129, 129, 130, 130, -330,
- 23, 0, 131, 9, 12, 129, 548, 130, 131, 131,
- 117, 118, 9, 12, 23, 185, 9, 12, 131, 8,
- 0, 9, 12, 117, 118, 0, -330, 9, 12, 9,
- 12, 0, 33, 0, 0, 0, 0, 119, 120, 0,
- 33, 0, 0, 0, 0, 8, 24, 22, 8, 0,
- 119, 120, 322, 323, 0, 0, 9, 12, 322, 323,
- 0, 324, 8, 0, 325, 8, 326, 324, 278, 277,
- 325, 8, 326, 8, 21, 322, 323, 283, 282, 0,
- 283, 282, 9, 12, 324, 9, 12, 325, 8, 326,
- 0, 317, 318, 8, 288, 287, 0, 288, 287, 9,
- 12, 11, 9, 12, 0, 283, 282, 0, 9, 12,
- 9, 12, 0, 0, 0, 0, 0, 0, 319, 320,
- 288, 287, 0, 11, 8, 9, 12, 10, 122, 123,
- 9, 12, 0, 0, 0, 0, 124, 125, 122, 123,
- 126, 0, 127, 0, 0, 0, 124, 125, 0, 10,
- 126, 0, 127, 0, 11, 122, 123, 0, 0, 0,
- 13, 9, 12, 124, 125, 322, 323, 126, 0, 127,
- 0, 0, 37, 0, 324, 0, 0, 325, 0, 326,
- 10, 0, 0, 0, 38, 0, 0, 0, 0, 0,
- 0, 8, 0, 0, 0, 37, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 38, 0, 0,
- 0, 0, 0, 0, 8, 0, 0, 40, 0, 0,
- 0, 11, 0, 0, 0, 0, 0, 0, 39, 41,
- 0, 0, 0, 0, 122, 123, 42, 0, 0, 197,
- 546, 0, 124, 125, 11, 36, 126, 10, 127, 198,
- 0, 39, 41, 199, 0, 0, 0, 0, 0, 42,
- 0, 0, 200, 0, 201, 0, 0, 351, 36, 0,
- 10, 0, 0, 0, 0, 202, 0, 203, 106, 0,
- 0, 0, 0, 0, 0, 204, 0, 0, 205, 107,
- 0, 0, 0, 0, 206, 0, 0, 0, 0, 0,
- 207, 0, 0, 197, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 198, 0, 208, 0, 199, 0, 0,
- 0, 0, 0, 0, 0, 0, 200, 0, 201, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 202,
- 0, 203, 106, 0, 0, 0, 0, 0, 0, 204,
- 0, 0, 205, 107, 0, 0, 0, 0, 206, 0,
- 0, 0, 0, 0, 207, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 208,
+ 152, 150, 543, 458, 192, 152, 498, 150, 217, 122,
+ 480, 344, 122, 494, 61, 490, 496, 470, 474, 490,
+ 474, 481, 474, 449, 354, -123, -104, 307, 398, -112,
+ -90, 381, 395, 390, 453, 439, 402, 441, 383, -120,
+ 385, 503, 451, -94, 223, 393, 507, 217, 356, -93,
+ 375, 342, 362, 368, 490, -117, -115, 286, -90, 351,
+ 466, 398, 240, 396, -112, 459, 307, 398, 464, -104,
+ 507, 503, 490, -94, 307, -93, 466, 322, 2, 466,
+ 609, -115, -117, 507, -120, 243, 242, -123, -80, 503,
+ 322, 346, 490, 536, 362, 2, 390, 23, 548, 198,
+ 0, 232, 192, 301, 599, 192, 302, 192, 544, 236,
+ 56, 192, 192, 342, 516, 40, 0, 0, 493, 0,
+ 477, 0, 192, 484, 192, 192, 192, 192, 192, 392,
+ 0, 551, 494, 0, 0, 219, 0, 0, 200, 220,
+ 603, 602, 299, 298, 377, 344, 0, 20, 19, 109,
+ 193, 192, 600, 0, 299, 298, 0, 400, 0, 505,
+ 110, 115, 517, 509, 527, 478, 35, 34, 615, 28,
+ 27, 109, 463, 462, 468, 113, 230, 387, 304, 360,
+ 8, 538, 110, 292, 291, 109, 114, 299, 298, 297,
+ 296, 364, 109, 306, 305, 365, 110, 378, 32, 31,
+ 8, 225, 8, 110, 202, 201, 116, 8, 225, 154,
+ 8, 192, 117, 8, 192, 555, 8, 9, 12, 8,
+ 226, 8, 227, 23, 57, 115, 30, 226, 155, 456,
+ 156, 63, 115, 57, 8, 539, 537, 9, 12, 9,
+ 12, 40, 0, 57, 9, 12, 57, 9, 12, 0,
+ 9, 12, 612, 9, 12, 8, 9, 12, 9, 12,
+ 136, 192, 137, 8, 542, 541, 8, 488, 487, 59,
+ 116, 9, 12, 138, 8, 0, 117, 116, 59, 8,
+ 58, 8, 192, 117, 0, 64, 62, 8, 59, 58,
+ 0, 59, 9, 12, 17, 16, 0, 0, 0, 58,
+ 9, 12, 58, 9, 12, 613, 611, 40, 0, 8,
+ 0, 9, 12, 8, 285, 284, 9, 12, 9, 12,
+ -334, 0, 15, 23, 9, 12, 8, 136, 0, 137,
+ 324, 325, 0, -334, 0, 285, 284, 0, 324, 325,
+ 138, 290, 289, 0, 8, 0, 9, 12, 0, 0,
+ 9, 12, 8, 0, 8, 24, 0, 326, 327, 329,
+ 330, 0, 0, 9, 12, 326, 327, 0, 331, 25,
+ 22, 332, 8, 333, 11, 8, 0, 0, 0, 0,
+ 0, 9, 12, 0, 290, 289, 295, 294, 0, 9,
+ 12, 9, 12, 8, 124, 125, 0, 21, 0, 0,
+ 10, 8, 11, 0, 0, 0, 0, 290, 289, 9,
+ 12, 0, 9, 12, 0, 129, 130, 0, 8, 0,
+ 0, 126, 127, 131, 132, 295, 294, 133, 10, 134,
+ 9, 12, 0, 295, 294, 129, 130, 0, 9, 12,
+ 0, 44, 0, 131, 132, 0, 0, 133, 11, 134,
+ 129, 130, 0, 45, 13, 9, 12, 0, 131, 132,
+ 8, 0, 133, 0, 134, 0, 44, 0, 329, 330,
+ 0, 0, 0, 0, 10, 0, 0, 331, 45, 0,
+ 332, 0, 333, 0, 0, 8, 553, 0, 0, 0,
+ 11, 0, 0, 0, 0, 0, 0, 46, 48, 0,
+ 0, 0, 0, 0, 0, 49, 0, 0, 0, 0,
+ 0, 47, 0, 0, 43, 11, 10, 0, 0, 204,
+ 0, 0, 46, 48, 0, 0, 0, 0, 0, 205,
+ 49, 0, 0, 206, 0, 0, 0, 129, 130, 43,
+ 0, 10, 207, 0, 208, 131, 132, 358, 0, 133,
+ 0, 134, 0, 0, 0, 209, 0, 210, 113, 0,
+ 0, 0, 0, 0, 0, 211, 0, 0, 212, 114,
+ 0, 0, 0, 0, 213, 0, 0, 0, 0, 0,
+ 214, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 215, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 204, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 205, 0, 0, 0,
+ 206, 0, 0, 0, 0, 0, 0, 0, 0, 207,
+ 0, 208, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 209, 0, 210, 113, 0, 0, 0, 0,
+ 0, 0, 211, 0, 0, 212, 114, 0, 0, 0,
+ 0, 213, 0, 0, 0, 0, 0, 214, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 80, 81, 0, 0, 0, 0, 0, 0,
- 0, 0, 83, 0, 0, 0, 0, 0, 0, 8,
- 0, 0, 0, 84, 85, 0, 86, 0, 0, 0,
- 0, 0, 0, 89, 0, 0, 0, 92, 0, 0,
+ 0, 0, 215, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 87, 88, 0, 0, 0,
+ 0, 0, 0, 0, 0, 90, 0, 0, 0, 0,
+ 0, 0, 8, 0, 0, 0, 91, 92, 0, 93,
+ 0, 0, 0, 0, 0, 0, 96, 0, 0, 0,
+ 99, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 102, 9,
+ 12, 0, 103, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 98, 105, 89, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 86, 87, 88, 0, 0,
+ 0, 0, 0, 0, 0, 0, 90, 0, 0, 0,
+ 0, 0, 0, 8, 0, 0, 0, 91, 92, 0,
+ 93, 0, 0, 0, 94, 0, 95, 96, 97, 0,
+ 0, 99, 0, 0, 0, 100, 0, 101, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 102,
+ 9, 12, 0, 103, 0, 104, 0, 106, 0, 107,
+ 0, 0, 0, 0, 98, 105, 89, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, -113, 0, 0, 0,
+ 86, 87, 88, 0, 0, 0, 0, 0, 0, 0,
+ 0, 90, 0, 0, 0, 0, 0, 0, 8, 0,
+ 0, 0, 91, 92, 0, 93, 0, 0, 0, 94,
+ 0, 95, 96, 97, 0, 0, 99, 0, 0, 0,
+ 100, 0, 101, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 102, 9, 12, 0, 103, 0,
+ 104, 0, 106, 0, 107, 0, 0, 0, 0, 98,
+ 105, 89, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 86, 87, 88, 0, 0, 0, 0, 0, 0,
+ 0, 0, 90, 0, 0, 0, 0, 0, 0, 8,
+ 0, 0, 0, 91, 92, 0, 93, 0, 0, 0,
+ 94, 0, 95, 96, 97, 0, 0, 99, 0, 0,
+ 0, 100, 0, 101, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 102, 9, 12, 0, 103,
+ 0, 104, 0, 106, 321, 107, 0, 0, 0, 0,
+ 98, 105, 89, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 514, 0, 0, 86, 87, 88, 0, 0,
+ 0, 0, 0, 0, 0, 0, 90, 0, 0, 0,
+ 0, 0, 0, 8, 0, 0, 0, 91, 92, 0,
+ 93, 0, 0, 0, 94, 0, 95, 96, 97, 0,
+ 0, 99, 0, 0, 0, 100, 0, 101, 0, 0,
+ 515, 0, 0, 0, 0, 0, 0, 0, 0, 102,
+ 9, 12, 0, 103, 0, 104, 0, 106, 0, 107,
+ 0, 0, 0, 0, 98, 105, 89, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 514, 0, 0, 86,
+ 87, 88, 0, 0, 0, 0, 0, 0, 0, 0,
+ 90, 0, 0, 0, 0, 0, 0, 8, 0, 0,
+ 0, 91, 92, 0, 93, 0, 0, 0, 94, 0,
+ 95, 96, 97, 0, 0, 99, 0, 0, 0, 100,
+ 0, 101, 0, 0, 520, 0, 0, 0, 0, 0,
+ 0, 0, 0, 102, 9, 12, 0, 103, 0, 104,
+ 0, 106, 0, 107, 0, 0, 0, 0, 98, 105,
+ 89, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 522, 0, 0, 86, 87, 88, 0, 0, 0, 0,
+ 0, 0, 0, 0, 90, 0, 0, 0, 0, 0,
+ 0, 8, 0, 0, 0, 91, 92, 0, 93, 0,
+ 0, 0, 94, 0, 95, 96, 97, 0, 0, 99,
+ 0, 0, 0, 100, 0, 101, 0, 0, 523, 0,
+ 0, 0, 0, 0, 0, 0, 0, 102, 9, 12,
+ 0, 103, 0, 104, 0, 106, 0, 107, 0, 0,
+ 0, 0, 98, 105, 89, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 522, 0, 0, 86, 87, 88,
+ 0, 0, 0, 0, 0, 0, 0, 0, 90, 0,
+ 0, 0, 0, 0, 0, 8, 0, 0, 0, 91,
+ 92, 0, 93, 0, 0, 0, 94, 0, 95, 96,
+ 97, 0, 0, 99, 0, 0, 0, 100, 0, 101,
+ 0, 0, 525, 0, 0, 0, 0, 0, 0, 0,
+ 0, 102, 9, 12, 0, 103, 0, 104, 0, 106,
+ 0, 107, 0, 0, 0, 0, 98, 105, 89, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 514, 0,
+ 0, 86, 87, 88, 0, 0, 0, 0, 0, 0,
+ 0, 0, 90, 0, 0, 0, 0, 0, 0, 8,
+ 0, 0, 0, 91, 92, 0, 93, 0, 0, 0,
+ 94, 0, 95, 96, 97, 0, 0, 99, 0, 0,
+ 0, 100, 0, 101, 0, 0, 515, 0, 0, 11,
+ 0, 0, 0, 0, 0, 102, 9, 12, 0, 103,
+ 0, 104, 0, 106, 0, 107, 0, 0, 0, 0,
+ 98, 105, 89, 0, 0, 10, 0, 0, 0, 0,
+ 0, 0, 86, 87, 88, 0, 0, 0, 0, 0,
+ 0, 0, 0, 90, 0, 0, 0, 0, 0, 0,
+ 8, 269, 0, 0, 562, 563, 0, 93, 0, 0,
+ 0, 94, 0, 95, 96, 97, 0, 0, 99, 0,
+ 0, 0, 100, 0, 101, 0, 0, 0, 0, 0,
+ 0, 0, 273, 0, 0, 0, 102, 9, 12, 0,
+ 103, 0, 104, 0, 106, 0, 107, 0, 0, 0,
+ 0, 98, 105, 89, 0, 264, 0, 564, 0, 0,
+ 0, 0, 0, 160, 161, 162, 0, 0, 164, 166,
+ 167, 0, 0, 168, 0, 169, 0, 0, 0, 171,
+ 172, 173, 0, 0, 0, 0, 0, 0, 8, 174,
+ 175, 176, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 177, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 180, 0,
+ 0, 0, 0, 0, 0, 9, 12, 181, 182, 183,
+ 0, 185, 186, 187, 188, 189, 190, 0, 0, 178,
+ 184, 170, 163, 165, 179, 0, 0, 0, 0, 0,
+ 0, 160, 161, 162, 0, 0, 164, 166, 167, 0,
+ 0, 168, 0, 169, 0, 0, 0, 171, 172, 173,
+ 0, 0, 0, 0, 0, 0, 443, 174, 175, 176,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 95, 9, 12, 0, 96,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 91, 98, 82, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 79, 80, 81, 0, 0, 0, 0, 0,
- 0, 0, 0, 83, 0, 0, 0, 0, 0, 0,
- 8, 0, 0, 0, 84, 85, 0, 86, 0, 0,
- 0, 87, 0, 88, 89, 90, 0, 0, 92, 0,
- 0, 0, 93, 0, 94, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 95, 9, 12, 0,
- 96, 0, 97, 0, 99, 0, 100, 0, 0, 0,
- 0, 91, 98, 82, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 79, 80, 81, 0, 0, 0, 0,
- 0, 0, 0, 0, 83, 0, 0, 0, 0, 0,
- 0, 8, 0, 0, 0, 84, 85, 0, 86, 0,
- 0, 0, 87, 0, 88, 89, 90, 0, 0, 92,
- 0, 0, 0, 93, 0, 94, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 95, 9, 12,
- 0, 96, 0, 97, 0, 99, 314, 100, 0, 0,
- 0, 0, 91, 98, 82, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, -109, 0, 0, 0, 79, 80,
- 81, 0, 0, 0, 0, 0, 0, 0, 0, 83,
- 0, 0, 0, 0, 0, 0, 8, 0, 0, 0,
- 84, 85, 0, 86, 0, 0, 0, 87, 0, 88,
- 89, 90, 0, 0, 92, 0, 0, 0, 93, 0,
- 94, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 95, 9, 12, 0, 96, 0, 97, 0,
- 99, 0, 100, 0, 0, 0, 0, 91, 98, 82,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 515,
- 0, 0, 79, 80, 81, 0, 0, 0, 0, 0,
- 0, 0, 0, 83, 0, 0, 0, 0, 0, 0,
- 8, 0, 0, 0, 84, 85, 0, 86, 0, 0,
- 0, 87, 0, 88, 89, 90, 0, 0, 92, 0,
- 0, 0, 93, 0, 94, 0, 0, 518, 0, 0,
- 0, 0, 0, 0, 0, 0, 95, 9, 12, 0,
- 96, 0, 97, 0, 99, 0, 100, 0, 0, 0,
- 0, 91, 98, 82, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 515, 0, 0, 79, 80, 81, 0,
- 0, 0, 0, 0, 0, 0, 0, 83, 0, 0,
- 0, 0, 0, 0, 8, 0, 0, 0, 84, 85,
- 0, 86, 0, 0, 0, 87, 0, 88, 89, 90,
- 0, 0, 92, 0, 0, 0, 93, 0, 94, 0,
- 0, 516, 0, 0, 0, 0, 0, 0, 0, 0,
- 95, 9, 12, 0, 96, 0, 97, 0, 99, 0,
- 100, 0, 0, 0, 0, 91, 98, 82, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 507, 0, 0,
- 79, 80, 81, 0, 0, 0, 0, 0, 0, 0,
- 0, 83, 0, 0, 0, 0, 0, 0, 8, 0,
- 0, 0, 84, 85, 0, 86, 0, 0, 0, 87,
- 0, 88, 89, 90, 0, 0, 92, 0, 0, 0,
- 93, 0, 94, 0, 0, 513, 0, 0, 0, 0,
- 0, 0, 0, 0, 95, 9, 12, 0, 96, 0,
- 97, 0, 99, 0, 100, 0, 0, 0, 0, 91,
- 98, 82, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 507, 0, 0, 79, 80, 81, 0, 0, 0,
- 0, 0, 0, 0, 0, 83, 0, 0, 0, 0,
- 0, 0, 8, 0, 0, 0, 84, 85, 0, 86,
- 0, 0, 0, 87, 0, 88, 89, 90, 0, 0,
- 92, 0, 0, 0, 93, 0, 94, 0, 0, 508,
- 0, 0, 0, 0, 0, 0, 0, 0, 95, 9,
- 12, 0, 96, 0, 97, 0, 99, 0, 100, 0,
- 0, 0, 0, 91, 98, 82, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 507, 0, 0, 79, 80,
- 81, 0, 0, 0, 0, 0, 0, 0, 0, 83,
- 0, 0, 0, 0, 0, 0, 8, 0, 0, 0,
- 84, 85, 0, 86, 0, 0, 0, 87, 0, 88,
- 89, 90, 0, 0, 92, 0, 0, 0, 93, 0,
- 94, 0, 0, 508, 0, 0, 11, 0, 0, 0,
- 0, 0, 95, 9, 12, 0, 96, 0, 97, 0,
- 99, 0, 100, 0, 0, 0, 0, 91, 98, 82,
- 0, 0, 10, 0, 0, 0, 0, 0, 0, 79,
- 80, 81, 0, 0, 0, 0, 0, 0, 0, 0,
- 83, 0, 0, 0, 0, 0, 0, 8, 262, 0,
- 0, 555, 556, 0, 86, 0, 0, 0, 87, 0,
- 88, 89, 90, 0, 0, 92, 0, 0, 0, 93,
- 0, 94, 0, 0, 0, 0, 0, 0, 0, 266,
- 0, 0, 0, 95, 9, 12, 0, 96, 0, 97,
- 0, 99, 0, 100, 0, 0, 0, 0, 91, 98,
- 82, 0, 257, 0, 557, 0, 0, 0, 0, 0,
- 153, 154, 155, 0, 0, 157, 159, 160, 0, 0,
- 161, 0, 162, 0, 0, 0, 164, 165, 166, 0,
- 0, 0, 0, 0, 0, 8, 167, 168, 169, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 170,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 173, 0, 0, 0, 0,
- 0, 0, 9, 12, 174, 175, 176, 0, 178, 179,
- 180, 181, 182, 183, 0, 0, 171, 177, 163, 156,
- 158, 172, 0, 0, 0, 0, 0, 0, 153, 154,
- 155, 0, 0, 157, 159, 160, 0, 0, 161, 0,
- 162, 0, 0, 0, 164, 165, 166, 0, 0, 0,
- 0, 0, 0, 436, 167, 168, 169, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 170, 0, 0,
- 0, 437, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 173, 0, 0, 0, 0, 0, 441,
- 438, 440, 174, 175, 176, 0, 178, 179, 180, 181,
- 182, 183, 0, 0, 171, 177, 163, 156, 158, 172,
- 0, 0, 0, 0, 0, 0, 153, 154, 155, 0,
- 0, 157, 159, 160, 0, 0, 161, 0, 162, 0,
- 0, 0, 164, 165, 166, 0, 0, 0, 0, 0,
- 0, 436, 167, 168, 169, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 170, 0, 0, 0, 437,
- 0, 0, 0, 0, 0, 0, 0, 439, 0, 0,
- 0, 173, 0, 0, 0, 0, 0, 441, 438, 440,
- 174, 175, 176, 0, 178, 179, 180, 181, 182, 183,
- 0, 0, 171, 177, 163, 156, 158, 172, 0, 0,
- 0, 0, 0, 0, 255, 0, 0, 0, 0, 256,
- 0, 79, 80, 81, 258, 0, 0, 0, 0, 0,
- 0, 259, 260, 0, 0, 0, 0, 0, 0, 261,
- 262, 0, 0, 263, 85, 0, 86, 0, 0, 0,
- 87, 0, 88, 89, 90, 0, 0, 92, 0, 0,
- 0, 93, 0, 94, 0, 0, 0, 0, 0, 265,
- 0, 266, 0, 0, 0, 95, 264, 267, 268, 96,
- 269, 97, 270, 99, 42, 100, 271, 272, 0, 0,
- 91, 98, 82, 36, 257, 0, 0, 0, 0, 0,
- 0, 0, 255, 0, 0, 0, 0, 256, 0, 79,
- 80, 81, 258, 0, 0, 0, 0, 0, 0, 259,
- 83, 0, 0, 0, 0, 0, 0, 261, 262, 0,
- 0, 263, 85, 0, 86, 0, 0, 0, 87, 0,
- 88, 89, 90, 0, 0, 92, 0, 0, 0, 93,
- 0, 94, 0, 0, 0, 0, 0, 265, 0, 266,
- 0, 0, 0, 95, 264, 267, 268, 96, 269, 97,
- 270, 99, 42, 100, 271, 272, 0, 0, 91, 98,
- 82, 36, 257, 0, 0, 0, 0, 0, 0, 0,
- 561, 154, 155, 0, 0, 563, 159, 565, 80, 81,
- 566, 0, 162, 0, 0, 0, 164, 568, 569, 0,
- 0, 0, 0, 0, 0, 570, 571, 168, 169, 263,
- 85, 0, 86, 0, 0, 0, 87, 0, 88, 572,
- 90, 0, 0, 574, 0, 0, 0, 93, 0, 94,
- 0, 0, 0, 0, 0, 576, 0, 266, 0, 0,
- 0, 578, 575, 577, 579, 580, 581, 97, 583, 584,
- 585, 586, 587, 588, 0, 0, 573, 582, 567, 562,
- 564, 172, 0, 0, 0, 0, 0, 0, 404, 154,
- 155, 0, 0, 406, 159, 408, 80, 81, 409, 0,
- 162, 0, 0, 0, 164, 411, 412, 0, 0, 0,
- 0, 0, 0, 413, 414, 168, 169, 263, 85, 0,
- 86, 0, 0, 0, 87, 0, 88, 415, 90, 0,
- 0, 417, 0, 0, 0, 93, 0, 94, 0, -255,
- 0, 0, 0, 419, 0, 266, 0, 0, 0, 421,
- 418, 420, 422, 423, 424, 97, 426, 427, 428, 429,
- 430, 431, 0, 0, 416, 425, 410, 405, 407, 172,
- 0, 0, 0, 0, 0, 0,
+ 177, 0, 0, 0, 444, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 180, 0, 0, 0,
+ 0, 0, 448, 445, 447, 181, 182, 183, 0, 185,
+ 186, 187, 188, 189, 190, 0, 0, 178, 184, 170,
+ 163, 165, 179, 0, 0, 0, 0, 0, 0, 160,
+ 161, 162, 0, 0, 164, 166, 167, 0, 0, 168,
+ 0, 169, 0, 0, 0, 171, 172, 173, 0, 0,
+ 0, 0, 0, 0, 443, 174, 175, 176, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 177, 0,
+ 0, 0, 444, 0, 0, 0, 0, 0, 0, 0,
+ 446, 0, 0, 0, 180, 0, 0, 0, 0, 0,
+ 448, 445, 447, 181, 182, 183, 0, 185, 186, 187,
+ 188, 189, 190, 0, 0, 178, 184, 170, 163, 165,
+ 179, 0, 0, 0, 0, 0, 0, 262, 0, 0,
+ 0, 0, 263, 0, 86, 87, 88, 265, 0, 0,
+ 0, 0, 0, 0, 266, 90, 0, 0, 0, 0,
+ 0, 0, 268, 269, 0, 0, 270, 92, 0, 93,
+ 0, 0, 0, 94, 0, 95, 96, 97, 0, 0,
+ 99, 0, 0, 0, 100, 0, 101, 0, 0, 0,
+ 0, 0, 272, 0, 273, 0, 0, 0, 102, 271,
+ 274, 275, 103, 276, 104, 277, 106, 49, 107, 278,
+ 279, 0, 0, 98, 105, 89, 43, 264, 0, 0,
+ 0, 0, 0, 0, 0, 262, 0, 0, 0, 0,
+ 263, 0, 86, 87, 88, 265, 0, 0, 0, 0,
+ 0, 0, 266, 267, 0, 0, 0, 0, 0, 0,
+ 268, 269, 0, 0, 270, 92, 0, 93, 0, 0,
+ 0, 94, 0, 95, 96, 97, 0, 0, 99, 0,
+ 0, 0, 100, 0, 101, 0, 0, 0, 0, 0,
+ 272, 0, 273, 0, 0, 0, 102, 271, 274, 275,
+ 103, 276, 104, 277, 106, 49, 107, 278, 279, 0,
+ 0, 98, 105, 89, 43, 264, 0, 0, 0, 0,
+ 0, 0, 0, 568, 161, 162, 0, 0, 570, 166,
+ 572, 87, 88, 573, 0, 169, 0, 0, 0, 171,
+ 575, 576, 0, 0, 0, 0, 0, 0, 577, 578,
+ 175, 176, 270, 92, 0, 93, 0, 0, 0, 94,
+ 0, 95, 579, 97, 0, 0, 581, 0, 0, 0,
+ 100, 0, 101, 0, 0, 0, 0, 0, 583, 0,
+ 273, 0, 0, 0, 585, 582, 584, 586, 587, 588,
+ 104, 590, 591, 592, 593, 594, 595, 0, 0, 580,
+ 589, 574, 569, 571, 179, 0, 0, 0, 0, 0,
+ 0, 411, 161, 162, 0, 0, 413, 166, 415, 87,
+ 88, 416, 0, 169, 0, 0, 0, 171, 418, 419,
+ 0, 0, 0, 0, 0, 0, 420, 421, 175, 176,
+ 270, 92, 0, 93, 0, 0, 0, 94, 0, 95,
+ 422, 97, 0, 0, 424, 0, 0, 0, 100, 0,
+ 101, 0, -259, 0, 0, 0, 426, 0, 273, 0,
+ 0, 0, 428, 425, 427, 429, 430, 431, 104, 433,
+ 434, 435, 436, 437, 438, 0, 0, 423, 432, 417,
+ 412, 414, 179, 0, 0, 0, 0, 0, 0,
- 545, 488, 533, 542, 66, 478, 514, 597, 482, 253,
- 543, 479, 517, 232, 53, 504, 493, 228, 497, 503,
- 345, 499, 234, 519, 501, 286, 196, 293, 490, 492,
- 382, 540, 527, 479, 396, 184, 445, 190, 345, 286,
- 345, 293, 228, 209, 394, 192, 377, 392, 354, 352,
- 479, 25, 379, 390, 350, 18, 28, 475, 381, 187,
- 560, 460, 215, 482, 472, 458, 222, 296, 476, 217,
- 468, 435, 363, 433, 29, 482, 228, 286, 597, 7,
- 150, 594, 104, 453, 494, 603, 443, 232, 7, 293,
- 30, 0, 447, 7, 14, 448, 363, 104, 281, 495,
- 345, 104, 104, 226, 104, 104, 134, 152, 104, 104,
- 138, 253, 253, 345, 139, 345, 144, 104, 146, 226,
- 104, 104, 494, 345, 104, 132, 495, 104, 0, 104,
- 104, 133, 309, 190, 327, 104, 104, 313, 104, 224,
- 387, 328, 104, 329, 211, 0, 280, 331, 104, 447,
- 375, 214, 448, 330, 607, 0, 104, 104, 526, 111,
- 104, 104, 494, 373, 105, 348, 104, 104, 104, 114,
- 525, 0, 137, 346, 372, 0, 104, 384, 226, 104,
- 104, 524, 521, 447, 104, 104, 448, 523, 104, 136,
- 522, 104, 104, 495, 0, 104, 512, 190, 121, 104,
- 511, 140, 104, 450, 104, 141, 104, 0, 142, 128,
- 150, 135, 104, 104, 104, 113, 0, 104, 104, 313,
- 116, 332, 313, 313, 333, 321, 104, 341, 104, 104,
- 0, 313, 313, 313, 313, 316, 334, 152, 221, 338,
- 341, 104, 341, 341, 0, 313, 313, 313, 313, 369,
- 341, 0, 104, 104, 0, 313, 356, 313, 313, 7,
- 46, 0, 340, 0, 343, 362, 336, 7, 46, 359,
- 0, 547, 360, 104, 0, 112, 0, 35, 48, 552,
- 549, 551, 553, 550, 554, 35, 48, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 506, 499, 504, 300, 73, 510, 288, 524, 203, 521,
+ 610, 36, 508, 370, 216, 60, 352, 29, 389, 199,
+ 567, 26, 260, 239, 241, 33, 288, 300, 486, 222,
+ 489, 229, 604, 534, 18, 235, 293, 540, 303, 550,
+ 489, 552, 547, 497, 475, 235, 486, 482, 403, 399,
+ 479, 191, 361, 549, 288, 483, 224, 467, 357, 293,
+ 359, 465, 386, 452, 460, 495, 235, 401, 500, 197,
+ 384, 300, 194, 486, 450, 489, 442, 440, 397, 526,
+ 352, 511, 485, 370, 7, 352, 37, 352, 7, 14,
+ 604, 352, 111, 239, 233, 111, 111, 501, 111, 157,
+ 0, 146, 139, 454, 111, 0, 455, 111, 141, 454,
+ 111, 140, 455, 7, 111, 601, 233, 388, 0, 519,
+ 153, 111, 111, 518, 260, 454, 159, 145, 455, 111,
+ 355, 501, 0, 151, 352, 353, 111, 382, 502, 260,
+ 111, 380, 111, 0, 119, 142, 111, 111, 501, 532,
+ 111, 111, 533, 502, 111, 111, 118, 502, 287, 111,
+ 0, 379, 111, 0, 0, 121, 614, 111, 394, 531,
+ 111, 111, 111, 218, 111, 336, 338, 335, 111, 334,
+ 233, 111, 111, 391, 528, 111, 337, 529, 111, 316,
+ 530, 111, 111, 111, 320, 111, 111, 148, 149, 147,
+ 135, 143, 111, 197, 197, 111, 111, 144, 0, 231,
+ 457, 111, 111, 123, 120, 157, 596, 128, 598, 111,
+ 111, 0, 221, 111, 320, 320, 112, 328, 323, 111,
+ 348, 0, 111, 348, 320, 320, 339, 320, 320, 341,
+ 348, 511, 159, 228, 111, 320, 111, 0, 111, 320,
+ 0, 320, 376, 320, 0, 369, 0, 345, 348, 363,
+ 348, 343, 350, 320, 111, 320, 7, 53, 0, 320,
+ 554, 559, 556, 558, 560, 557, 561, 0, 0, 0,
+ 347, 366, 367, 0, 42, 55, 111, 0, 0, 0,
+ 0, 320, 0, 340, 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, 589, 0, 591, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 7,
+ 53, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 42, 55, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 504, 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, 0, 0, 0, 0, 0,
- 0, 0, 0, 0};
+ 0, 0, 0, 0, 0, 0, 0};
const int QmlJSGrammar::action_check [] = {
- 60, 33, 60, 36, 78, 1, 16, 20, 17, 61,
- 8, 60, 36, 5, 48, 31, 17, 2, 7, 7,
- 60, 5, 36, 60, 60, 33, 33, 55, 5, 7,
- 61, 36, 55, 36, 7, 7, 36, 7, 7, 36,
- 7, 36, 36, 7, 7, 7, 33, 29, 7, 7,
- 33, 7, 7, 7, 7, 36, 36, 36, 7, 7,
- 7, 36, 8, 7, 7, 36, 78, 33, 33, 8,
- 7, 7, 76, 33, 8, 36, 8, 88, 7, 55,
- 2, 55, 1, 7, 36, 36, 36, 78, 33, 1,
- 8, 48, 78, 61, 36, 36, 2, 1, 88, 0,
- 8, 36, -1, 29, 29, 7, 8, -1, 8, 6,
- 8, -1, 15, 8, -1, 8, 8, 40, 48, 8,
- 60, 48, 60, 20, 55, 40, 10, 60, 51, 8,
- 33, 40, 42, 8, 8, 8, 51, 8, 66, 8,
- 61, 62, 51, 53, 61, 62, 8, 61, 62, -1,
- 61, 62, 60, 2, 61, 62, 61, 62, 56, 40,
- 60, 56, 61, 62, 56, 61, 62, 60, 29, 29,
- 51, 55, 61, 50, 50, 61, 62, 54, 54, 61,
- 62, 60, 25, 15, 27, 60, 60, 60, 12, 60,
- 15, 8, 61, 62, 56, 38, 61, 62, 29, 7,
- 29, 29, 34, 29, 36, 66, 67, 12, -1, 34,
- 25, 36, 27, 25, 74, 27, 25, 12, 27, 25,
- 8, 27, 29, 38, 89, 85, 38, 29, 25, 38,
- 27, 7, 38, 57, 8, 66, 67, 66, 67, 63,
- 8, 38, 15, 29, 61, 62, 74, 25, 74, 27,
- -1, -1, 57, 61, 62, -1, -1, 85, 63, 85,
- 38, 34, 57, 36, 66, 67, 29, 74, 63, 25,
- 25, 27, 27, 61, 62, 29, -1, -1, 85, 29,
- 66, 67, 38, 38, 29, 61, 62, 61, 62, 25,
- 29, 27, 29, 61, 62, 25, 25, 27, 27, 36,
- 15, -1, 38, 66, 67, 25, 7, 27, 38, 38,
- 18, 19, 66, 67, 15, 8, 66, 67, 38, 29,
- -1, 66, 67, 18, 19, -1, 36, 66, 67, 66,
- 67, -1, 33, -1, -1, -1, -1, 45, 46, -1,
- 33, -1, -1, -1, -1, 29, 61, 62, 29, -1,
- 45, 46, 23, 24, -1, -1, 66, 67, 23, 24,
- -1, 32, 29, -1, 35, 29, 37, 32, 61, 62,
- 35, 29, 37, 29, 89, 23, 24, 61, 62, -1,
- 61, 62, 66, 67, 32, 66, 67, 35, 29, 37,
- -1, 18, 19, 29, 61, 62, -1, 61, 62, 66,
- 67, 59, 66, 67, -1, 61, 62, -1, 66, 67,
- 66, 67, -1, -1, -1, -1, -1, -1, 45, 46,
- 61, 62, -1, 59, 29, 66, 67, 85, 23, 24,
- 66, 67, -1, -1, -1, -1, 31, 32, 23, 24,
- 35, -1, 37, -1, -1, -1, 31, 32, -1, 85,
- 35, -1, 37, -1, 59, 23, 24, -1, -1, -1,
- 65, 66, 67, 31, 32, 23, 24, 35, -1, 37,
- -1, -1, 10, -1, 32, -1, -1, 35, -1, 37,
- 85, -1, -1, -1, 22, -1, -1, -1, -1, -1,
- -1, 29, -1, -1, -1, 10, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, 22, -1, -1,
- -1, -1, -1, -1, 29, -1, -1, 55, -1, -1,
- -1, 59, -1, -1, -1, -1, -1, -1, 66, 67,
- -1, -1, -1, -1, 23, 24, 74, -1, -1, 3,
- 55, -1, 31, 32, 59, 83, 35, 85, 37, 13,
- -1, 66, 67, 17, -1, -1, -1, -1, -1, 74,
- -1, -1, 26, -1, 28, -1, -1, 31, 83, -1,
- 85, -1, -1, -1, -1, 39, -1, 41, 42, -1,
+ 78, 48, 29, 60, 8, 78, 60, 48, 2, 1,
+ 55, 78, 1, 20, 29, 33, 36, 33, 5, 33,
+ 5, 7, 5, 7, 61, 7, 7, 36, 36, 7,
+ 7, 61, 55, 36, 55, 7, 16, 8, 60, 7,
+ 31, 36, 55, 7, 7, 33, 36, 2, 60, 7,
+ 17, 48, 2, 7, 33, 7, 7, 55, 7, 61,
+ 36, 36, 8, 7, 7, 7, 36, 36, 7, 7,
+ 36, 36, 33, 7, 36, 7, 36, 1, 88, 36,
+ 17, 7, 7, 36, 7, 33, 60, 7, 33, 36,
+ 1, 8, 33, 29, 2, 88, 36, 15, 8, 8,
+ -1, 60, 8, 76, 8, 8, 36, 8, 36, 36,
+ 66, 8, 8, 48, 8, 33, -1, -1, 6, -1,
+ 10, -1, 8, 7, 8, 8, 8, 8, 8, 60,
+ -1, 60, 20, -1, -1, 50, -1, -1, 60, 54,
+ 61, 62, 61, 62, 8, 78, -1, 61, 62, 40,
+ 56, 8, 56, -1, 61, 62, -1, 60, -1, 60,
+ 51, 12, 56, 60, 60, 55, 61, 62, 0, 61,
+ 62, 40, 61, 62, 60, 42, 56, 60, 60, 60,
+ 29, 7, 51, 61, 62, 40, 53, 61, 62, 61,
+ 62, 50, 40, 61, 62, 54, 51, 61, 61, 62,
+ 29, 15, 29, 51, 61, 62, 57, 29, 15, 15,
+ 29, 8, 63, 29, 8, 7, 29, 66, 67, 29,
+ 34, 29, 36, 15, 29, 12, 89, 34, 34, 36,
+ 36, 7, 12, 29, 29, 61, 62, 66, 67, 66,
+ 67, 33, -1, 29, 66, 67, 29, 66, 67, -1,
+ 66, 67, 8, 66, 67, 29, 66, 67, 66, 67,
+ 25, 8, 27, 29, 61, 62, 29, 61, 62, 74,
+ 57, 66, 67, 38, 29, -1, 63, 57, 74, 29,
+ 85, 29, 8, 63, -1, 61, 62, 29, 74, 85,
+ -1, 74, 66, 67, 61, 62, -1, -1, -1, 85,
+ 66, 67, 85, 66, 67, 61, 62, 33, -1, 29,
+ -1, 66, 67, 29, 61, 62, 66, 67, 66, 67,
+ 36, -1, 89, 15, 66, 67, 29, 25, -1, 27,
+ 18, 19, -1, 36, -1, 61, 62, -1, 18, 19,
+ 38, 61, 62, -1, 29, -1, 66, 67, -1, -1,
+ 66, 67, 29, -1, 29, 47, -1, 45, 46, 23,
+ 24, -1, -1, 66, 67, 45, 46, -1, 32, 61,
+ 62, 35, 29, 37, 59, 29, -1, -1, -1, -1,
+ -1, 66, 67, -1, 61, 62, 61, 62, -1, 66,
+ 67, 66, 67, 29, 18, 19, -1, 89, -1, -1,
+ 85, 29, 59, -1, -1, -1, -1, 61, 62, 66,
+ 67, -1, 66, 67, -1, 23, 24, -1, 29, -1,
+ -1, 45, 46, 31, 32, 61, 62, 35, 85, 37,
+ 66, 67, -1, 61, 62, 23, 24, -1, 66, 67,
+ -1, 10, -1, 31, 32, -1, -1, 35, 59, 37,
+ 23, 24, -1, 22, 65, 66, 67, -1, 31, 32,
+ 29, -1, 35, -1, 37, -1, 10, -1, 23, 24,
+ -1, -1, -1, -1, 85, -1, -1, 32, 22, -1,
+ 35, -1, 37, -1, -1, 29, 55, -1, -1, -1,
+ 59, -1, -1, -1, -1, -1, -1, 66, 67, -1,
+ -1, -1, -1, -1, -1, 74, -1, -1, -1, -1,
+ -1, 55, -1, -1, 83, 59, 85, -1, -1, 3,
+ -1, -1, 66, 67, -1, -1, -1, -1, -1, 13,
+ 74, -1, -1, 17, -1, -1, -1, 23, 24, 83,
+ -1, 85, 26, -1, 28, 31, 32, 31, -1, 35,
+ -1, 37, -1, -1, -1, 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, -1, 3, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 13, -1, 79, -1, 17, -1, -1,
- -1, -1, -1, -1, -1, -1, 26, -1, 28, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 79,
+ 64, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, 79, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 3, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, 13, -1, -1, -1,
+ 17, -1, -1, -1, -1, -1, -1, -1, -1, 26,
+ -1, 28, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, 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, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, -1, 12, 13, -1, -1, -1, -1, -1, -1,
+ -1, -1, 79, -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, -1, 69, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, 80, 81, 82, -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, -1, 69, -1, 71, -1, 73, -1, 75,
+ -1, -1, -1, -1, 80, 81, 82, -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, -1, 69, -1,
+ 71, -1, 73, -1, 75, -1, -1, -1, -1, 80,
+ 81, 82, -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,
- -1, -1, -1, 43, -1, -1, -1, 47, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -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, -1, 69,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, 71, -1, 73, 74, 75, -1, -1, -1, -1,
80, 81, 82, -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, -1,
- 69, -1, 71, -1, 73, -1, 75, -1, -1, -1,
- -1, 80, 81, 82, -1, -1, -1, -1, -1, -1,
- -1, -1, -1, 11, 12, 13, -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, -1, 69, -1, 71, -1, 73, -1, 75,
+ -1, -1, -1, -1, 80, 81, 82, -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, -1, 69, -1, 71,
+ -1, 73, -1, 75, -1, -1, -1, -1, 80, 81,
+ 82, -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, -1, -1,
+ -1, -1, -1, 51, -1, 53, -1, -1, 56, -1,
-1, -1, -1, -1, -1, -1, -1, 65, 66, 67,
- -1, 69, -1, 71, -1, 73, 74, 75, -1, -1,
+ -1, 69, -1, 71, -1, 73, -1, 75, -1, -1,
-1, -1, 80, 81, 82, -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, -1, 69, -1, 71, -1,
- 73, -1, 75, -1, -1, -1, -1, 80, 81, 82,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, 8,
+ -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, -1, 69, -1, 71, -1, 73,
+ -1, 75, -1, -1, -1, -1, 80, 81, 82, -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, 59,
+ -1, -1, -1, -1, -1, 65, 66, 67, -1, 69,
+ -1, 71, -1, 73, -1, 75, -1, -1, -1, -1,
+ 80, 81, 82, -1, -1, 85, -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,
+ 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, 56, -1, -1,
- -1, -1, -1, -1, -1, -1, 65, 66, 67, -1,
+ -1, -1, 51, -1, 53, -1, -1, -1, -1, -1,
+ -1, -1, 61, -1, -1, -1, 65, 66, 67, -1,
69, -1, 71, -1, 73, -1, 75, -1, -1, -1,
- -1, 80, 81, 82, -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, -1, 69, -1, 71, -1, 73, -1,
- 75, -1, -1, -1, -1, 80, 81, 82, -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, -1, 69, -1,
- 71, -1, 73, -1, 75, -1, -1, -1, -1, 80,
- 81, 82, -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, 80, 81, 82, -1, 84, -1, 86, -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,
+ -1, 72, 73, 74, 75, 76, 77, -1, -1, 80,
+ 81, 82, 83, 84, 85, -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, -1, 72,
+ 73, 74, 75, 76, 77, -1, -1, 80, 81, 82,
+ 83, 84, 85, -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, -1, 72, 73, 74,
+ 75, 76, 77, -1, -1, 80, 81, 82, 83, 84,
+ 85, -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, 56,
- -1, -1, -1, -1, -1, -1, -1, -1, 65, 66,
- 67, -1, 69, -1, 71, -1, 73, -1, 75, -1,
- -1, -1, -1, 80, 81, 82, -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,
+ 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, -1, -1, 80, 81, 82, 83, 84, -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, -1,
+ -1, 80, 81, 82, 83, 84, -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, -1, -1, 80,
+ 81, 82, 83, 84, 85, -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, 56, -1, -1, 59, -1, -1, -1,
- -1, -1, 65, 66, 67, -1, 69, -1, 71, -1,
- 73, -1, 75, -1, -1, -1, -1, 80, 81, 82,
- -1, -1, 85, -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, -1, 69, -1, 71,
- -1, 73, -1, 75, -1, -1, -1, -1, 80, 81,
- 82, -1, 84, -1, 86, -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, -1, 72, 73,
- 74, 75, 76, 77, -1, -1, 80, 81, 82, 83,
- 84, 85, -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, -1, 72, 73, 74, 75,
- 76, 77, -1, -1, 80, 81, 82, 83, 84, 85,
- -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, -1, 72, 73, 74, 75, 76, 77,
- -1, -1, 80, 81, 82, 83, 84, 85, -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, -1, -1,
- 80, 81, 82, 83, 84, -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, -1, -1, 80, 81,
- 82, 83, 84, -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, -1, -1, 80, 81, 82, 83,
- 84, 85, -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, -1, -1, 80, 81, 82, 83, 84, 85,
- -1, -1, -1, -1, -1, -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, -1, -1, 80, 81, 82,
+ 83, 84, 85, -1, -1, -1, -1, -1, -1,
- 6, 95, 15, 21, 15, 78, 31, 6, 16, 68,
- 6, 15, 31, 6, 21, 31, 16, 6, 15, 68,
- 15, 68, 6, 15, 15, 6, 64, 68, 6, 16,
- 6, 21, 6, 15, 68, 15, 68, 31, 15, 6,
- 15, 68, 6, 31, 68, 31, 68, 15, 68, 15,
- 15, 6, 15, 68, 68, 6, 6, 78, 68, 31,
- 12, 15, 31, 16, 90, 68, 15, 15, 15, 31,
- 93, 32, 6, 31, 5, 16, 6, 6, 6, 6,
- 6, 8, 41, 68, 43, 31, 31, 6, 6, 68,
- 8, -1, 35, 6, 7, 38, 6, 41, 6, 43,
- 15, 41, 41, 43, 41, 41, 45, 33, 41, 41,
- 46, 68, 68, 15, 46, 15, 53, 41, 51, 43,
- 41, 41, 43, 15, 41, 45, 43, 41, -1, 41,
- 41, 45, 41, 31, 46, 41, 41, 46, 41, 37,
- 97, 46, 41, 46, 55, -1, 102, 46, 41, 35,
- 65, 57, 38, 46, 82, -1, 41, 41, 43, 43,
- 41, 41, 43, 65, 44, 65, 41, 41, 41, 44,
- 43, -1, 46, 65, 84, -1, 41, 96, 43, 41,
- 41, 43, 43, 35, 41, 41, 38, 43, 41, 46,
- 43, 41, 41, 43, -1, 41, 27, 31, 47, 41,
- 31, 47, 41, 37, 41, 47, 41, -1, 47, 46,
- 6, 46, 41, 41, 41, 43, -1, 41, 41, 46,
- 49, 48, 46, 46, 48, 48, 41, 41, 41, 41,
- -1, 46, 46, 46, 46, 50, 48, 33, 34, 52,
- 41, 41, 41, 41, -1, 46, 46, 46, 46, 63,
- 41, -1, 41, 41, -1, 46, 56, 46, 46, 6,
- 7, -1, 63, -1, 63, 63, 54, 6, 7, 58,
- -1, 10, 63, 41, -1, 43, -1, 24, 25, 15,
- 16, 17, 18, 19, 20, 24, 25, -1, -1, -1,
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 68, 16, 15, 68, 15, 68, 6, 31, 64, 31,
+ 31, 5, 15, 6, 31, 21, 15, 6, 6, 31,
+ 12, 6, 68, 6, 6, 6, 6, 68, 15, 31,
+ 16, 15, 6, 6, 6, 6, 6, 15, 15, 6,
+ 16, 6, 21, 6, 93, 6, 15, 78, 68, 15,
+ 90, 15, 68, 21, 6, 15, 31, 15, 68, 6,
+ 15, 68, 15, 68, 68, 95, 6, 68, 16, 31,
+ 68, 68, 31, 15, 31, 16, 32, 31, 68, 15,
+ 15, 31, 78, 6, 6, 15, 8, 15, 6, 7,
+ 6, 15, 41, 6, 43, 41, 41, 43, 41, 6,
+ -1, 46, 45, 35, 41, -1, 38, 41, 45, 35,
+ 41, 45, 38, 6, 41, 8, 43, 68, -1, 27,
+ 51, 41, 41, 31, 68, 35, 33, 46, 38, 41,
+ 65, 43, -1, 53, 15, 65, 41, 65, 43, 68,
+ 41, 65, 41, -1, 43, 46, 41, 41, 43, 43,
+ 41, 41, 43, 43, 41, 41, 43, 43, 102, 41,
+ -1, 84, 41, -1, -1, 44, 82, 41, 97, 43,
+ 41, 41, 41, 55, 41, 46, 46, 46, 41, 46,
+ 43, 41, 41, 96, 43, 41, 46, 43, 41, 41,
+ 43, 41, 41, 41, 46, 41, 41, 47, 47, 47,
+ 46, 46, 41, 31, 31, 41, 41, 46, -1, 37,
+ 37, 41, 41, 49, 43, 6, 6, 47, 8, 41,
+ 41, -1, 57, 41, 46, 46, 44, 48, 50, 41,
+ 41, -1, 41, 41, 46, 46, 48, 46, 46, 48,
+ 41, 31, 33, 34, 41, 46, 41, -1, 41, 46,
+ -1, 46, 63, 46, -1, 63, -1, 52, 41, 56,
+ 41, 54, 63, 46, 41, 46, 6, 7, -1, 46,
+ 10, 15, 16, 17, 18, 19, 20, -1, -1, -1,
+ 63, 58, 63, -1, 24, 25, 41, -1, -1, -1,
+ -1, 46, -1, 48, -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, 6, -1, 8, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, 6,
+ 7, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, 24, 25, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
- -1, 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, -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};
diff --git a/src/declarative/qml/parser/qmljsgrammar_p.h b/src/declarative/qml/parser/qmljsgrammar_p.h
index a8d4bdf..1590274 100644
--- a/src/declarative/qml/parser/qmljsgrammar_p.h
+++ b/src/declarative/qml/parser/qmljsgrammar_p.h
@@ -2,7 +2,7 @@
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
-** Contact: Nokia Corporation (qt-info@nokia.com)
+** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the QtCore module of the Qt Toolkit.
**
@@ -35,7 +35,7 @@
** met: http://www.gnu.org/copyleft/gpl.html.
**
** If you are unsure which license is appropriate for your use, please
-** contact the sales department at http://www.qtsoftware.com/contact.
+** contact the sales department at qt-sales@nokia.com.
** $QT_END_LICENSE$
**
****************************************************************************/
@@ -151,20 +151,26 @@ public:
T_XOR = 78,
T_XOR_EQ = 79,
- ACCEPT_STATE = 608,
- RULE_COUNT = 334,
- STATE_COUNT = 609,
+ ACCEPT_STATE = 615,
+ RULE_COUNT = 338,
+ STATE_COUNT = 616,
TERMINAL_COUNT = 92,
NON_TERMINAL_COUNT = 104,
- GOTO_INDEX_OFFSET = 609,
- GOTO_INFO_OFFSET = 2136,
- GOTO_CHECK_OFFSET = 2136
+ GOTO_INDEX_OFFSET = 616,
+ GOTO_INFO_OFFSET = 2139,
+ GOTO_CHECK_OFFSET = 2139
};
static const char *const spell [];
static const int lhs [];
static const int rhs [];
+
+#ifndef QLALR_NO_QMLJSGRAMMAR_DEBUG_INFO
+ static const int rule_index [];
+ static const int rule_info [];
+#endif // QLALR_NO_QMLJSGRAMMAR_DEBUG_INFO
+
static const int goto_default [];
static const int action_default [];
static const int action_index [];
diff --git a/src/declarative/qml/parser/qmljsparser.cpp b/src/declarative/qml/parser/qmljsparser.cpp
index 679d0b3..a13b425 100644
--- a/src/declarative/qml/parser/qmljsparser.cpp
+++ b/src/declarative/qml/parser/qmljsparser.cpp
@@ -1,5 +1,7 @@
// This file was generated by qlalr - DO NOT EDIT!
+#line 95 "qmljs.g"
+
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
@@ -51,6 +53,8 @@
#include "qmljsnodepool_p.h"
+#line 349 "qmljs.g"
+
#include "qmljsparser_p.h"
#include <QVarLengthArray>
@@ -193,25 +197,35 @@ bool Parser::parse()
switch (r) {
+#line 498 "qmljs.g"
+
case 0: {
program = makeAstNode<AST::UiProgram> (driver->nodePool(), sym(1).UiImportList,
sym(2).UiObjectMemberList->finish());
sym(1).UiProgram = program;
} break;
+#line 508 "qmljs.g"
+
case 2: {
sym(1).Node = sym(1).UiImportList->finish();
} break;
+#line 515 "qmljs.g"
+
case 3: {
sym(1).Node = makeAstNode<AST::UiImportList> (driver->nodePool(), sym(1).UiImport);
} break;
+#line 522 "qmljs.g"
+
case 4: {
sym(1).Node = makeAstNode<AST::UiImportList> (driver->nodePool(),
sym(1).UiImportList, sym(2).UiImport);
} break;
+#line 531 "qmljs.g"
+
case 6: {
AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).sval);
node->importToken = loc(1);
@@ -220,6 +234,8 @@ case 6: {
sym(1).Node = node;
} break;
+#line 543 "qmljs.g"
+
case 8: {
AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).sval);
node->importId = sym(4).sval;
@@ -231,16 +247,45 @@ case 8: {
sym(1).Node = node;
} break;
+#line 558 "qmljs.g"
+
case 10: {
- AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId);
+ AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId->finish());
node->importToken = loc(1);
node->fileNameToken = loc(2);
node->semicolonToken = loc(3);
sym(1).Node = node;
} break;
+#line 570 "qmljs.g"
+
case 12: {
- AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId);
+ AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId->finish());
+ node->importToken = loc(1);
+ node->fileNameToken = loc(2);
+ node->versionToken = loc(3);
+ node->semicolonToken = loc(4);
+ sym(1).Node = node;
+} break;
+
+#line 583 "qmljs.g"
+
+case 14: {
+ AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId->finish());
+ node->importId = sym(5).sval;
+ node->importToken = loc(1);
+ node->fileNameToken = loc(2);
+ node->versionToken = loc(3);
+ node->asToken = loc(4);
+ node->importIdToken = loc(5);
+ node->semicolonToken = loc(6);
+ sym(1).Node = node;
+} break;
+
+#line 599 "qmljs.g"
+
+case 16: {
+ AST::UiImport *node = makeAstNode<AST::UiImport>(driver->nodePool(), sym(2).UiQualifiedId->finish());
node->importId = sym(4).sval;
node->importToken = loc(1);
node->fileNameToken = loc(2);
@@ -250,56 +295,76 @@ case 12: {
sym(1).Node = node;
} break;
-case 13: {
+#line 613 "qmljs.g"
+
+case 17: {
sym(1).Node = 0;
} break;
-case 14: {
+#line 620 "qmljs.g"
+
+case 18: {
sym(1).Node = makeAstNode<AST::UiObjectMemberList> (driver->nodePool(), sym(1).UiObjectMember);
} break;
-case 15: {
+#line 627 "qmljs.g"
+
+case 19: {
sym(1).Node = makeAstNode<AST::UiObjectMemberList> (driver->nodePool(), sym(1).UiObjectMember);
} break;
-case 16: {
+#line 634 "qmljs.g"
+
+case 20: {
AST::UiObjectMemberList *node = makeAstNode<AST:: UiObjectMemberList> (driver->nodePool(),
sym(1).UiObjectMemberList, sym(2).UiObjectMember);
sym(1).Node = node;
} break;
-case 17: {
+#line 643 "qmljs.g"
+
+case 21: {
sym(1).Node = makeAstNode<AST::UiArrayMemberList> (driver->nodePool(), sym(1).UiObjectMember);
} break;
-case 18: {
+#line 650 "qmljs.g"
+
+case 22: {
AST::UiArrayMemberList *node = makeAstNode<AST::UiArrayMemberList> (driver->nodePool(),
sym(1).UiArrayMemberList, sym(3).UiObjectMember);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 19: {
+#line 660 "qmljs.g"
+
+case 23: {
AST::UiObjectInitializer *node = makeAstNode<AST::UiObjectInitializer> (driver->nodePool(), (AST::UiObjectMemberList*)0);
node->lbraceToken = loc(1);
node->rbraceToken = loc(2);
sym(1).Node = node;
} break;
-case 20: {
+#line 670 "qmljs.g"
+
+case 24: {
AST::UiObjectInitializer *node = makeAstNode<AST::UiObjectInitializer> (driver->nodePool(), sym(2).UiObjectMemberList->finish());
node->lbraceToken = loc(1);
node->rbraceToken = loc(3);
sym(1).Node = node;
} break;
-case 21: {
+#line 680 "qmljs.g"
+
+case 25: {
AST::UiObjectDefinition *node = makeAstNode<AST::UiObjectDefinition> (driver->nodePool(), sym(1).UiQualifiedId->finish(),
sym(2).UiObjectInitializer);
sym(1).Node = node;
} break;
-case 23: {
+#line 691 "qmljs.g"
+
+case 27: {
AST::UiArrayBinding *node = makeAstNode<AST::UiArrayBinding> (driver->nodePool(), sym(1).UiQualifiedId->finish(),
sym(4).UiArrayMemberList->finish());
node->colonToken = loc(2);
@@ -308,19 +373,25 @@ case 23: {
sym(1).Node = node;
} break;
-case 24: {
+#line 703 "qmljs.g"
+
+case 28: {
AST::StringLiteral *node = makeAstNode<AST::StringLiteral> (driver->nodePool(), sym(1).sval);
node->literalToken = loc(1);
sym(1).Node = node;
} break;
-case 26: {
+#line 713 "qmljs.g"
+
+case 30: {
AST::ExpressionStatement *node = makeAstNode<AST::ExpressionStatement> (driver->nodePool(), sym(1).Expression);
node->semicolonToken = loc(2);
sym(1).Node = node;
} break;
-case 27: {
+#line 723 "qmljs.g"
+
+case 31: {
if (AST::UiQualifiedId *qualifiedId = reparseAsQualifiedId(sym(3).Expression)) {
AST::UiObjectBinding *node = makeAstNode<AST::UiObjectBinding> (driver->nodePool(),
sym(1).UiQualifiedId->finish(), qualifiedId, sym(4).UiObjectInitializer);
@@ -335,7 +406,21 @@ case 27: {
return false; // ### recover
}
} break;
-case 28:case 29:case 30:case 31:case 32:case 33:
+
+#line 742 "qmljs.g"
+case 32:
+#line 745 "qmljs.g"
+case 33:
+#line 748 "qmljs.g"
+case 34:
+#line 751 "qmljs.g"
+case 35:
+#line 754 "qmljs.g"
+case 36:
+#line 757 "qmljs.g"
+case 37:
+#line 759 "qmljs.g"
+
{
AST::UiScriptBinding *node = makeAstNode<AST::UiScriptBinding> (driver->nodePool(), sym(1).UiQualifiedId->finish(),
sym(3).Statement);
@@ -343,35 +428,49 @@ case 28:case 29:case 30:case 31:case 32:case 33:
sym(1).Node = node;
} break;
-case 34:
+#line 769 "qmljs.g"
+
+case 38:
+
+#line 773 "qmljs.g"
-case 35: {
+case 39: {
sym(1).sval = driver->intern(lexer->characterBuffer(), lexer->characterCount());
break;
}
-case 37: {
+#line 783 "qmljs.g"
+
+case 41: {
sym(1).Node = 0;
} break;
-case 38: {
+#line 790 "qmljs.g"
+
+case 42: {
sym(1).Node = sym(1).UiParameterList->finish ();
} break;
-case 39: {
+#line 797 "qmljs.g"
+
+case 43: {
AST::UiParameterList *node = makeAstNode<AST::UiParameterList> (driver->nodePool(), sym(1).sval, sym(2).sval);
node->identifierToken = loc(2);
sym(1).Node = node;
} break;
-case 40: {
+#line 806 "qmljs.g"
+
+case 44: {
AST::UiParameterList *node = makeAstNode<AST::UiParameterList> (driver->nodePool(), sym(1).UiParameterList, sym(3).sval, sym(4).sval);
node->commaToken = loc(2);
node->identifierToken = loc(4);
sym(1).Node = node;
} break;
-case 41: {
+#line 816 "qmljs.g"
+
+case 45: {
AST::UiPublicMember *node = makeAstNode<AST::UiPublicMember> (driver->nodePool(), (NameId *)0, sym(2).sval);
node->type = AST::UiPublicMember::Signal;
node->propertyToken = loc(1);
@@ -381,7 +480,9 @@ case 41: {
sym(1).Node = node;
} break;
-case 42: {
+#line 829 "qmljs.g"
+
+case 46: {
AST::UiPublicMember *node = makeAstNode<AST::UiPublicMember> (driver->nodePool(), (NameId *)0, sym(2).sval);
node->type = AST::UiPublicMember::Signal;
node->propertyToken = loc(1);
@@ -390,7 +491,9 @@ case 42: {
sym(1).Node = node;
} break;
-case 44: {
+#line 842 "qmljs.g"
+
+case 48: {
AST::UiPublicMember *node = makeAstNode<AST::UiPublicMember> (driver->nodePool(), sym(2).sval, sym(3).sval);
node->propertyToken = loc(1);
node->typeToken = loc(2);
@@ -399,7 +502,9 @@ case 44: {
sym(1).Node = node;
} break;
-case 46: {
+#line 855 "qmljs.g"
+
+case 50: {
AST::UiPublicMember *node = makeAstNode<AST::UiPublicMember> (driver->nodePool(), sym(3).sval, sym(4).sval);
node->isDefaultMember = true;
node->defaultToken = loc(1);
@@ -410,7 +515,9 @@ case 46: {
sym(1).Node = node;
} break;
-case 48: {
+#line 870 "qmljs.g"
+
+case 52: {
AST::UiPublicMember *node = makeAstNode<AST::UiPublicMember> (driver->nodePool(), sym(2).sval, sym(3).sval,
sym(5).Expression);
node->propertyToken = loc(1);
@@ -421,7 +528,9 @@ case 48: {
sym(1).Node = node;
} break;
-case 50: {
+#line 885 "qmljs.g"
+
+case 54: {
AST::UiPublicMember *node = makeAstNode<AST::UiPublicMember> (driver->nodePool(), sym(3).sval, sym(4).sval,
sym(6).Expression);
node->isDefaultMember = true;
@@ -434,76 +543,104 @@ case 50: {
sym(1).Node = node;
} break;
-case 51: {
+#line 901 "qmljs.g"
+
+case 55: {
sym(1).Node = makeAstNode<AST::UiSourceElement>(driver->nodePool(), sym(1).Node);
} break;
-case 52: {
+#line 908 "qmljs.g"
+
+case 56: {
sym(1).Node = makeAstNode<AST::UiSourceElement>(driver->nodePool(), sym(1).Node);
} break;
-case 53:
-case 54:
+
+#line 915 "qmljs.g"
+case 57:
+#line 918 "qmljs.g"
+
+case 58:
{
AST::UiQualifiedId *node = makeAstNode<AST::UiQualifiedId> (driver->nodePool(), driver->intern(lexer->characterBuffer(), lexer->characterCount()));
node->identifierToken = loc(1);
sym(1).Node = node;
} break;
-case 56: {
+#line 930 "qmljs.g"
+
+case 60: {
QString s = QLatin1String(QmlJSGrammar::spell[T_PROPERTY]);
sym(1).sval = driver->intern(s.constData(), s.length());
break;
}
-case 57: {
+#line 939 "qmljs.g"
+
+case 61: {
QString s = QLatin1String(QmlJSGrammar::spell[T_SIGNAL]);
sym(1).sval = driver->intern(s.constData(), s.length());
break;
}
-case 58: {
+#line 952 "qmljs.g"
+
+case 62: {
AST::ThisExpression *node = makeAstNode<AST::ThisExpression> (driver->nodePool());
node->thisToken = loc(1);
sym(1).Node = node;
} break;
-case 59: {
+#line 961 "qmljs.g"
+
+case 63: {
AST::IdentifierExpression *node = makeAstNode<AST::IdentifierExpression> (driver->nodePool(), sym(1).sval);
node->identifierToken = loc(1);
sym(1).Node = node;
} break;
-case 60: {
+#line 970 "qmljs.g"
+
+case 64: {
AST::NullExpression *node = makeAstNode<AST::NullExpression> (driver->nodePool());
node->nullToken = loc(1);
sym(1).Node = node;
} break;
-case 61: {
+#line 979 "qmljs.g"
+
+case 65: {
AST::TrueLiteral *node = makeAstNode<AST::TrueLiteral> (driver->nodePool());
node->trueToken = loc(1);
sym(1).Node = node;
} break;
-case 62: {
+#line 988 "qmljs.g"
+
+case 66: {
AST::FalseLiteral *node = makeAstNode<AST::FalseLiteral> (driver->nodePool());
node->falseToken = loc(1);
sym(1).Node = node;
} break;
-case 63: {
+#line 997 "qmljs.g"
+
+case 67: {
AST::NumericLiteral *node = makeAstNode<AST::NumericLiteral> (driver->nodePool(), sym(1).dval, lexer->flags);
node->literalToken = loc(1);
sym(1).Node = node;
} break;
-case 64: {
+#line 1006 "qmljs.g"
+
+case 68: {
AST::StringLiteral *node = makeAstNode<AST::StringLiteral> (driver->nodePool(), sym(1).sval);
node->literalToken = loc(1);
sym(1).Node = node;
} break;
-case 65: {
+#line 1018 "qmljs.g"
+
+case 69: {
bool rx = lexer->scanRegExp(Lexer::NoPrefix);
if (!rx) {
diagnostic_messages.append(DiagnosticMessage(DiagnosticMessage::Error, location(lexer), lexer->errorMessage()));
@@ -514,7 +651,9 @@ case 65: {
sym(1).Node = node;
} break;
-case 66: {
+#line 1035 "qmljs.g"
+
+case 70: {
bool rx = lexer->scanRegExp(Lexer::EqualPrefix);
if (!rx) {
diagnostic_messages.append(DiagnosticMessage(DiagnosticMessage::Error, location(lexer), lexer->errorMessage()));
@@ -525,28 +664,36 @@ case 66: {
sym(1).Node = node;
} break;
-case 67: {
+#line 1049 "qmljs.g"
+
+case 71: {
AST::ArrayLiteral *node = makeAstNode<AST::ArrayLiteral> (driver->nodePool(), (AST::Elision *) 0);
node->lbracketToken = loc(1);
node->rbracketToken = loc(2);
sym(1).Node = node;
} break;
-case 68: {
+#line 1059 "qmljs.g"
+
+case 72: {
AST::ArrayLiteral *node = makeAstNode<AST::ArrayLiteral> (driver->nodePool(), sym(2).Elision->finish());
node->lbracketToken = loc(1);
node->rbracketToken = loc(3);
sym(1).Node = node;
} break;
-case 69: {
+#line 1069 "qmljs.g"
+
+case 73: {
AST::ArrayLiteral *node = makeAstNode<AST::ArrayLiteral> (driver->nodePool(), sym(2).ElementList->finish ());
node->lbracketToken = loc(1);
node->rbracketToken = loc(3);
sym(1).Node = node;
} break;
-case 70: {
+#line 1079 "qmljs.g"
+
+case 74: {
AST::ArrayLiteral *node = makeAstNode<AST::ArrayLiteral> (driver->nodePool(), sym(2).ElementList->finish (),
(AST::Elision *) 0);
node->lbracketToken = loc(1);
@@ -555,7 +702,9 @@ case 70: {
sym(1).Node = node;
} break;
-case 71: {
+#line 1091 "qmljs.g"
+
+case 75: {
AST::ArrayLiteral *node = makeAstNode<AST::ArrayLiteral> (driver->nodePool(), sym(2).ElementList->finish (),
sym(4).Elision->finish());
node->lbracketToken = loc(1);
@@ -564,7 +713,9 @@ case 71: {
sym(1).Node = node;
} break;
-case 72: {
+#line 1110 "qmljs.g"
+
+case 76: {
AST::ObjectLiteral *node = 0;
if (sym(2).Node)
node = makeAstNode<AST::ObjectLiteral> (driver->nodePool(),
@@ -576,7 +727,9 @@ case 72: {
sym(1).Node = node;
} break;
-case 73: {
+#line 1125 "qmljs.g"
+
+case 77: {
AST::ObjectLiteral *node = makeAstNode<AST::ObjectLiteral> (driver->nodePool(),
sym(2).PropertyNameAndValueList->finish ());
node->lbraceToken = loc(1);
@@ -584,67 +737,89 @@ case 73: {
sym(1).Node = node;
} break;
-case 74: {
+#line 1136 "qmljs.g"
+
+case 78: {
AST::NestedExpression *node = makeAstNode<AST::NestedExpression>(driver->nodePool(), sym(2).Expression);
node->lparenToken = loc(1);
node->rparenToken = loc(3);
sym(1).Node = node;
} break;
-case 75: {
+#line 1146 "qmljs.g"
+
+case 79: {
AST::UiQualifiedId *node = makeAstNode<AST::UiQualifiedId> (driver->nodePool(), sym(1).sval);
node->identifierToken = loc(1);
sym(1).Node = node;
} break;
-case 76: {
+#line 1155 "qmljs.g"
+
+case 80: {
AST::UiQualifiedId *node = makeAstNode<AST::UiQualifiedId> (driver->nodePool(), sym(1).UiQualifiedId, sym(3).sval);
node->identifierToken = loc(3);
sym(1).Node = node;
} break;
-case 77: {
+#line 1164 "qmljs.g"
+
+case 81: {
sym(1).Node = makeAstNode<AST::ElementList> (driver->nodePool(), (AST::Elision *) 0, sym(1).Expression);
} break;
-case 78: {
+#line 1171 "qmljs.g"
+
+case 82: {
sym(1).Node = makeAstNode<AST::ElementList> (driver->nodePool(), sym(1).Elision->finish(), sym(2).Expression);
} break;
-case 79: {
+#line 1178 "qmljs.g"
+
+case 83: {
AST::ElementList *node = makeAstNode<AST::ElementList> (driver->nodePool(), sym(1).ElementList,
(AST::Elision *) 0, sym(3).Expression);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 80: {
+#line 1188 "qmljs.g"
+
+case 84: {
AST::ElementList *node = makeAstNode<AST::ElementList> (driver->nodePool(), sym(1).ElementList, sym(3).Elision->finish(),
sym(4).Expression);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 81: {
+#line 1198 "qmljs.g"
+
+case 85: {
AST::Elision *node = makeAstNode<AST::Elision> (driver->nodePool());
node->commaToken = loc(1);
sym(1).Node = node;
} break;
-case 82: {
+#line 1207 "qmljs.g"
+
+case 86: {
AST::Elision *node = makeAstNode<AST::Elision> (driver->nodePool(), sym(1).Elision);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 83: {
+#line 1216 "qmljs.g"
+
+case 87: {
AST::PropertyNameAndValueList *node = makeAstNode<AST::PropertyNameAndValueList> (driver->nodePool(),
sym(1).PropertyName, sym(3).Expression);
node->colonToken = loc(2);
sym(1).Node = node;
} break;
-case 84: {
+#line 1226 "qmljs.g"
+
+case 88: {
AST::PropertyNameAndValueList *node = makeAstNode<AST::PropertyNameAndValueList> (driver->nodePool(),
sym(1).PropertyNameAndValueList, sym(3).PropertyName, sym(5).Expression);
node->commaToken = loc(2);
@@ -652,116 +827,196 @@ case 84: {
sym(1).Node = node;
} break;
-case 85: {
+#line 1237 "qmljs.g"
+
+case 89: {
AST::IdentifierPropertyName *node = makeAstNode<AST::IdentifierPropertyName> (driver->nodePool(), sym(1).sval);
node->propertyNameToken = loc(1);
sym(1).Node = node;
} break;
-case 86:
-case 87: {
+
+#line 1246 "qmljs.g"
+case 90:
+#line 1249 "qmljs.g"
+
+case 91: {
AST::IdentifierPropertyName *node = makeAstNode<AST::IdentifierPropertyName> (driver->nodePool(), driver->intern(lexer->characterBuffer(), lexer->characterCount()));
node->propertyNameToken = loc(1);
sym(1).Node = node;
} break;
-case 88: {
+#line 1258 "qmljs.g"
+
+case 92: {
AST::StringLiteralPropertyName *node = makeAstNode<AST::StringLiteralPropertyName> (driver->nodePool(), sym(1).sval);
node->propertyNameToken = loc(1);
sym(1).Node = node;
} break;
-case 89: {
+#line 1267 "qmljs.g"
+
+case 93: {
AST::NumericLiteralPropertyName *node = makeAstNode<AST::NumericLiteralPropertyName> (driver->nodePool(), sym(1).dval);
node->propertyNameToken = loc(1);
sym(1).Node = node;
} break;
-case 90: {
+#line 1276 "qmljs.g"
+
+case 94: {
AST::IdentifierPropertyName *node = makeAstNode<AST::IdentifierPropertyName> (driver->nodePool(), sym(1).sval);
node->propertyNameToken = loc(1);
sym(1).Node = node;
} break;
-case 91:
-
-case 92:
-
-case 93:
-
-case 94:
+#line 1285 "qmljs.g"
case 95:
+#line 1289 "qmljs.g"
+
case 96:
+#line 1293 "qmljs.g"
+
case 97:
+#line 1297 "qmljs.g"
+
case 98:
+#line 1301 "qmljs.g"
+
case 99:
+#line 1305 "qmljs.g"
+
case 100:
+#line 1309 "qmljs.g"
+
case 101:
+#line 1313 "qmljs.g"
+
case 102:
+#line 1317 "qmljs.g"
+
case 103:
+#line 1321 "qmljs.g"
+
case 104:
+#line 1325 "qmljs.g"
+
case 105:
+#line 1329 "qmljs.g"
+
case 106:
+#line 1333 "qmljs.g"
+
case 107:
+#line 1337 "qmljs.g"
+
case 108:
+#line 1341 "qmljs.g"
+
case 109:
+#line 1345 "qmljs.g"
+
case 110:
+#line 1349 "qmljs.g"
+
case 111:
+#line 1353 "qmljs.g"
+
case 112:
+#line 1357 "qmljs.g"
+
case 113:
+#line 1361 "qmljs.g"
+
case 114:
+#line 1365 "qmljs.g"
+
case 115:
+#line 1369 "qmljs.g"
+
case 116:
+#line 1373 "qmljs.g"
+
case 117:
+#line 1377 "qmljs.g"
+
case 118:
+#line 1381 "qmljs.g"
+
case 119:
+#line 1385 "qmljs.g"
+
case 120:
+#line 1389 "qmljs.g"
+
case 121:
+
+#line 1393 "qmljs.g"
+
+case 122:
+
+#line 1397 "qmljs.g"
+
+case 123:
+
+#line 1401 "qmljs.g"
+
+case 124:
+
+#line 1405 "qmljs.g"
+
+case 125:
{
sym(1).sval = driver->intern(lexer->characterBuffer(), lexer->characterCount());
} break;
-case 126: {
+#line 1419 "qmljs.g"
+
+case 130: {
AST::ArrayMemberExpression *node = makeAstNode<AST::ArrayMemberExpression> (driver->nodePool(), sym(1).Expression, sym(3).Expression);
node->lbracketToken = loc(2);
node->rbracketToken = loc(4);
sym(1).Node = node;
} break;
-case 127: {
+#line 1429 "qmljs.g"
+
+case 131: {
AST::FieldMemberExpression *node = makeAstNode<AST::FieldMemberExpression> (driver->nodePool(), sym(1).Expression, sym(3).sval);
node->dotToken = loc(2);
node->identifierToken = loc(3);
sym(1).Node = node;
} break;
-case 128: {
+#line 1439 "qmljs.g"
+
+case 132: {
AST::NewMemberExpression *node = makeAstNode<AST::NewMemberExpression> (driver->nodePool(), sym(2).Expression, sym(4).ArgumentList);
node->newToken = loc(1);
node->lparenToken = loc(3);
@@ -769,384 +1024,500 @@ case 128: {
sym(1).Node = node;
} break;
-case 130: {
+#line 1452 "qmljs.g"
+
+case 134: {
AST::NewExpression *node = makeAstNode<AST::NewExpression> (driver->nodePool(), sym(2).Expression);
node->newToken = loc(1);
sym(1).Node = node;
} break;
-case 131: {
+#line 1461 "qmljs.g"
+
+case 135: {
AST::CallExpression *node = makeAstNode<AST::CallExpression> (driver->nodePool(), sym(1).Expression, sym(3).ArgumentList);
node->lparenToken = loc(2);
node->rparenToken = loc(4);
sym(1).Node = node;
} break;
-case 132: {
+#line 1471 "qmljs.g"
+
+case 136: {
AST::CallExpression *node = makeAstNode<AST::CallExpression> (driver->nodePool(), sym(1).Expression, sym(3).ArgumentList);
node->lparenToken = loc(2);
node->rparenToken = loc(4);
sym(1).Node = node;
} break;
-case 133: {
+#line 1481 "qmljs.g"
+
+case 137: {
AST::ArrayMemberExpression *node = makeAstNode<AST::ArrayMemberExpression> (driver->nodePool(), sym(1).Expression, sym(3).Expression);
node->lbracketToken = loc(2);
node->rbracketToken = loc(4);
sym(1).Node = node;
} break;
-case 134: {
+#line 1491 "qmljs.g"
+
+case 138: {
AST::FieldMemberExpression *node = makeAstNode<AST::FieldMemberExpression> (driver->nodePool(), sym(1).Expression, sym(3).sval);
node->dotToken = loc(2);
node->identifierToken = loc(3);
sym(1).Node = node;
} break;
-case 135: {
+#line 1501 "qmljs.g"
+
+case 139: {
sym(1).Node = 0;
} break;
-case 136: {
+#line 1508 "qmljs.g"
+
+case 140: {
sym(1).Node = sym(1).ArgumentList->finish();
} break;
-case 137: {
+#line 1515 "qmljs.g"
+
+case 141: {
sym(1).Node = makeAstNode<AST::ArgumentList> (driver->nodePool(), sym(1).Expression);
} break;
-case 138: {
+#line 1522 "qmljs.g"
+
+case 142: {
AST::ArgumentList *node = makeAstNode<AST::ArgumentList> (driver->nodePool(), sym(1).ArgumentList, sym(3).Expression);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 142: {
+#line 1535 "qmljs.g"
+
+case 146: {
AST::PostIncrementExpression *node = makeAstNode<AST::PostIncrementExpression> (driver->nodePool(), sym(1).Expression);
node->incrementToken = loc(2);
sym(1).Node = node;
} break;
-case 143: {
+#line 1544 "qmljs.g"
+
+case 147: {
AST::PostDecrementExpression *node = makeAstNode<AST::PostDecrementExpression> (driver->nodePool(), sym(1).Expression);
node->decrementToken = loc(2);
sym(1).Node = node;
} break;
-case 145: {
+#line 1555 "qmljs.g"
+
+case 149: {
AST::DeleteExpression *node = makeAstNode<AST::DeleteExpression> (driver->nodePool(), sym(2).Expression);
node->deleteToken = loc(1);
sym(1).Node = node;
} break;
-case 146: {
+#line 1564 "qmljs.g"
+
+case 150: {
AST::VoidExpression *node = makeAstNode<AST::VoidExpression> (driver->nodePool(), sym(2).Expression);
node->voidToken = loc(1);
sym(1).Node = node;
} break;
-case 147: {
+#line 1573 "qmljs.g"
+
+case 151: {
AST::TypeOfExpression *node = makeAstNode<AST::TypeOfExpression> (driver->nodePool(), sym(2).Expression);
node->typeofToken = loc(1);
sym(1).Node = node;
} break;
-case 148: {
+#line 1582 "qmljs.g"
+
+case 152: {
AST::PreIncrementExpression *node = makeAstNode<AST::PreIncrementExpression> (driver->nodePool(), sym(2).Expression);
node->incrementToken = loc(1);
sym(1).Node = node;
} break;
-case 149: {
+#line 1591 "qmljs.g"
+
+case 153: {
AST::PreDecrementExpression *node = makeAstNode<AST::PreDecrementExpression> (driver->nodePool(), sym(2).Expression);
node->decrementToken = loc(1);
sym(1).Node = node;
} break;
-case 150: {
+#line 1600 "qmljs.g"
+
+case 154: {
AST::UnaryPlusExpression *node = makeAstNode<AST::UnaryPlusExpression> (driver->nodePool(), sym(2).Expression);
node->plusToken = loc(1);
sym(1).Node = node;
} break;
-case 151: {
+#line 1609 "qmljs.g"
+
+case 155: {
AST::UnaryMinusExpression *node = makeAstNode<AST::UnaryMinusExpression> (driver->nodePool(), sym(2).Expression);
node->minusToken = loc(1);
sym(1).Node = node;
} break;
-case 152: {
+#line 1618 "qmljs.g"
+
+case 156: {
AST::TildeExpression *node = makeAstNode<AST::TildeExpression> (driver->nodePool(), sym(2).Expression);
node->tildeToken = loc(1);
sym(1).Node = node;
} break;
-case 153: {
+#line 1627 "qmljs.g"
+
+case 157: {
AST::NotExpression *node = makeAstNode<AST::NotExpression> (driver->nodePool(), sym(2).Expression);
node->notToken = loc(1);
sym(1).Node = node;
} break;
-case 155: {
+#line 1638 "qmljs.g"
+
+case 159: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Mul, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 156: {
+#line 1648 "qmljs.g"
+
+case 160: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Div, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 157: {
+#line 1658 "qmljs.g"
+
+case 161: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Mod, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 159: {
+#line 1670 "qmljs.g"
+
+case 163: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Add, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 160: {
+#line 1680 "qmljs.g"
+
+case 164: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Sub, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 162: {
+#line 1692 "qmljs.g"
+
+case 166: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::LShift, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 163: {
+#line 1702 "qmljs.g"
+
+case 167: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::RShift, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 164: {
+#line 1712 "qmljs.g"
+
+case 168: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::URShift, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 166: {
+#line 1724 "qmljs.g"
+
+case 170: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Lt, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 167: {
+#line 1734 "qmljs.g"
+
+case 171: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Gt, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 168: {
+#line 1744 "qmljs.g"
+
+case 172: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Le, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 169: {
+#line 1754 "qmljs.g"
+
+case 173: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Ge, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 170: {
+#line 1764 "qmljs.g"
+
+case 174: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::InstanceOf, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 171: {
+#line 1774 "qmljs.g"
+
+case 175: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::In, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 173: {
+#line 1786 "qmljs.g"
+
+case 177: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Lt, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 174: {
+#line 1796 "qmljs.g"
+
+case 178: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Gt, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 175: {
+#line 1806 "qmljs.g"
+
+case 179: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Le, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 176: {
+#line 1816 "qmljs.g"
+
+case 180: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Ge, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 177: {
+#line 1826 "qmljs.g"
+
+case 181: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::InstanceOf, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 179: {
+#line 1838 "qmljs.g"
+
+case 183: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Equal, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 180: {
+#line 1848 "qmljs.g"
+
+case 184: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::NotEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 181: {
+#line 1858 "qmljs.g"
+
+case 185: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::StrictEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 182: {
+#line 1868 "qmljs.g"
+
+case 186: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::StrictNotEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 184: {
+#line 1880 "qmljs.g"
+
+case 188: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Equal, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 185: {
+#line 1890 "qmljs.g"
+
+case 189: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::NotEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 186: {
+#line 1900 "qmljs.g"
+
+case 190: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::StrictEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 187: {
+#line 1910 "qmljs.g"
+
+case 191: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::StrictNotEqual, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 189: {
+#line 1922 "qmljs.g"
+
+case 193: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::BitAnd, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 191: {
+#line 1934 "qmljs.g"
+
+case 195: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::BitAnd, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 193: {
+#line 1946 "qmljs.g"
+
+case 197: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::BitXor, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 195: {
+#line 1958 "qmljs.g"
+
+case 199: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::BitXor, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 197: {
+#line 1970 "qmljs.g"
+
+case 201: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::BitOr, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 199: {
+#line 1982 "qmljs.g"
+
+case 203: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::BitOr, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 201: {
+#line 1994 "qmljs.g"
+
+case 205: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::And, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 203: {
+#line 2006 "qmljs.g"
+
+case 207: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::And, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 205: {
+#line 2018 "qmljs.g"
+
+case 209: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Or, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 207: {
+#line 2030 "qmljs.g"
+
+case 211: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
QSOperator::Or, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 209: {
+#line 2042 "qmljs.g"
+
+case 213: {
AST::ConditionalExpression *node = makeAstNode<AST::ConditionalExpression> (driver->nodePool(), sym(1).Expression,
sym(3).Expression, sym(5).Expression);
node->questionToken = loc(2);
@@ -1154,7 +1525,9 @@ case 209: {
sym(1).Node = node;
} break;
-case 211: {
+#line 2055 "qmljs.g"
+
+case 215: {
AST::ConditionalExpression *node = makeAstNode<AST::ConditionalExpression> (driver->nodePool(), sym(1).Expression,
sym(3).Expression, sym(5).Expression);
node->questionToken = loc(2);
@@ -1162,112 +1535,160 @@ case 211: {
sym(1).Node = node;
} break;
-case 213: {
+#line 2068 "qmljs.g"
+
+case 217: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
sym(2).ival, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 215: {
+#line 2080 "qmljs.g"
+
+case 219: {
AST::BinaryExpression *node = makeAstNode<AST::BinaryExpression> (driver->nodePool(), sym(1).Expression,
sym(2).ival, sym(3).Expression);
node->operatorToken = loc(2);
sym(1).Node = node;
} break;
-case 216: {
+#line 2090 "qmljs.g"
+
+case 220: {
sym(1).ival = QSOperator::Assign;
} break;
-case 217: {
+#line 2097 "qmljs.g"
+
+case 221: {
sym(1).ival = QSOperator::InplaceMul;
} break;
-case 218: {
+#line 2104 "qmljs.g"
+
+case 222: {
sym(1).ival = QSOperator::InplaceDiv;
} break;
-case 219: {
+#line 2111 "qmljs.g"
+
+case 223: {
sym(1).ival = QSOperator::InplaceMod;
} break;
-case 220: {
+#line 2118 "qmljs.g"
+
+case 224: {
sym(1).ival = QSOperator::InplaceAdd;
} break;
-case 221: {
+#line 2125 "qmljs.g"
+
+case 225: {
sym(1).ival = QSOperator::InplaceSub;
} break;
-case 222: {
+#line 2132 "qmljs.g"
+
+case 226: {
sym(1).ival = QSOperator::InplaceLeftShift;
} break;
-case 223: {
+#line 2139 "qmljs.g"
+
+case 227: {
sym(1).ival = QSOperator::InplaceRightShift;
} break;
-case 224: {
+#line 2146 "qmljs.g"
+
+case 228: {
sym(1).ival = QSOperator::InplaceURightShift;
} break;
-case 225: {
+#line 2153 "qmljs.g"
+
+case 229: {
sym(1).ival = QSOperator::InplaceAnd;
} break;
-case 226: {
+#line 2160 "qmljs.g"
+
+case 230: {
sym(1).ival = QSOperator::InplaceXor;
} break;
-case 227: {
+#line 2167 "qmljs.g"
+
+case 231: {
sym(1).ival = QSOperator::InplaceOr;
} break;
-case 229: {
+#line 2176 "qmljs.g"
+
+case 233: {
AST::Expression *node = makeAstNode<AST::Expression> (driver->nodePool(), sym(1).Expression, sym(3).Expression);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 230: {
+#line 2185 "qmljs.g"
+
+case 234: {
sym(1).Node = 0;
} break;
-case 233: {
+#line 2196 "qmljs.g"
+
+case 237: {
AST::Expression *node = makeAstNode<AST::Expression> (driver->nodePool(), sym(1).Expression, sym(3).Expression);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 234: {
+#line 2205 "qmljs.g"
+
+case 238: {
sym(1).Node = 0;
} break;
-case 251: {
+#line 2231 "qmljs.g"
+
+case 255: {
AST::Block *node = makeAstNode<AST::Block> (driver->nodePool(), sym(2).StatementList);
node->lbraceToken = loc(1);
node->rbraceToken = loc(3);
sym(1).Node = node;
} break;
-case 252: {
+#line 2241 "qmljs.g"
+
+case 256: {
sym(1).Node = makeAstNode<AST::StatementList> (driver->nodePool(), sym(1).Statement);
} break;
-case 253: {
+#line 2248 "qmljs.g"
+
+case 257: {
sym(1).Node = makeAstNode<AST::StatementList> (driver->nodePool(), sym(1).StatementList, sym(2).Statement);
} break;
-case 254: {
+#line 2255 "qmljs.g"
+
+case 258: {
sym(1).Node = 0;
} break;
-case 255: {
+#line 2262 "qmljs.g"
+
+case 259: {
sym(1).Node = sym(1).StatementList->finish ();
} break;
-case 257: {
+#line 2270 "qmljs.g"
+
+case 261: {
AST::VariableStatement *node = makeAstNode<AST::VariableStatement> (driver->nodePool(),
sym(2).VariableDeclarationList->finish (/*readOnly=*/sym(1).ival == T_CONST));
node->declarationKindToken = loc(1);
@@ -1275,76 +1696,106 @@ case 257: {
sym(1).Node = node;
} break;
-case 258: {
+#line 2281 "qmljs.g"
+
+case 262: {
sym(1).ival = T_CONST;
} break;
-case 259: {
+#line 2288 "qmljs.g"
+
+case 263: {
sym(1).ival = T_VAR;
} break;
-case 260: {
+#line 2295 "qmljs.g"
+
+case 264: {
sym(1).Node = makeAstNode<AST::VariableDeclarationList> (driver->nodePool(), sym(1).VariableDeclaration);
} break;
-case 261: {
+#line 2302 "qmljs.g"
+
+case 265: {
AST::VariableDeclarationList *node = makeAstNode<AST::VariableDeclarationList> (driver->nodePool(),
sym(1).VariableDeclarationList, sym(3).VariableDeclaration);
node->commaToken = loc(2);
sym(1).Node = node;
} break;
-case 262: {
+#line 2312 "qmljs.g"
+
+case 266: {
sym(1).Node = makeAstNode<AST::VariableDeclarationList> (driver->nodePool(), sym(1).VariableDeclaration);
} break;
-case 263: {
+#line 2319 "qmljs.g"
+
+case 267: {
sym(1).Node = makeAstNode<AST::VariableDeclarationList> (driver->nodePool(), sym(1).VariableDeclarationList, sym(3).VariableDeclaration);
} break;
-case 264: {
+#line 2326 "qmljs.g"
+
+case 268: {
AST::VariableDeclaration *node = makeAstNode<AST::VariableDeclaration> (driver->nodePool(), sym(1).sval, sym(2).Expression);
node->identifierToken = loc(1);
sym(1).Node = node;
} break;
-case 265: {
+#line 2335 "qmljs.g"
+
+case 269: {
AST::VariableDeclaration *node = makeAstNode<AST::VariableDeclaration> (driver->nodePool(), sym(1).sval, sym(2).Expression);
node->identifierToken = loc(1);
sym(1).Node = node;
} break;
-case 266: {
+#line 2344 "qmljs.g"
+
+case 270: {
// ### TODO: AST for initializer
sym(1) = sym(2);
} break;
-case 267: {
+#line 2352 "qmljs.g"
+
+case 271: {
sym(1).Node = 0;
} break;
-case 269: {
+#line 2361 "qmljs.g"
+
+case 273: {
// ### TODO: AST for initializer
sym(1) = sym(2);
} break;
-case 270: {
+#line 2369 "qmljs.g"
+
+case 274: {
sym(1).Node = 0;
} break;
-case 272: {
+#line 2378 "qmljs.g"
+
+case 276: {
AST::EmptyStatement *node = makeAstNode<AST::EmptyStatement> (driver->nodePool());
node->semicolonToken = loc(1);
sym(1).Node = node;
} break;
-case 274: {
+#line 2388 "qmljs.g"
+
+case 278: {
AST::ExpressionStatement *node = makeAstNode<AST::ExpressionStatement> (driver->nodePool(), sym(1).Expression);
node->semicolonToken = loc(2);
sym(1).Node = node;
} break;
-case 275: {
+#line 2397 "qmljs.g"
+
+case 279: {
AST::IfStatement *node = makeAstNode<AST::IfStatement> (driver->nodePool(), sym(3).Expression, sym(5).Statement, sym(7).Statement);
node->ifToken = loc(1);
node->lparenToken = loc(2);
@@ -1353,7 +1804,9 @@ case 275: {
sym(1).Node = node;
} break;
-case 276: {
+#line 2409 "qmljs.g"
+
+case 280: {
AST::IfStatement *node = makeAstNode<AST::IfStatement> (driver->nodePool(), sym(3).Expression, sym(5).Statement);
node->ifToken = loc(1);
node->lparenToken = loc(2);
@@ -1361,7 +1814,9 @@ case 276: {
sym(1).Node = node;
} break;
-case 278: {
+#line 2422 "qmljs.g"
+
+case 282: {
AST::DoWhileStatement *node = makeAstNode<AST::DoWhileStatement> (driver->nodePool(), sym(2).Statement, sym(5).Expression);
node->doToken = loc(1);
node->whileToken = loc(3);
@@ -1371,7 +1826,9 @@ case 278: {
sym(1).Node = node;
} break;
-case 279: {
+#line 2435 "qmljs.g"
+
+case 283: {
AST::WhileStatement *node = makeAstNode<AST::WhileStatement> (driver->nodePool(), sym(3).Expression, sym(5).Statement);
node->whileToken = loc(1);
node->lparenToken = loc(2);
@@ -1379,7 +1836,9 @@ case 279: {
sym(1).Node = node;
} break;
-case 280: {
+#line 2446 "qmljs.g"
+
+case 284: {
AST::ForStatement *node = makeAstNode<AST::ForStatement> (driver->nodePool(), sym(3).Expression,
sym(5).Expression, sym(7).Expression, sym(9).Statement);
node->forToken = loc(1);
@@ -1390,7 +1849,9 @@ case 280: {
sym(1).Node = node;
} break;
-case 281: {
+#line 2460 "qmljs.g"
+
+case 285: {
AST::LocalForStatement *node = makeAstNode<AST::LocalForStatement> (driver->nodePool(),
sym(4).VariableDeclarationList->finish (/*readOnly=*/false), sym(6).Expression,
sym(8).Expression, sym(10).Statement);
@@ -1403,7 +1864,9 @@ case 281: {
sym(1).Node = node;
} break;
-case 282: {
+#line 2476 "qmljs.g"
+
+case 286: {
AST:: ForEachStatement *node = makeAstNode<AST::ForEachStatement> (driver->nodePool(), sym(3).Expression,
sym(5).Expression, sym(7).Statement);
node->forToken = loc(1);
@@ -1413,7 +1876,9 @@ case 282: {
sym(1).Node = node;
} break;
-case 283: {
+#line 2489 "qmljs.g"
+
+case 287: {
AST::LocalForEachStatement *node = makeAstNode<AST::LocalForEachStatement> (driver->nodePool(),
sym(4).VariableDeclaration, sym(6).Expression, sym(8).Statement);
node->forToken = loc(1);
@@ -1424,14 +1889,18 @@ case 283: {
sym(1).Node = node;
} break;
-case 285: {
+#line 2504 "qmljs.g"
+
+case 289: {
AST::ContinueStatement *node = makeAstNode<AST::ContinueStatement> (driver->nodePool());
node->continueToken = loc(1);
node->semicolonToken = loc(2);
sym(1).Node = node;
} break;
-case 287: {
+#line 2515 "qmljs.g"
+
+case 291: {
AST::ContinueStatement *node = makeAstNode<AST::ContinueStatement> (driver->nodePool(), sym(2).sval);
node->continueToken = loc(1);
node->identifierToken = loc(2);
@@ -1439,14 +1908,18 @@ case 287: {
sym(1).Node = node;
} break;
-case 289: {
+#line 2527 "qmljs.g"
+
+case 293: {
AST::BreakStatement *node = makeAstNode<AST::BreakStatement> (driver->nodePool());
node->breakToken = loc(1);
node->semicolonToken = loc(2);
sym(1).Node = node;
} break;
-case 291: {
+#line 2538 "qmljs.g"
+
+case 295: {
AST::BreakStatement *node = makeAstNode<AST::BreakStatement> (driver->nodePool(), sym(2).sval);
node->breakToken = loc(1);
node->identifierToken = loc(2);
@@ -1454,14 +1927,18 @@ case 291: {
sym(1).Node = node;
} break;
-case 293: {
+#line 2550 "qmljs.g"
+
+case 297: {
AST::ReturnStatement *node = makeAstNode<AST::ReturnStatement> (driver->nodePool(), sym(2).Expression);
node->returnToken = loc(1);
node->semicolonToken = loc(3);
sym(1).Node = node;
} break;
-case 294: {
+#line 2560 "qmljs.g"
+
+case 298: {
AST::WithStatement *node = makeAstNode<AST::WithStatement> (driver->nodePool(), sym(3).Expression, sym(5).Statement);
node->withToken = loc(1);
node->lparenToken = loc(2);
@@ -1469,7 +1946,9 @@ case 294: {
sym(1).Node = node;
} break;
-case 295: {
+#line 2571 "qmljs.g"
+
+case 299: {
AST::SwitchStatement *node = makeAstNode<AST::SwitchStatement> (driver->nodePool(), sym(3).Expression, sym(5).CaseBlock);
node->switchToken = loc(1);
node->lparenToken = loc(2);
@@ -1477,90 +1956,122 @@ case 295: {
sym(1).Node = node;
} break;
-case 296: {
+#line 2582 "qmljs.g"
+
+case 300: {
AST::CaseBlock *node = makeAstNode<AST::CaseBlock> (driver->nodePool(), sym(2).CaseClauses);
node->lbraceToken = loc(1);
node->rbraceToken = loc(3);
sym(1).Node = node;
} break;
-case 297: {
+#line 2592 "qmljs.g"
+
+case 301: {
AST::CaseBlock *node = makeAstNode<AST::CaseBlock> (driver->nodePool(), sym(2).CaseClauses, sym(3).DefaultClause, sym(4).CaseClauses);
node->lbraceToken = loc(1);
node->rbraceToken = loc(5);
sym(1).Node = node;
} break;
-case 298: {
+#line 2602 "qmljs.g"
+
+case 302: {
sym(1).Node = makeAstNode<AST::CaseClauses> (driver->nodePool(), sym(1).CaseClause);
} break;
-case 299: {
+#line 2609 "qmljs.g"
+
+case 303: {
sym(1).Node = makeAstNode<AST::CaseClauses> (driver->nodePool(), sym(1).CaseClauses, sym(2).CaseClause);
} break;
-case 300: {
+#line 2616 "qmljs.g"
+
+case 304: {
sym(1).Node = 0;
} break;
-case 301: {
+#line 2623 "qmljs.g"
+
+case 305: {
sym(1).Node = sym(1).CaseClauses->finish ();
} break;
-case 302: {
+#line 2630 "qmljs.g"
+
+case 306: {
AST::CaseClause *node = makeAstNode<AST::CaseClause> (driver->nodePool(), sym(2).Expression, sym(4).StatementList);
node->caseToken = loc(1);
node->colonToken = loc(3);
sym(1).Node = node;
} break;
-case 303: {
+#line 2640 "qmljs.g"
+
+case 307: {
AST::DefaultClause *node = makeAstNode<AST::DefaultClause> (driver->nodePool(), sym(3).StatementList);
node->defaultToken = loc(1);
node->colonToken = loc(2);
sym(1).Node = node;
} break;
-case 304:
-case 305: {
+
+#line 2650 "qmljs.g"
+case 308:
+#line 2653 "qmljs.g"
+
+case 309: {
AST::LabelledStatement *node = makeAstNode<AST::LabelledStatement> (driver->nodePool(), driver->intern(lexer->characterBuffer(), lexer->characterCount()), sym(3).Statement);
node->identifierToken = loc(1);
node->colonToken = loc(2);
sym(1).Node = node;
} break;
-case 306: {
+#line 2663 "qmljs.g"
+
+case 310: {
AST::LabelledStatement *node = makeAstNode<AST::LabelledStatement> (driver->nodePool(), sym(1).sval, sym(3).Statement);
node->identifierToken = loc(1);
node->colonToken = loc(2);
sym(1).Node = node;
} break;
-case 308: {
+#line 2674 "qmljs.g"
+
+case 312: {
AST::ThrowStatement *node = makeAstNode<AST::ThrowStatement> (driver->nodePool(), sym(2).Expression);
node->throwToken = loc(1);
node->semicolonToken = loc(3);
sym(1).Node = node;
} break;
-case 309: {
+#line 2684 "qmljs.g"
+
+case 313: {
AST::TryStatement *node = makeAstNode<AST::TryStatement> (driver->nodePool(), sym(2).Statement, sym(3).Catch);
node->tryToken = loc(1);
sym(1).Node = node;
} break;
-case 310: {
+#line 2693 "qmljs.g"
+
+case 314: {
AST::TryStatement *node = makeAstNode<AST::TryStatement> (driver->nodePool(), sym(2).Statement, sym(3).Finally);
node->tryToken = loc(1);
sym(1).Node = node;
} break;
-case 311: {
+#line 2702 "qmljs.g"
+
+case 315: {
AST::TryStatement *node = makeAstNode<AST::TryStatement> (driver->nodePool(), sym(2).Statement, sym(3).Catch, sym(4).Finally);
node->tryToken = loc(1);
sym(1).Node = node;
} break;
-case 312: {
+#line 2711 "qmljs.g"
+
+case 316: {
AST::Catch *node = makeAstNode<AST::Catch> (driver->nodePool(), sym(3).sval, sym(5).Block);
node->catchToken = loc(1);
node->lparenToken = loc(2);
@@ -1569,20 +2080,26 @@ case 312: {
sym(1).Node = node;
} break;
-case 313: {
+#line 2723 "qmljs.g"
+
+case 317: {
AST::Finally *node = makeAstNode<AST::Finally> (driver->nodePool(), sym(2).Block);
node->finallyToken = loc(1);
sym(1).Node = node;
} break;
-case 315: {
+#line 2733 "qmljs.g"
+
+case 319: {
AST::DebuggerStatement *node = makeAstNode<AST::DebuggerStatement> (driver->nodePool());
node->debuggerToken = loc(1);
node->semicolonToken = loc(2);
sym(1).Node = node;
} break;
-case 316: {
+#line 2743 "qmljs.g"
+
+case 320: {
AST::FunctionDeclaration *node = makeAstNode<AST::FunctionDeclaration> (driver->nodePool(), sym(2).sval, sym(4).FormalParameterList, sym(7).FunctionBody);
node->functionToken = loc(1);
node->identifierToken = loc(2);
@@ -1593,7 +2110,9 @@ case 316: {
sym(1).Node = node;
} break;
-case 317: {
+#line 2757 "qmljs.g"
+
+case 321: {
AST::FunctionExpression *node = makeAstNode<AST::FunctionExpression> (driver->nodePool(), sym(2).sval, sym(4).FormalParameterList, sym(7).FunctionBody);
node->functionToken = loc(1);
if (sym(2).sval)
@@ -1605,59 +2124,85 @@ case 317: {
sym(1).Node = node;
} break;
-case 318: {
+#line 2772 "qmljs.g"
+
+case 322: {
AST::FormalParameterList *node = makeAstNode<AST::FormalParameterList> (driver->nodePool(), sym(1).sval);
node->identifierToken = loc(1);
sym(1).Node = node;
} break;
-case 319: {
+#line 2781 "qmljs.g"
+
+case 323: {
AST::FormalParameterList *node = makeAstNode<AST::FormalParameterList> (driver->nodePool(), sym(1).FormalParameterList, sym(3).sval);
node->commaToken = loc(2);
node->identifierToken = loc(3);
sym(1).Node = node;
} break;
-case 320: {
+#line 2791 "qmljs.g"
+
+case 324: {
sym(1).Node = 0;
} break;
-case 321: {
+#line 2798 "qmljs.g"
+
+case 325: {
sym(1).Node = sym(1).FormalParameterList->finish ();
} break;
-case 322: {
+#line 2805 "qmljs.g"
+
+case 326: {
sym(1).Node = 0;
} break;
-case 324: {
+#line 2814 "qmljs.g"
+
+case 328: {
sym(1).Node = makeAstNode<AST::FunctionBody> (driver->nodePool(), sym(1).SourceElements->finish ());
} break;
-case 325: {
+#line 2829 "qmljs.g"
+
+case 329: {
sym(1).Node = makeAstNode<AST::SourceElements> (driver->nodePool(), sym(1).SourceElement);
} break;
-case 326: {
+#line 2836 "qmljs.g"
+
+case 330: {
sym(1).Node = makeAstNode<AST::SourceElements> (driver->nodePool(), sym(1).SourceElements, sym(2).SourceElement);
} break;
-case 327: {
+#line 2843 "qmljs.g"
+
+case 331: {
sym(1).Node = makeAstNode<AST::StatementSourceElement> (driver->nodePool(), sym(1).Statement);
} break;
-case 328: {
+#line 2850 "qmljs.g"
+
+case 332: {
sym(1).Node = makeAstNode<AST::FunctionSourceElement> (driver->nodePool(), sym(1).FunctionDeclaration);
} break;
-case 329: {
+#line 2857 "qmljs.g"
+
+case 333: {
sym(1).sval = 0;
} break;
-case 331: {
+#line 2866 "qmljs.g"
+
+case 335: {
sym(1).Node = 0;
} break;
+#line 2874 "qmljs.g"
+
} // switch
action = nt_action(state_stack[tos], lhs[r] - TERMINAL_COUNT);
} // if
diff --git a/src/declarative/qml/parser/qmljsparser_p.h b/src/declarative/qml/parser/qmljsparser_p.h
index e82c9c5..e4ca20a 100644
--- a/src/declarative/qml/parser/qmljsparser_p.h
+++ b/src/declarative/qml/parser/qmljsparser_p.h
@@ -1,5 +1,7 @@
// This file was generated by qlalr - DO NOT EDIT!
+#line 148 "qmljs.g"
+
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
@@ -198,9 +200,15 @@ protected:
-#define J_SCRIPT_REGEXPLITERAL_RULE1 65
+#line 1015 "qmljs.g"
+
+#define J_SCRIPT_REGEXPLITERAL_RULE1 69
+
+#line 1032 "qmljs.g"
+
+#define J_SCRIPT_REGEXPLITERAL_RULE2 70
-#define J_SCRIPT_REGEXPLITERAL_RULE2 66
+#line 2994 "qmljs.g"
QT_END_NAMESPACE
diff --git a/src/declarative/qml/qmlcompositetypemanager.cpp b/src/declarative/qml/qmlcompositetypemanager.cpp
index 413f820..5be86c2 100644
--- a/src/declarative/qml/qmlcompositetypemanager.cpp
+++ b/src/declarative/qml/qmlcompositetypemanager.cpp
@@ -242,19 +242,29 @@ void QmlCompositeTypeManager::setData(QmlCompositeTypeData *unit,
const QByteArray &data,
const QUrl &url)
{
+ bool ok = true;
if (!unit->data.parse(data, url)) {
-
- unit->status = QmlCompositeTypeData::Error;
- unit->errorType = QmlCompositeTypeData::GeneralError;
+ ok = false;
unit->errors << unit->data.errors();
- doComplete(unit);
-
} else {
foreach (QmlScriptParser::Import imp, unit->data.imports()) {
- engine->addImport(&unit->imports, imp.uri, imp.as, imp.version_major, imp.version_minor);
+ if (!engine->addToImport(&unit->imports, imp.uri, imp.qualifier, imp.version, imp.type==QmlScriptParser::Import::Library ? QmlEngine::LibraryImport : QmlEngine::FileImport)) {
+ QmlError error;
+ error.setUrl(url);
+ error.setDescription(tr("Import %1 unavailable").arg(imp.uri));
+ unit->errors << error;
+qDebug() << "ERR";
+ ok = false;
+ }
}
- compile(unit);
+ }
+ if (ok) {
+ compile(unit);
+ } else {
+ unit->status = QmlCompositeTypeData::Error;
+ unit->errorType = QmlCompositeTypeData::GeneralError;
+ doComplete(unit);
}
}
@@ -314,13 +324,16 @@ void QmlCompositeTypeManager::compile(QmlCompositeTypeData *unit)
continue;
}
- ref.type = engine->resolveBuiltInType(unit->imports, type);
+ QUrl url;
+ if (!engine->resolveType(unit->imports, type, &ref.type, &url)) {
+ // XXX could produce error message here.
+ }
+
if (ref.type) {
unit->types << ref;
continue;
}
- QUrl url = engine->resolveType(unit->imports, QLatin1String(type));
QmlCompositeTypeData *urlUnit = components.value(url.toString());
if (!urlUnit) {
diff --git a/src/declarative/qml/qmlengine.cpp b/src/declarative/qml/qmlengine.cpp
index 4acdd0c..f465c72 100644
--- a/src/declarative/qml/qmlengine.cpp
+++ b/src/declarative/qml/qmlengine.cpp
@@ -1,4 +1,4 @@
-/****************************************************************************
+ /****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
@@ -79,6 +79,7 @@ Q_DECLARE_METATYPE(QList<QObject *>);
QT_BEGIN_NAMESPACE
DEFINE_BOOL_CONFIG_OPTION(qmlDebugger, QML_DEBUGGER)
+DEFINE_BOOL_CONFIG_OPTION(qmlImportTrace, QML_IMPORT_TRACE)
QML_DEFINE_TYPE(QObject,Object)
@@ -1100,70 +1101,120 @@ void QmlObjectScriptClass::setProperty(QScriptValue &object,
class QmlImportsPrivate {
public:
- void add(const QString& uri, const QString& prefix, int version_major, int version_minor)
+ bool add(const QString& uri, const QString& prefix, const QString& version, QmlEngine::ImportType importType, const QStringList& importPath)
{
TypeSet *s;
if (prefix.isEmpty()) {
- s = &unqualifiedset;
+ if (importType == QmlEngine::LibraryImport && version.isEmpty()) {
+ // unversioned library imports are always qualified - if only by final URI component
+ int lastdot = uri.lastIndexOf(QLatin1Char('.'));
+ QString defaultprefix = uri.mid(lastdot+1);
+ s = set.value(defaultprefix);
+ if (!s)
+ set.insert(defaultprefix,(s=new TypeSet));
+ } else {
+ s = &unqualifiedset;
+ }
} else {
s = set.value(prefix);
if (!s)
set.insert(prefix,(s=new TypeSet));
}
QString url = uri;
+ if (importType == QmlEngine::LibraryImport) {
+ url.replace(QLatin1Char('.'),QLatin1Char('/'));
+ bool found = false;
+ foreach (QString p, importPath) {
+ QString dir = p+QLatin1Char('/')+url;
+ if (QFile::exists(dir+QLatin1String("/qmldir"))) {
+ url = dir;
+ found = true;
+ break;
+ }
+ }
+ if (!found)
+ return false;
+ }
s->urls.append(url);
- s->vmaj.append(version_major);
- s->vmin.append(version_minor);
+ s->versions.append(version);
+ s->isLibrary.append(importType == QmlEngine::LibraryImport);
+ return true;
}
QUrl find(const QString& base, const QString& type)
{
TypeSet *s = 0;
- int dot = type.indexOf(QLatin1Char('.'));
- if (dot >= 0) {
+ int slash = type.indexOf(QLatin1Char('/'));
+ if (slash >= 0) {
while (!s) {
- s = set.value(type.left(dot));
- int ndot = type.indexOf(QLatin1Char('.'),dot+1);
- if (ndot > 0)
- dot = ndot;
+ s = set.value(type.left(slash));
+ int nslash = type.indexOf(QLatin1Char('/'),slash+1);
+ if (nslash > 0)
+ slash = nslash;
else
break;
}
} else {
s = &unqualifiedset;
}
- QString unqualifiedtype = type.mid(dot+1);
+ QString unqualifiedtype = type.mid(slash+1);
QUrl baseUrl(base);
if (s) {
for (int i=0; i<s->urls.count(); ++i) {
QUrl url = baseUrl.resolved(QUrl(s->urls.at(i) +QLatin1String("/")+ unqualifiedtype + QLatin1String(".qml")));
+ QString version = s->versions.at(i);
// XXX search non-files too! (eg. zip files, see QT-524)
QFileInfo f(url.toLocalFile());
- if (f.exists())
- return url;
+ if (f.exists()) {
+ bool ok=true;
+ if (!version.isEmpty()) {
+ ok=false;
+ // Check version file - XXX cache these in QmlEngine!
+ QFile qmldir(s->urls.at(i)+QLatin1String("/qmldir"));
+ if (qmldir.open(QIODevice::ReadOnly)) {
+ do {
+ QString line = QString::fromUtf8(qmldir.readLine());
+ if (line.at(0) == QLatin1Char('#'))
+ continue;
+ int space1 = line.indexOf(QLatin1Char(' '));
+ int space2 = space1 >=0 ? line.indexOf(QLatin1Char(' '),space1+1) : -1;
+ QStringRef maptype = line.leftRef(space1);
+ QStringRef mapversion = line.midRef(space1+1,space2<0?line.length()-space1-2:space2-space1-1);
+ QStringRef mapfile = space2<0 ? QStringRef() : line.midRef(space2+1,line.length()-space2-2);
+ if (maptype==unqualifiedtype && mapversion==version) {
+ if (mapfile.isEmpty())
+ return url;
+ else
+ return url.resolved(mapfile.toString());
+ }
+ } while (!qmldir.atEnd());
+ }
+ }
+ if (ok)
+ return url;
+ }
}
}
return baseUrl.resolved(QUrl(type + QLatin1String(".qml")));
}
- QmlType *findBuiltin(const QString& base, const QByteArray& type)
+ QmlType *findBuiltin(const QString&, const QByteArray& type)
{
- // XXX import only have one space of imports!
TypeSet *s = 0;
- int dot = type.indexOf('.');
- if (dot >= 0) {
+ int slash = type.indexOf('/');
+ if (slash >= 0) {
while (!s) {
- s = set.value(QString::fromLatin1(type.left(dot)));
- int ndot = type.indexOf('.',dot+1);
- if (ndot > 0)
- dot = ndot;
+ s = set.value(QString::fromLatin1(type.left(slash)));
+ int nslash = type.indexOf('/',slash+1);
+ if (nslash > 0)
+ slash = nslash;
else
break;
}
} else {
s = &unqualifiedset;
}
- QByteArray unqualifiedtype = dot < 0 ? type : type.mid(dot+1); // common-case opt (QString::mid works fine, but slower)
+ QByteArray unqualifiedtype = slash < 0 ? type : type.mid(slash+1); // common-case opt (QString::mid works fine, but slower)
if (s) {
for (int i=0; i<s->urls.count(); ++i) {
QmlType *t = QmlMetaType::qmlType(s->urls.at(i).toLatin1()+"/"+unqualifiedtype);
@@ -1176,8 +1227,8 @@ public:
private:
struct TypeSet {
QStringList urls;
- QList<int> vmaj;
- QList<int> vmin;
+ QStringList versions;
+ QList<bool> isLibrary;
};
TypeSet unqualifiedset;
QHash<QString,TypeSet* > set;
@@ -1197,19 +1248,44 @@ void QmlEngine::Imports::setBaseUrl(const QUrl& url)
base = url;
}
-void QmlEngine::addImport(Imports* imports, const QString& uri, const QString& prefix, int version_major, int version_minor) const
+void QmlEngine::addImportPath(const QString& path)
{
- imports->d->add(uri,prefix,version_major,version_minor);
+ if (qmlImportTrace())
+ qDebug() << "QmlEngine::addImportPath" << path;
+ Q_D(QmlEngine);
+ d->fileImportPath.prepend(path);
}
-QUrl QmlEngine::resolveType(const Imports& imports, const QString& type) const
+bool QmlEngine::addToImport(Imports* imports, const QString& uri, const QString& prefix, const QString& version, ImportType importType) const
{
- return imports.d->find(imports.base,type);
+ Q_D(const QmlEngine);
+ bool ok = imports->d->add(uri,prefix,version,importType,d->fileImportPath);
+ if (qmlImportTrace())
+ qDebug() << "QmlEngine::addToImport(" << imports << uri << prefix << version << (importType==LibraryImport ? "Library" : "File") << ": " << ok;
+ return ok;
}
-QmlType* QmlEngine::resolveBuiltInType(const Imports& imports, const QByteArray& type) const
+bool QmlEngine::resolveType(const Imports& imports, const QByteArray& type, QmlType** type_return, QUrl* url_return) const
{
- return imports.d->findBuiltin(imports.base,type);
+ Q_D(const QmlEngine);
+ QmlType* t = imports.d->findBuiltin(imports.base,type);
+ if (t) {
+ if (type_return) *type_return = t;
+ if (qmlImportTrace())
+ qDebug() << "QmlEngine::resolveType" << type << "= (builtin)";
+ return true;
+ }
+ QUrl url = imports.d->find(imports.base,type);
+ if (url.isValid()) {
+ if (url_return) *url_return = url;
+ if (qmlImportTrace())
+ qDebug() << "QmlEngine::resolveType" << type << "=" << url;
+ return true;
+ }
+ if (qmlImportTrace())
+ qDebug() << "QmlEngine::resolveType" << type << " not found";
+ return false;
}
+
QT_END_NAMESPACE
diff --git a/src/declarative/qml/qmlengine.h b/src/declarative/qml/qmlengine.h
index 0c9da39..6a418b5 100644
--- a/src/declarative/qml/qmlengine.h
+++ b/src/declarative/qml/qmlengine.h
@@ -87,9 +87,10 @@ public:
QUrl base;
QmlImportsPrivate *d;
};
- void addImport(Imports*, const QString& uri, const QString& prefix, int version_major, int version_minor) const;
- QUrl resolveType(const Imports&, const QString& type) const;
- QmlType* resolveBuiltInType(const Imports& imports, const QByteArray& type) const;
+ void addImportPath(const QString& dir);
+ enum ImportType { LibraryImport, FileImport };
+ bool addToImport(Imports*, const QString& uri, const QString& prefix, const QString& version, ImportType type) const;
+ bool resolveType(const Imports&, const QByteArray& type, QmlType** type_return, QUrl* url_return ) const;
void setNetworkAccessManager(QNetworkAccessManager *);
QNetworkAccessManager *networkAccessManager() const;
diff --git a/src/declarative/qml/qmlengine_p.h b/src/declarative/qml/qmlengine_p.h
index 9a8b9fb..b9d3833 100644
--- a/src/declarative/qml/qmlengine_p.h
+++ b/src/declarative/qml/qmlengine_p.h
@@ -164,6 +164,7 @@ public:
mutable QNetworkAccessManager *networkAccessManager;
QmlCompositeTypeManager typeManager;
+ QStringList fileImportPath;
mutable quint32 uniqueId;
quint32 getUniqueId() const {
diff --git a/src/declarative/qml/qmlscriptparser.cpp b/src/declarative/qml/qmlscriptparser.cpp
index cf4691f..f26266b 100644
--- a/src/declarative/qml/qmlscriptparser.cpp
+++ b/src/declarative/qml/qmlscriptparser.cpp
@@ -477,13 +477,12 @@ bool ProcessAST::visit(AST::UiImport *node)
AST::SourceLocation endLoc = node->semicolonToken;
if (node->importId)
- import.as = node->importId->asString();
+ import.qualifier = node->importId->asString();
+ if (node->versionToken.isValid())
+ import.version = textAt(node->versionToken);
import.location = location(startLoc, endLoc);
import.uri = uri;
- // XXX not parsed yet...
- import.version_major = 0;
- import.version_minor = 0;
_parser->_imports << import;
diff --git a/src/declarative/qml/qmlscriptparser_p.h b/src/declarative/qml/qmlscriptparser_p.h
index 065c1c0..355ff75 100644
--- a/src/declarative/qml/qmlscriptparser_p.h
+++ b/src/declarative/qml/qmlscriptparser_p.h
@@ -72,15 +72,14 @@ public:
class Import
{
public:
- Import() : type(Library), version_major(0), version_minor(0) {}
+ Import() : type(Library) {}
enum Type { Library, File };
Type type;
QString uri;
- QString as; // prefix for qualification
- int version_major;
- int version_minor;
+ QString qualifier;
+ QString version;
QmlParser::LocationSpan location;
};
diff --git a/tools/qmlviewer/main.cpp b/tools/qmlviewer/main.cpp
index 335c609..5e5a50a 100644
--- a/tools/qmlviewer/main.cpp
+++ b/tools/qmlviewer/main.cpp
@@ -124,6 +124,8 @@ int main(int argc, char ** argv)
usage();
translationFile = argv[i + 1];
++i;
+ } else if (arg == "-L") {
+ libraries << QString(argv[++i]);
} else if (arg[0] != '-') {
fileName = arg;
} else if (1 || arg == "-help") {
@@ -138,6 +140,8 @@ int main(int argc, char ** argv)
}
QmlViewer viewer(testMode, testDir, 0, frameless ? Qt::FramelessWindowHint : Qt::Widget);
+ foreach (QString lib, libraries)
+ viewer.addLibraryPath(lib);
viewer.setCacheEnabled(cache);
viewer.setRecordFile(recordfile);
if (period>0)
@@ -160,4 +164,3 @@ int main(int argc, char ** argv)
return app.exec();
}
-
diff --git a/tools/qmlviewer/qmlviewer.cpp b/tools/qmlviewer/qmlviewer.cpp
index e212391..a769888 100644
--- a/tools/qmlviewer/qmlviewer.cpp
+++ b/tools/qmlviewer/qmlviewer.cpp
@@ -325,6 +325,11 @@ void QmlViewer::toggleRecording()
setRecording(recording);
}
+void QmlViewer::addLibraryPath(const QString& lib)
+{
+ canvas->engine()->addImportPath(lib);
+}
+
void QmlViewer::reload()
{
openQml(currentFileName);