mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
33487 lines
2.2 MiB
Executable file
33487 lines
2.2 MiB
Executable file
// This file was generated on Sat Feb 16, 2013 21:06 (UTC+01) by REx v5.23 which is Copyright (c) 1979-2013 by Gunther Rademacher <grd@gmx.net>
|
|
// REx command line: XQueryParser.ebnf -ll 2 -backtrack -tree -javascript -a xqlint
|
|
|
|
// line 2 "XQueryParser.ebnf"
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Distributed under the BSD license:
|
|
*
|
|
* Copyright (c) 2010, Ajax.org B.V.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* * Neither the name of Ajax.org B.V. nor the
|
|
* names of its contributors may be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
define(function(require, exports, module){
|
|
var XQueryParser = exports.XQueryParser = function XQueryParser(string, parsingEventHandler)
|
|
{
|
|
init(string, parsingEventHandler);
|
|
// line 40 "XQueryParser.js"
|
|
var self = this;
|
|
|
|
this.ParseException = function(b, e, s, o, x)
|
|
{
|
|
var
|
|
begin = b,
|
|
end = e,
|
|
state = s,
|
|
offending = o,
|
|
expected = x;
|
|
|
|
this.getBegin = function() {return begin;};
|
|
this.getEnd = function() {return end;};
|
|
this.getState = function() {return state;};
|
|
this.getExpected = function() {return expected;};
|
|
this.getOffending = function() {return offending;};
|
|
|
|
this.getMessage = function()
|
|
{
|
|
return offending < 0 ? "lexical analysis failed" : "syntax error";
|
|
};
|
|
};
|
|
|
|
function init(string, parsingEventHandler)
|
|
{
|
|
eventHandler = parsingEventHandler;
|
|
input = string;
|
|
size = string.length;
|
|
reset(0, 0, 0);
|
|
}
|
|
|
|
this.getInput = function()
|
|
{
|
|
return input;
|
|
};
|
|
|
|
function reset(l, b, e)
|
|
{
|
|
b0 = b; e0 = b;
|
|
l1 = l; b1 = b; e1 = e;
|
|
l2 = 0;
|
|
end = e;
|
|
ex = -1;
|
|
memo = {};
|
|
eventHandler.reset(input);
|
|
}
|
|
|
|
this.getOffendingToken = function(e)
|
|
{
|
|
var o = e.getOffending();
|
|
return o >= 0 ? XQueryParser.TOKEN[o] : null;
|
|
};
|
|
|
|
this.getExpectedTokenSet = function(e)
|
|
{
|
|
var expected;
|
|
if (e.getExpected() < 0)
|
|
{
|
|
expected = XQueryParser.getTokenSet(- e.getState());
|
|
}
|
|
else
|
|
{
|
|
expected = [XQueryParser.TOKEN[e.getExpected()]];
|
|
}
|
|
return expected;
|
|
};
|
|
|
|
this.getErrorMessage = function(e)
|
|
{
|
|
var tokenSet = this.getExpectedTokenSet(e);
|
|
var found = this.getOffendingToken(e);
|
|
var prefix = input.substring(0, e.getBegin());
|
|
var lines = prefix.split("\n");
|
|
var line = lines.length;
|
|
var column = lines[line - 1].length + 1;
|
|
var size = e.getEnd() - e.getBegin();
|
|
return e.getMessage()
|
|
+ (found == null ? "" : ", found " + found)
|
|
+ "\nwhile expecting "
|
|
+ (tokenSet.length == 1 ? tokenSet[0] : ("[" + tokenSet.join(", ") + "]"))
|
|
+ "\n"
|
|
+ (size == 0 || found != null ? "" : "after successfully scanning " + size + " characters beginning ")
|
|
+ "at line " + line + ", column " + column + ":\n..."
|
|
+ input.substring(e.getBegin(), Math.min(input.length, e.getBegin() + 64))
|
|
+ "...";
|
|
};
|
|
|
|
this.parse_XQuery = function()
|
|
{
|
|
eventHandler.startNonterminal("XQuery", e0);
|
|
lookahead1W(268); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Module();
|
|
shift(25); // EOF
|
|
eventHandler.endNonterminal("XQuery", e0);
|
|
};
|
|
|
|
function parse_Module()
|
|
{
|
|
eventHandler.startNonterminal("Module", e0);
|
|
switch (l1)
|
|
{
|
|
case 274: // 'xquery'
|
|
lookahead2W(199); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'encoding' | 'eq' | 'except' | 'ge' | 'gt' |
|
|
// 'idiv' | 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' |
|
|
// 'to' | 'treat' | 'union' | 'version' | '|' | '||'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 64274 // 'xquery' 'encoding'
|
|
|| lk == 134930) // 'xquery' 'version'
|
|
{
|
|
parse_VersionDecl();
|
|
}
|
|
lookahead1W(268); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
switch (l1)
|
|
{
|
|
case 182: // 'module'
|
|
lookahead2W(194); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'namespace' | 'ne' |
|
|
// 'or' | 'to' | 'treat' | 'union' | '|' | '||'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 94390: // 'module' 'namespace'
|
|
whitespace();
|
|
parse_LibraryModule();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_MainModule();
|
|
}
|
|
eventHandler.endNonterminal("Module", e0);
|
|
}
|
|
|
|
function parse_VersionDecl()
|
|
{
|
|
eventHandler.startNonterminal("VersionDecl", e0);
|
|
shift(274); // 'xquery'
|
|
lookahead1W(116); // S^WS | '(:' | 'encoding' | 'version'
|
|
switch (l1)
|
|
{
|
|
case 125: // 'encoding'
|
|
shift(125); // 'encoding'
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shift(11); // StringLiteral
|
|
break;
|
|
default:
|
|
shift(263); // 'version'
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shift(11); // StringLiteral
|
|
lookahead1W(109); // S^WS | '(:' | ';' | 'encoding'
|
|
if (l1 == 125) // 'encoding'
|
|
{
|
|
shift(125); // 'encoding'
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shift(11); // StringLiteral
|
|
}
|
|
}
|
|
lookahead1W(28); // S^WS | '(:' | ';'
|
|
whitespace();
|
|
parse_Separator();
|
|
eventHandler.endNonterminal("VersionDecl", e0);
|
|
}
|
|
|
|
function parse_LibraryModule()
|
|
{
|
|
eventHandler.startNonterminal("LibraryModule", e0);
|
|
parse_ModuleDecl();
|
|
lookahead1W(138); // S^WS | EOF | '(:' | 'declare' | 'import'
|
|
whitespace();
|
|
parse_Prolog();
|
|
eventHandler.endNonterminal("LibraryModule", e0);
|
|
}
|
|
|
|
function parse_ModuleDecl()
|
|
{
|
|
eventHandler.startNonterminal("ModuleDecl", e0);
|
|
shift(182); // 'module'
|
|
lookahead1W(61); // S^WS | '(:' | 'namespace'
|
|
shift(184); // 'namespace'
|
|
lookahead1W(247); // NCName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_NCName();
|
|
lookahead1W(29); // S^WS | '(:' | '='
|
|
shift(60); // '='
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
lookahead1W(28); // S^WS | '(:' | ';'
|
|
whitespace();
|
|
parse_Separator();
|
|
eventHandler.endNonterminal("ModuleDecl", e0);
|
|
}
|
|
|
|
function parse_Prolog()
|
|
{
|
|
eventHandler.startNonterminal("Prolog", e0);
|
|
for (;;)
|
|
{
|
|
lookahead1W(268); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
switch (l1)
|
|
{
|
|
case 108: // 'declare'
|
|
lookahead2W(213); // S^WS | EOF | '!' | '!=' | '#' | '%' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' |
|
|
// 'base-uri' | 'boundary-space' | 'cast' | 'castable' | 'collection' |
|
|
// 'construction' | 'contains' | 'context' | 'copy-namespaces' | 'decimal-format' |
|
|
// 'default' | 'div' | 'eq' | 'except' | 'ft-option' | 'function' | 'ge' | 'gt' |
|
|
// 'idiv' | 'index' | 'instance' | 'integrity' | 'intersect' | 'is' | 'le' | 'lt' |
|
|
// 'mod' | 'namespace' | 'ne' | 'option' | 'or' | 'ordering' | 'revalidation' |
|
|
// 'to' | 'treat' | 'union' | 'updating' | 'variable' | '|' | '||'
|
|
break;
|
|
case 153: // 'import'
|
|
lookahead2W(201); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'module' | 'ne' | 'or' |
|
|
// 'schema' | 'to' | 'treat' | 'union' | '|' | '||'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk != 42604 // 'declare' 'base-uri'
|
|
&& lk != 43628 // 'declare' 'boundary-space'
|
|
&& lk != 50284 // 'declare' 'construction'
|
|
&& lk != 53356 // 'declare' 'copy-namespaces'
|
|
&& lk != 54380 // 'declare' 'decimal-format'
|
|
&& lk != 55916 // 'declare' 'default'
|
|
&& lk != 72300 // 'declare' 'ft-option'
|
|
&& lk != 93337 // 'import' 'module'
|
|
&& lk != 94316 // 'declare' 'namespace'
|
|
&& lk != 104044 // 'declare' 'ordering'
|
|
&& lk != 113772 // 'declare' 'revalidation'
|
|
&& lk != 115353) // 'import' 'schema'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 108: // 'declare'
|
|
lookahead2W(178); // S^WS | '(:' | 'base-uri' | 'boundary-space' | 'construction' |
|
|
// 'copy-namespaces' | 'decimal-format' | 'default' | 'ft-option' | 'namespace' |
|
|
// 'ordering' | 'revalidation'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 55916) // 'declare' 'default'
|
|
{
|
|
lk = memoized(0, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_DefaultNamespaceDecl();
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(0, e0, lk);
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
whitespace();
|
|
parse_DefaultNamespaceDecl();
|
|
break;
|
|
case 94316: // 'declare' 'namespace'
|
|
whitespace();
|
|
parse_NamespaceDecl();
|
|
break;
|
|
case 153: // 'import'
|
|
whitespace();
|
|
parse_Import();
|
|
break;
|
|
case 72300: // 'declare' 'ft-option'
|
|
whitespace();
|
|
parse_FTOptionDecl();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_Setter();
|
|
}
|
|
lookahead1W(28); // S^WS | '(:' | ';'
|
|
whitespace();
|
|
parse_Separator();
|
|
}
|
|
for (;;)
|
|
{
|
|
lookahead1W(268); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
switch (l1)
|
|
{
|
|
case 108: // 'declare'
|
|
lookahead2W(210); // S^WS | EOF | '!' | '!=' | '#' | '%' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'collection' | 'contains' | 'context' | 'div' | 'eq' | 'except' |
|
|
// 'function' | 'ge' | 'gt' | 'idiv' | 'index' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'option' | 'or' | 'to' |
|
|
// 'treat' | 'union' | 'updating' | 'variable' | '|' | '||'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk != 16492 // 'declare' '%'
|
|
&& lk != 48748 // 'declare' 'collection'
|
|
&& lk != 51820 // 'declare' 'context'
|
|
&& lk != 74348 // 'declare' 'function'
|
|
&& lk != 79468 // 'declare' 'index'
|
|
&& lk != 82540 // 'declare' 'integrity'
|
|
&& lk != 101996 // 'declare' 'option'
|
|
&& lk != 131692 // 'declare' 'updating'
|
|
&& lk != 134252) // 'declare' 'variable'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 108: // 'declare'
|
|
lookahead2W(175); // S^WS | '%' | '(:' | 'collection' | 'context' | 'function' | 'index' |
|
|
// 'integrity' | 'option' | 'updating' | 'variable'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 51820: // 'declare' 'context'
|
|
whitespace();
|
|
parse_ContextItemDecl();
|
|
break;
|
|
case 101996: // 'declare' 'option'
|
|
whitespace();
|
|
parse_OptionDecl();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_AnnotatedDecl();
|
|
}
|
|
lookahead1W(28); // S^WS | '(:' | ';'
|
|
whitespace();
|
|
parse_Separator();
|
|
}
|
|
eventHandler.endNonterminal("Prolog", e0);
|
|
}
|
|
|
|
function parse_Separator()
|
|
{
|
|
eventHandler.startNonterminal("Separator", e0);
|
|
shift(53); // ';'
|
|
eventHandler.endNonterminal("Separator", e0);
|
|
}
|
|
|
|
function parse_Setter()
|
|
{
|
|
eventHandler.startNonterminal("Setter", e0);
|
|
switch (l1)
|
|
{
|
|
case 108: // 'declare'
|
|
lookahead2W(172); // S^WS | '(:' | 'base-uri' | 'boundary-space' | 'construction' |
|
|
// 'copy-namespaces' | 'decimal-format' | 'default' | 'ordering' | 'revalidation'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 55916) // 'declare' 'default'
|
|
{
|
|
lk = memoized(1, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_DefaultCollationDecl();
|
|
lk = -2;
|
|
}
|
|
catch (p2A)
|
|
{
|
|
try
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
try_EmptyOrderDecl();
|
|
lk = -6;
|
|
}
|
|
catch (p6A)
|
|
{
|
|
lk = -9;
|
|
}
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(1, e0, lk);
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 43628: // 'declare' 'boundary-space'
|
|
parse_BoundarySpaceDecl();
|
|
break;
|
|
case -2:
|
|
parse_DefaultCollationDecl();
|
|
break;
|
|
case 42604: // 'declare' 'base-uri'
|
|
parse_BaseURIDecl();
|
|
break;
|
|
case 50284: // 'declare' 'construction'
|
|
parse_ConstructionDecl();
|
|
break;
|
|
case 104044: // 'declare' 'ordering'
|
|
parse_OrderingModeDecl();
|
|
break;
|
|
case -6:
|
|
parse_EmptyOrderDecl();
|
|
break;
|
|
case 113772: // 'declare' 'revalidation'
|
|
parse_RevalidationDecl();
|
|
break;
|
|
case 53356: // 'declare' 'copy-namespaces'
|
|
parse_CopyNamespacesDecl();
|
|
break;
|
|
default:
|
|
parse_DecimalFormatDecl();
|
|
}
|
|
eventHandler.endNonterminal("Setter", e0);
|
|
}
|
|
|
|
function parse_BoundarySpaceDecl()
|
|
{
|
|
eventHandler.startNonterminal("BoundarySpaceDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(33); // S^WS | '(:' | 'boundary-space'
|
|
shift(85); // 'boundary-space'
|
|
lookahead1W(133); // S^WS | '(:' | 'preserve' | 'strip'
|
|
switch (l1)
|
|
{
|
|
case 214: // 'preserve'
|
|
shift(214); // 'preserve'
|
|
break;
|
|
default:
|
|
shift(241); // 'strip'
|
|
}
|
|
eventHandler.endNonterminal("BoundarySpaceDecl", e0);
|
|
}
|
|
|
|
function parse_DefaultCollationDecl()
|
|
{
|
|
eventHandler.startNonterminal("DefaultCollationDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(46); // S^WS | '(:' | 'default'
|
|
shift(109); // 'default'
|
|
lookahead1W(38); // S^WS | '(:' | 'collation'
|
|
shift(94); // 'collation'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
eventHandler.endNonterminal("DefaultCollationDecl", e0);
|
|
}
|
|
|
|
function try_DefaultCollationDecl()
|
|
{
|
|
shiftT(108); // 'declare'
|
|
lookahead1W(46); // S^WS | '(:' | 'default'
|
|
shiftT(109); // 'default'
|
|
lookahead1W(38); // S^WS | '(:' | 'collation'
|
|
shiftT(94); // 'collation'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shiftT(7); // URILiteral
|
|
}
|
|
|
|
function parse_BaseURIDecl()
|
|
{
|
|
eventHandler.startNonterminal("BaseURIDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(32); // S^WS | '(:' | 'base-uri'
|
|
shift(83); // 'base-uri'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
eventHandler.endNonterminal("BaseURIDecl", e0);
|
|
}
|
|
|
|
function parse_ConstructionDecl()
|
|
{
|
|
eventHandler.startNonterminal("ConstructionDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(41); // S^WS | '(:' | 'construction'
|
|
shift(98); // 'construction'
|
|
lookahead1W(133); // S^WS | '(:' | 'preserve' | 'strip'
|
|
switch (l1)
|
|
{
|
|
case 241: // 'strip'
|
|
shift(241); // 'strip'
|
|
break;
|
|
default:
|
|
shift(214); // 'preserve'
|
|
}
|
|
eventHandler.endNonterminal("ConstructionDecl", e0);
|
|
}
|
|
|
|
function parse_OrderingModeDecl()
|
|
{
|
|
eventHandler.startNonterminal("OrderingModeDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(68); // S^WS | '(:' | 'ordering'
|
|
shift(203); // 'ordering'
|
|
lookahead1W(131); // S^WS | '(:' | 'ordered' | 'unordered'
|
|
switch (l1)
|
|
{
|
|
case 202: // 'ordered'
|
|
shift(202); // 'ordered'
|
|
break;
|
|
default:
|
|
shift(256); // 'unordered'
|
|
}
|
|
eventHandler.endNonterminal("OrderingModeDecl", e0);
|
|
}
|
|
|
|
function parse_EmptyOrderDecl()
|
|
{
|
|
eventHandler.startNonterminal("EmptyOrderDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(46); // S^WS | '(:' | 'default'
|
|
shift(109); // 'default'
|
|
lookahead1W(67); // S^WS | '(:' | 'order'
|
|
shift(201); // 'order'
|
|
lookahead1W(49); // S^WS | '(:' | 'empty'
|
|
shift(123); // 'empty'
|
|
lookahead1W(121); // S^WS | '(:' | 'greatest' | 'least'
|
|
switch (l1)
|
|
{
|
|
case 147: // 'greatest'
|
|
shift(147); // 'greatest'
|
|
break;
|
|
default:
|
|
shift(173); // 'least'
|
|
}
|
|
eventHandler.endNonterminal("EmptyOrderDecl", e0);
|
|
}
|
|
|
|
function try_EmptyOrderDecl()
|
|
{
|
|
shiftT(108); // 'declare'
|
|
lookahead1W(46); // S^WS | '(:' | 'default'
|
|
shiftT(109); // 'default'
|
|
lookahead1W(67); // S^WS | '(:' | 'order'
|
|
shiftT(201); // 'order'
|
|
lookahead1W(49); // S^WS | '(:' | 'empty'
|
|
shiftT(123); // 'empty'
|
|
lookahead1W(121); // S^WS | '(:' | 'greatest' | 'least'
|
|
switch (l1)
|
|
{
|
|
case 147: // 'greatest'
|
|
shiftT(147); // 'greatest'
|
|
break;
|
|
default:
|
|
shiftT(173); // 'least'
|
|
}
|
|
}
|
|
|
|
function parse_CopyNamespacesDecl()
|
|
{
|
|
eventHandler.startNonterminal("CopyNamespacesDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(44); // S^WS | '(:' | 'copy-namespaces'
|
|
shift(104); // 'copy-namespaces'
|
|
lookahead1W(128); // S^WS | '(:' | 'no-preserve' | 'preserve'
|
|
whitespace();
|
|
parse_PreserveMode();
|
|
lookahead1W(25); // S^WS | '(:' | ','
|
|
shift(41); // ','
|
|
lookahead1W(123); // S^WS | '(:' | 'inherit' | 'no-inherit'
|
|
whitespace();
|
|
parse_InheritMode();
|
|
eventHandler.endNonterminal("CopyNamespacesDecl", e0);
|
|
}
|
|
|
|
function parse_PreserveMode()
|
|
{
|
|
eventHandler.startNonterminal("PreserveMode", e0);
|
|
switch (l1)
|
|
{
|
|
case 214: // 'preserve'
|
|
shift(214); // 'preserve'
|
|
break;
|
|
default:
|
|
shift(190); // 'no-preserve'
|
|
}
|
|
eventHandler.endNonterminal("PreserveMode", e0);
|
|
}
|
|
|
|
function parse_InheritMode()
|
|
{
|
|
eventHandler.startNonterminal("InheritMode", e0);
|
|
switch (l1)
|
|
{
|
|
case 157: // 'inherit'
|
|
shift(157); // 'inherit'
|
|
break;
|
|
default:
|
|
shift(189); // 'no-inherit'
|
|
}
|
|
eventHandler.endNonterminal("InheritMode", e0);
|
|
}
|
|
|
|
function parse_DecimalFormatDecl()
|
|
{
|
|
eventHandler.startNonterminal("DecimalFormatDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(114); // S^WS | '(:' | 'decimal-format' | 'default'
|
|
switch (l1)
|
|
{
|
|
case 106: // 'decimal-format'
|
|
shift(106); // 'decimal-format'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_EQName();
|
|
break;
|
|
default:
|
|
shift(109); // 'default'
|
|
lookahead1W(45); // S^WS | '(:' | 'decimal-format'
|
|
shift(106); // 'decimal-format'
|
|
}
|
|
for (;;)
|
|
{
|
|
lookahead1W(180); // S^WS | '(:' | ';' | 'NaN' | 'decimal-separator' | 'digit' |
|
|
// 'grouping-separator' | 'infinity' | 'minus-sign' | 'pattern-separator' |
|
|
// 'per-mille' | 'percent' | 'zero-digit'
|
|
if (l1 == 53) // ';'
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_DFPropertyName();
|
|
lookahead1W(29); // S^WS | '(:' | '='
|
|
shift(60); // '='
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shift(11); // StringLiteral
|
|
}
|
|
eventHandler.endNonterminal("DecimalFormatDecl", e0);
|
|
}
|
|
|
|
function parse_DFPropertyName()
|
|
{
|
|
eventHandler.startNonterminal("DFPropertyName", e0);
|
|
switch (l1)
|
|
{
|
|
case 107: // 'decimal-separator'
|
|
shift(107); // 'decimal-separator'
|
|
break;
|
|
case 149: // 'grouping-separator'
|
|
shift(149); // 'grouping-separator'
|
|
break;
|
|
case 156: // 'infinity'
|
|
shift(156); // 'infinity'
|
|
break;
|
|
case 179: // 'minus-sign'
|
|
shift(179); // 'minus-sign'
|
|
break;
|
|
case 67: // 'NaN'
|
|
shift(67); // 'NaN'
|
|
break;
|
|
case 209: // 'percent'
|
|
shift(209); // 'percent'
|
|
break;
|
|
case 208: // 'per-mille'
|
|
shift(208); // 'per-mille'
|
|
break;
|
|
case 275: // 'zero-digit'
|
|
shift(275); // 'zero-digit'
|
|
break;
|
|
case 116: // 'digit'
|
|
shift(116); // 'digit'
|
|
break;
|
|
default:
|
|
shift(207); // 'pattern-separator'
|
|
}
|
|
eventHandler.endNonterminal("DFPropertyName", e0);
|
|
}
|
|
|
|
function parse_Import()
|
|
{
|
|
eventHandler.startNonterminal("Import", e0);
|
|
switch (l1)
|
|
{
|
|
case 153: // 'import'
|
|
lookahead2W(126); // S^WS | '(:' | 'module' | 'schema'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 115353: // 'import' 'schema'
|
|
parse_SchemaImport();
|
|
break;
|
|
default:
|
|
parse_ModuleImport();
|
|
}
|
|
eventHandler.endNonterminal("Import", e0);
|
|
}
|
|
|
|
function parse_SchemaImport()
|
|
{
|
|
eventHandler.startNonterminal("SchemaImport", e0);
|
|
shift(153); // 'import'
|
|
lookahead1W(73); // S^WS | '(:' | 'schema'
|
|
shift(225); // 'schema'
|
|
lookahead1W(137); // URILiteral | S^WS | '(:' | 'default' | 'namespace'
|
|
if (l1 != 7) // URILiteral
|
|
{
|
|
whitespace();
|
|
parse_SchemaPrefix();
|
|
}
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
lookahead1W(108); // S^WS | '(:' | ';' | 'at'
|
|
if (l1 == 81) // 'at'
|
|
{
|
|
shift(81); // 'at'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
for (;;)
|
|
{
|
|
lookahead1W(103); // S^WS | '(:' | ',' | ';'
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("SchemaImport", e0);
|
|
}
|
|
|
|
function parse_SchemaPrefix()
|
|
{
|
|
eventHandler.startNonterminal("SchemaPrefix", e0);
|
|
switch (l1)
|
|
{
|
|
case 184: // 'namespace'
|
|
shift(184); // 'namespace'
|
|
lookahead1W(247); // NCName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_NCName();
|
|
lookahead1W(29); // S^WS | '(:' | '='
|
|
shift(60); // '='
|
|
break;
|
|
default:
|
|
shift(109); // 'default'
|
|
lookahead1W(47); // S^WS | '(:' | 'element'
|
|
shift(121); // 'element'
|
|
lookahead1W(61); // S^WS | '(:' | 'namespace'
|
|
shift(184); // 'namespace'
|
|
}
|
|
eventHandler.endNonterminal("SchemaPrefix", e0);
|
|
}
|
|
|
|
function parse_ModuleImport()
|
|
{
|
|
eventHandler.startNonterminal("ModuleImport", e0);
|
|
shift(153); // 'import'
|
|
lookahead1W(60); // S^WS | '(:' | 'module'
|
|
shift(182); // 'module'
|
|
lookahead1W(90); // URILiteral | S^WS | '(:' | 'namespace'
|
|
if (l1 == 184) // 'namespace'
|
|
{
|
|
shift(184); // 'namespace'
|
|
lookahead1W(247); // NCName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_NCName();
|
|
lookahead1W(29); // S^WS | '(:' | '='
|
|
shift(60); // '='
|
|
}
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
lookahead1W(108); // S^WS | '(:' | ';' | 'at'
|
|
if (l1 == 81) // 'at'
|
|
{
|
|
shift(81); // 'at'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
for (;;)
|
|
{
|
|
lookahead1W(103); // S^WS | '(:' | ',' | ';'
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("ModuleImport", e0);
|
|
}
|
|
|
|
function parse_NamespaceDecl()
|
|
{
|
|
eventHandler.startNonterminal("NamespaceDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(61); // S^WS | '(:' | 'namespace'
|
|
shift(184); // 'namespace'
|
|
lookahead1W(247); // NCName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_NCName();
|
|
lookahead1W(29); // S^WS | '(:' | '='
|
|
shift(60); // '='
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
eventHandler.endNonterminal("NamespaceDecl", e0);
|
|
}
|
|
|
|
function parse_DefaultNamespaceDecl()
|
|
{
|
|
eventHandler.startNonterminal("DefaultNamespaceDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(46); // S^WS | '(:' | 'default'
|
|
shift(109); // 'default'
|
|
lookahead1W(115); // S^WS | '(:' | 'element' | 'function'
|
|
switch (l1)
|
|
{
|
|
case 121: // 'element'
|
|
shift(121); // 'element'
|
|
break;
|
|
default:
|
|
shift(145); // 'function'
|
|
}
|
|
lookahead1W(61); // S^WS | '(:' | 'namespace'
|
|
shift(184); // 'namespace'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
eventHandler.endNonterminal("DefaultNamespaceDecl", e0);
|
|
}
|
|
|
|
function try_DefaultNamespaceDecl()
|
|
{
|
|
shiftT(108); // 'declare'
|
|
lookahead1W(46); // S^WS | '(:' | 'default'
|
|
shiftT(109); // 'default'
|
|
lookahead1W(115); // S^WS | '(:' | 'element' | 'function'
|
|
switch (l1)
|
|
{
|
|
case 121: // 'element'
|
|
shiftT(121); // 'element'
|
|
break;
|
|
default:
|
|
shiftT(145); // 'function'
|
|
}
|
|
lookahead1W(61); // S^WS | '(:' | 'namespace'
|
|
shiftT(184); // 'namespace'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shiftT(7); // URILiteral
|
|
}
|
|
|
|
function parse_FTOptionDecl()
|
|
{
|
|
eventHandler.startNonterminal("FTOptionDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(52); // S^WS | '(:' | 'ft-option'
|
|
shift(141); // 'ft-option'
|
|
lookahead1W(81); // S^WS | '(:' | 'using'
|
|
whitespace();
|
|
parse_FTMatchOptions();
|
|
eventHandler.endNonterminal("FTOptionDecl", e0);
|
|
}
|
|
|
|
function parse_AnnotatedDecl()
|
|
{
|
|
eventHandler.startNonterminal("AnnotatedDecl", e0);
|
|
shift(108); // 'declare'
|
|
for (;;)
|
|
{
|
|
lookahead1W(170); // S^WS | '%' | '(:' | 'collection' | 'function' | 'index' | 'integrity' |
|
|
// 'updating' | 'variable'
|
|
if (l1 != 32 // '%'
|
|
&& l1 != 257) // 'updating'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 257: // 'updating'
|
|
whitespace();
|
|
parse_CompatibilityAnnotation();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_Annotation();
|
|
}
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 262: // 'variable'
|
|
whitespace();
|
|
parse_VarDecl();
|
|
break;
|
|
case 145: // 'function'
|
|
whitespace();
|
|
parse_FunctionDecl();
|
|
break;
|
|
case 95: // 'collection'
|
|
whitespace();
|
|
parse_CollectionDecl();
|
|
break;
|
|
case 155: // 'index'
|
|
whitespace();
|
|
parse_IndexDecl();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_ICDecl();
|
|
}
|
|
eventHandler.endNonterminal("AnnotatedDecl", e0);
|
|
}
|
|
|
|
function parse_CompatibilityAnnotation()
|
|
{
|
|
eventHandler.startNonterminal("CompatibilityAnnotation", e0);
|
|
shift(257); // 'updating'
|
|
eventHandler.endNonterminal("CompatibilityAnnotation", e0);
|
|
}
|
|
|
|
function parse_Annotation()
|
|
{
|
|
eventHandler.startNonterminal("Annotation", e0);
|
|
shift(32); // '%'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_EQName();
|
|
lookahead1W(171); // S^WS | '%' | '(' | '(:' | 'collection' | 'function' | 'index' | 'integrity' |
|
|
// 'updating' | 'variable'
|
|
if (l1 == 34) // '('
|
|
{
|
|
shift(34); // '('
|
|
lookahead1W(154); // IntegerLiteral | DecimalLiteral | DoubleLiteral | StringLiteral | S^WS | '(:'
|
|
whitespace();
|
|
parse_Literal();
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(154); // IntegerLiteral | DecimalLiteral | DoubleLiteral | StringLiteral | S^WS | '(:'
|
|
whitespace();
|
|
parse_Literal();
|
|
}
|
|
shift(37); // ')'
|
|
}
|
|
eventHandler.endNonterminal("Annotation", e0);
|
|
}
|
|
|
|
function try_Annotation()
|
|
{
|
|
shiftT(32); // '%'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_EQName();
|
|
lookahead1W(171); // S^WS | '%' | '(' | '(:' | 'collection' | 'function' | 'index' | 'integrity' |
|
|
// 'updating' | 'variable'
|
|
if (l1 == 34) // '('
|
|
{
|
|
shiftT(34); // '('
|
|
lookahead1W(154); // IntegerLiteral | DecimalLiteral | DoubleLiteral | StringLiteral | S^WS | '(:'
|
|
try_Literal();
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(154); // IntegerLiteral | DecimalLiteral | DoubleLiteral | StringLiteral | S^WS | '(:'
|
|
try_Literal();
|
|
}
|
|
shiftT(37); // ')'
|
|
}
|
|
}
|
|
|
|
function parse_VarDecl()
|
|
{
|
|
eventHandler.startNonterminal("VarDecl", e0);
|
|
shift(262); // 'variable'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(147); // S^WS | '(:' | ':=' | 'as' | 'external'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
lookahead1W(106); // S^WS | '(:' | ':=' | 'external'
|
|
switch (l1)
|
|
{
|
|
case 52: // ':='
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_VarValue();
|
|
break;
|
|
default:
|
|
shift(133); // 'external'
|
|
lookahead1W(104); // S^WS | '(:' | ':=' | ';'
|
|
if (l1 == 52) // ':='
|
|
{
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_VarDefaultValue();
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("VarDecl", e0);
|
|
}
|
|
|
|
function parse_VarValue()
|
|
{
|
|
eventHandler.startNonterminal("VarValue", e0);
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("VarValue", e0);
|
|
}
|
|
|
|
function parse_VarDefaultValue()
|
|
{
|
|
eventHandler.startNonterminal("VarDefaultValue", e0);
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("VarDefaultValue", e0);
|
|
}
|
|
|
|
function parse_ContextItemDecl()
|
|
{
|
|
eventHandler.startNonterminal("ContextItemDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(43); // S^WS | '(:' | 'context'
|
|
shift(101); // 'context'
|
|
lookahead1W(55); // S^WS | '(:' | 'item'
|
|
shift(165); // 'item'
|
|
lookahead1W(147); // S^WS | '(:' | ':=' | 'as' | 'external'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
shift(79); // 'as'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_ItemType();
|
|
}
|
|
lookahead1W(106); // S^WS | '(:' | ':=' | 'external'
|
|
switch (l1)
|
|
{
|
|
case 52: // ':='
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_VarValue();
|
|
break;
|
|
default:
|
|
shift(133); // 'external'
|
|
lookahead1W(104); // S^WS | '(:' | ':=' | ';'
|
|
if (l1 == 52) // ':='
|
|
{
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_VarDefaultValue();
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("ContextItemDecl", e0);
|
|
}
|
|
|
|
function parse_ParamList()
|
|
{
|
|
eventHandler.startNonterminal("ParamList", e0);
|
|
parse_Param();
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
whitespace();
|
|
parse_Param();
|
|
}
|
|
eventHandler.endNonterminal("ParamList", e0);
|
|
}
|
|
|
|
function try_ParamList()
|
|
{
|
|
try_Param();
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
try_Param();
|
|
}
|
|
}
|
|
|
|
function parse_Param()
|
|
{
|
|
eventHandler.startNonterminal("Param", e0);
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_EQName();
|
|
lookahead1W(143); // S^WS | '(:' | ')' | ',' | 'as'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
eventHandler.endNonterminal("Param", e0);
|
|
}
|
|
|
|
function try_Param()
|
|
{
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_EQName();
|
|
lookahead1W(143); // S^WS | '(:' | ')' | ',' | 'as'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
try_TypeDeclaration();
|
|
}
|
|
}
|
|
|
|
function parse_FunctionBody()
|
|
{
|
|
eventHandler.startNonterminal("FunctionBody", e0);
|
|
parse_EnclosedExpr();
|
|
eventHandler.endNonterminal("FunctionBody", e0);
|
|
}
|
|
|
|
function try_FunctionBody()
|
|
{
|
|
try_EnclosedExpr();
|
|
}
|
|
|
|
function parse_EnclosedExpr()
|
|
{
|
|
eventHandler.startNonterminal("EnclosedExpr", e0);
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("EnclosedExpr", e0);
|
|
}
|
|
|
|
function try_EnclosedExpr()
|
|
{
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_OptionDecl()
|
|
{
|
|
eventHandler.startNonterminal("OptionDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(66); // S^WS | '(:' | 'option'
|
|
shift(199); // 'option'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_EQName();
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shift(11); // StringLiteral
|
|
eventHandler.endNonterminal("OptionDecl", e0);
|
|
}
|
|
|
|
function parse_Expr()
|
|
{
|
|
eventHandler.startNonterminal("Expr", e0);
|
|
parse_ExprSingle();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
}
|
|
eventHandler.endNonterminal("Expr", e0);
|
|
}
|
|
|
|
function try_Expr()
|
|
{
|
|
try_ExprSingle();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
}
|
|
|
|
function parse_FLWORExpr()
|
|
{
|
|
eventHandler.startNonterminal("FLWORExpr", e0);
|
|
parse_InitialClause();
|
|
for (;;)
|
|
{
|
|
lookahead1W(173); // S^WS | '(:' | 'count' | 'for' | 'group' | 'let' | 'order' | 'return' | 'stable' |
|
|
// 'where'
|
|
if (l1 == 220) // 'return'
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_IntermediateClause();
|
|
}
|
|
whitespace();
|
|
parse_ReturnClause();
|
|
eventHandler.endNonterminal("FLWORExpr", e0);
|
|
}
|
|
|
|
function try_FLWORExpr()
|
|
{
|
|
try_InitialClause();
|
|
for (;;)
|
|
{
|
|
lookahead1W(173); // S^WS | '(:' | 'count' | 'for' | 'group' | 'let' | 'order' | 'return' | 'stable' |
|
|
// 'where'
|
|
if (l1 == 220) // 'return'
|
|
{
|
|
break;
|
|
}
|
|
try_IntermediateClause();
|
|
}
|
|
try_ReturnClause();
|
|
}
|
|
|
|
function parse_InitialClause()
|
|
{
|
|
eventHandler.startNonterminal("InitialClause", e0);
|
|
switch (l1)
|
|
{
|
|
case 137: // 'for'
|
|
lookahead2W(141); // S^WS | '$' | '(:' | 'sliding' | 'tumbling'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 16009: // 'for' '$'
|
|
parse_ForClause();
|
|
break;
|
|
case 174: // 'let'
|
|
parse_LetClause();
|
|
break;
|
|
default:
|
|
parse_WindowClause();
|
|
}
|
|
eventHandler.endNonterminal("InitialClause", e0);
|
|
}
|
|
|
|
function try_InitialClause()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 137: // 'for'
|
|
lookahead2W(141); // S^WS | '$' | '(:' | 'sliding' | 'tumbling'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 16009: // 'for' '$'
|
|
try_ForClause();
|
|
break;
|
|
case 174: // 'let'
|
|
try_LetClause();
|
|
break;
|
|
default:
|
|
try_WindowClause();
|
|
}
|
|
}
|
|
|
|
function parse_IntermediateClause()
|
|
{
|
|
eventHandler.startNonterminal("IntermediateClause", e0);
|
|
switch (l1)
|
|
{
|
|
case 137: // 'for'
|
|
case 174: // 'let'
|
|
parse_InitialClause();
|
|
break;
|
|
case 266: // 'where'
|
|
parse_WhereClause();
|
|
break;
|
|
case 148: // 'group'
|
|
parse_GroupByClause();
|
|
break;
|
|
case 105: // 'count'
|
|
parse_CountClause();
|
|
break;
|
|
default:
|
|
parse_OrderByClause();
|
|
}
|
|
eventHandler.endNonterminal("IntermediateClause", e0);
|
|
}
|
|
|
|
function try_IntermediateClause()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 137: // 'for'
|
|
case 174: // 'let'
|
|
try_InitialClause();
|
|
break;
|
|
case 266: // 'where'
|
|
try_WhereClause();
|
|
break;
|
|
case 148: // 'group'
|
|
try_GroupByClause();
|
|
break;
|
|
case 105: // 'count'
|
|
try_CountClause();
|
|
break;
|
|
default:
|
|
try_OrderByClause();
|
|
}
|
|
}
|
|
|
|
function parse_ForClause()
|
|
{
|
|
eventHandler.startNonterminal("ForClause", e0);
|
|
shift(137); // 'for'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
whitespace();
|
|
parse_ForBinding();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
whitespace();
|
|
parse_ForBinding();
|
|
}
|
|
eventHandler.endNonterminal("ForClause", e0);
|
|
}
|
|
|
|
function try_ForClause()
|
|
{
|
|
shiftT(137); // 'for'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
try_ForBinding();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
try_ForBinding();
|
|
}
|
|
}
|
|
|
|
function parse_ForBinding()
|
|
{
|
|
eventHandler.startNonterminal("ForBinding", e0);
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(164); // S^WS | '(:' | 'allowing' | 'as' | 'at' | 'in' | 'score'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
lookahead1W(158); // S^WS | '(:' | 'allowing' | 'at' | 'in' | 'score'
|
|
if (l1 == 72) // 'allowing'
|
|
{
|
|
whitespace();
|
|
parse_AllowingEmpty();
|
|
}
|
|
lookahead1W(150); // S^WS | '(:' | 'at' | 'in' | 'score'
|
|
if (l1 == 81) // 'at'
|
|
{
|
|
whitespace();
|
|
parse_PositionalVar();
|
|
}
|
|
lookahead1W(122); // S^WS | '(:' | 'in' | 'score'
|
|
if (l1 == 228) // 'score'
|
|
{
|
|
whitespace();
|
|
parse_FTScoreVar();
|
|
}
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shift(154); // 'in'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("ForBinding", e0);
|
|
}
|
|
|
|
function try_ForBinding()
|
|
{
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(164); // S^WS | '(:' | 'allowing' | 'as' | 'at' | 'in' | 'score'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
try_TypeDeclaration();
|
|
}
|
|
lookahead1W(158); // S^WS | '(:' | 'allowing' | 'at' | 'in' | 'score'
|
|
if (l1 == 72) // 'allowing'
|
|
{
|
|
try_AllowingEmpty();
|
|
}
|
|
lookahead1W(150); // S^WS | '(:' | 'at' | 'in' | 'score'
|
|
if (l1 == 81) // 'at'
|
|
{
|
|
try_PositionalVar();
|
|
}
|
|
lookahead1W(122); // S^WS | '(:' | 'in' | 'score'
|
|
if (l1 == 228) // 'score'
|
|
{
|
|
try_FTScoreVar();
|
|
}
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shiftT(154); // 'in'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_AllowingEmpty()
|
|
{
|
|
eventHandler.startNonterminal("AllowingEmpty", e0);
|
|
shift(72); // 'allowing'
|
|
lookahead1W(49); // S^WS | '(:' | 'empty'
|
|
shift(123); // 'empty'
|
|
eventHandler.endNonterminal("AllowingEmpty", e0);
|
|
}
|
|
|
|
function try_AllowingEmpty()
|
|
{
|
|
shiftT(72); // 'allowing'
|
|
lookahead1W(49); // S^WS | '(:' | 'empty'
|
|
shiftT(123); // 'empty'
|
|
}
|
|
|
|
function parse_PositionalVar()
|
|
{
|
|
eventHandler.startNonterminal("PositionalVar", e0);
|
|
shift(81); // 'at'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
eventHandler.endNonterminal("PositionalVar", e0);
|
|
}
|
|
|
|
function try_PositionalVar()
|
|
{
|
|
shiftT(81); // 'at'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
}
|
|
|
|
function parse_FTScoreVar()
|
|
{
|
|
eventHandler.startNonterminal("FTScoreVar", e0);
|
|
shift(228); // 'score'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
eventHandler.endNonterminal("FTScoreVar", e0);
|
|
}
|
|
|
|
function try_FTScoreVar()
|
|
{
|
|
shiftT(228); // 'score'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
}
|
|
|
|
function parse_LetClause()
|
|
{
|
|
eventHandler.startNonterminal("LetClause", e0);
|
|
shift(174); // 'let'
|
|
lookahead1W(96); // S^WS | '$' | '(:' | 'score'
|
|
whitespace();
|
|
parse_LetBinding();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(96); // S^WS | '$' | '(:' | 'score'
|
|
whitespace();
|
|
parse_LetBinding();
|
|
}
|
|
eventHandler.endNonterminal("LetClause", e0);
|
|
}
|
|
|
|
function try_LetClause()
|
|
{
|
|
shiftT(174); // 'let'
|
|
lookahead1W(96); // S^WS | '$' | '(:' | 'score'
|
|
try_LetBinding();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(96); // S^WS | '$' | '(:' | 'score'
|
|
try_LetBinding();
|
|
}
|
|
}
|
|
|
|
function parse_LetBinding()
|
|
{
|
|
eventHandler.startNonterminal("LetBinding", e0);
|
|
switch (l1)
|
|
{
|
|
case 31: // '$'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(105); // S^WS | '(:' | ':=' | 'as'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
break;
|
|
default:
|
|
parse_FTScoreVar();
|
|
}
|
|
lookahead1W(27); // S^WS | '(:' | ':='
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("LetBinding", e0);
|
|
}
|
|
|
|
function try_LetBinding()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 31: // '$'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(105); // S^WS | '(:' | ':=' | 'as'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
try_TypeDeclaration();
|
|
}
|
|
break;
|
|
default:
|
|
try_FTScoreVar();
|
|
}
|
|
lookahead1W(27); // S^WS | '(:' | ':='
|
|
shiftT(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_WindowClause()
|
|
{
|
|
eventHandler.startNonterminal("WindowClause", e0);
|
|
shift(137); // 'for'
|
|
lookahead1W(135); // S^WS | '(:' | 'sliding' | 'tumbling'
|
|
switch (l1)
|
|
{
|
|
case 251: // 'tumbling'
|
|
whitespace();
|
|
parse_TumblingWindowClause();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_SlidingWindowClause();
|
|
}
|
|
eventHandler.endNonterminal("WindowClause", e0);
|
|
}
|
|
|
|
function try_WindowClause()
|
|
{
|
|
shiftT(137); // 'for'
|
|
lookahead1W(135); // S^WS | '(:' | 'sliding' | 'tumbling'
|
|
switch (l1)
|
|
{
|
|
case 251: // 'tumbling'
|
|
try_TumblingWindowClause();
|
|
break;
|
|
default:
|
|
try_SlidingWindowClause();
|
|
}
|
|
}
|
|
|
|
function parse_TumblingWindowClause()
|
|
{
|
|
eventHandler.startNonterminal("TumblingWindowClause", e0);
|
|
shift(251); // 'tumbling'
|
|
lookahead1W(85); // S^WS | '(:' | 'window'
|
|
shift(269); // 'window'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(110); // S^WS | '(:' | 'as' | 'in'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shift(154); // 'in'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
whitespace();
|
|
parse_WindowStartCondition();
|
|
if (l1 == 126 // 'end'
|
|
|| l1 == 198) // 'only'
|
|
{
|
|
whitespace();
|
|
parse_WindowEndCondition();
|
|
}
|
|
eventHandler.endNonterminal("TumblingWindowClause", e0);
|
|
}
|
|
|
|
function try_TumblingWindowClause()
|
|
{
|
|
shiftT(251); // 'tumbling'
|
|
lookahead1W(85); // S^WS | '(:' | 'window'
|
|
shiftT(269); // 'window'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(110); // S^WS | '(:' | 'as' | 'in'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
try_TypeDeclaration();
|
|
}
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shiftT(154); // 'in'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
try_WindowStartCondition();
|
|
if (l1 == 126 // 'end'
|
|
|| l1 == 198) // 'only'
|
|
{
|
|
try_WindowEndCondition();
|
|
}
|
|
}
|
|
|
|
function parse_SlidingWindowClause()
|
|
{
|
|
eventHandler.startNonterminal("SlidingWindowClause", e0);
|
|
shift(234); // 'sliding'
|
|
lookahead1W(85); // S^WS | '(:' | 'window'
|
|
shift(269); // 'window'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(110); // S^WS | '(:' | 'as' | 'in'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shift(154); // 'in'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
whitespace();
|
|
parse_WindowStartCondition();
|
|
whitespace();
|
|
parse_WindowEndCondition();
|
|
eventHandler.endNonterminal("SlidingWindowClause", e0);
|
|
}
|
|
|
|
function try_SlidingWindowClause()
|
|
{
|
|
shiftT(234); // 'sliding'
|
|
lookahead1W(85); // S^WS | '(:' | 'window'
|
|
shiftT(269); // 'window'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(110); // S^WS | '(:' | 'as' | 'in'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
try_TypeDeclaration();
|
|
}
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shiftT(154); // 'in'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
try_WindowStartCondition();
|
|
try_WindowEndCondition();
|
|
}
|
|
|
|
function parse_WindowStartCondition()
|
|
{
|
|
eventHandler.startNonterminal("WindowStartCondition", e0);
|
|
shift(237); // 'start'
|
|
lookahead1W(163); // S^WS | '$' | '(:' | 'at' | 'next' | 'previous' | 'when'
|
|
whitespace();
|
|
parse_WindowVars();
|
|
lookahead1W(83); // S^WS | '(:' | 'when'
|
|
shift(265); // 'when'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("WindowStartCondition", e0);
|
|
}
|
|
|
|
function try_WindowStartCondition()
|
|
{
|
|
shiftT(237); // 'start'
|
|
lookahead1W(163); // S^WS | '$' | '(:' | 'at' | 'next' | 'previous' | 'when'
|
|
try_WindowVars();
|
|
lookahead1W(83); // S^WS | '(:' | 'when'
|
|
shiftT(265); // 'when'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_WindowEndCondition()
|
|
{
|
|
eventHandler.startNonterminal("WindowEndCondition", e0);
|
|
if (l1 == 198) // 'only'
|
|
{
|
|
shift(198); // 'only'
|
|
}
|
|
lookahead1W(50); // S^WS | '(:' | 'end'
|
|
shift(126); // 'end'
|
|
lookahead1W(163); // S^WS | '$' | '(:' | 'at' | 'next' | 'previous' | 'when'
|
|
whitespace();
|
|
parse_WindowVars();
|
|
lookahead1W(83); // S^WS | '(:' | 'when'
|
|
shift(265); // 'when'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("WindowEndCondition", e0);
|
|
}
|
|
|
|
function try_WindowEndCondition()
|
|
{
|
|
if (l1 == 198) // 'only'
|
|
{
|
|
shiftT(198); // 'only'
|
|
}
|
|
lookahead1W(50); // S^WS | '(:' | 'end'
|
|
shiftT(126); // 'end'
|
|
lookahead1W(163); // S^WS | '$' | '(:' | 'at' | 'next' | 'previous' | 'when'
|
|
try_WindowVars();
|
|
lookahead1W(83); // S^WS | '(:' | 'when'
|
|
shiftT(265); // 'when'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_WindowVars()
|
|
{
|
|
eventHandler.startNonterminal("WindowVars", e0);
|
|
if (l1 == 31) // '$'
|
|
{
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_CurrentItem();
|
|
}
|
|
lookahead1W(159); // S^WS | '(:' | 'at' | 'next' | 'previous' | 'when'
|
|
if (l1 == 81) // 'at'
|
|
{
|
|
whitespace();
|
|
parse_PositionalVar();
|
|
}
|
|
lookahead1W(153); // S^WS | '(:' | 'next' | 'previous' | 'when'
|
|
if (l1 == 215) // 'previous'
|
|
{
|
|
shift(215); // 'previous'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_PreviousItem();
|
|
}
|
|
lookahead1W(127); // S^WS | '(:' | 'next' | 'when'
|
|
if (l1 == 187) // 'next'
|
|
{
|
|
shift(187); // 'next'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_NextItem();
|
|
}
|
|
eventHandler.endNonterminal("WindowVars", e0);
|
|
}
|
|
|
|
function try_WindowVars()
|
|
{
|
|
if (l1 == 31) // '$'
|
|
{
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_CurrentItem();
|
|
}
|
|
lookahead1W(159); // S^WS | '(:' | 'at' | 'next' | 'previous' | 'when'
|
|
if (l1 == 81) // 'at'
|
|
{
|
|
try_PositionalVar();
|
|
}
|
|
lookahead1W(153); // S^WS | '(:' | 'next' | 'previous' | 'when'
|
|
if (l1 == 215) // 'previous'
|
|
{
|
|
shiftT(215); // 'previous'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_PreviousItem();
|
|
}
|
|
lookahead1W(127); // S^WS | '(:' | 'next' | 'when'
|
|
if (l1 == 187) // 'next'
|
|
{
|
|
shiftT(187); // 'next'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_NextItem();
|
|
}
|
|
}
|
|
|
|
function parse_CurrentItem()
|
|
{
|
|
eventHandler.startNonterminal("CurrentItem", e0);
|
|
parse_EQName();
|
|
eventHandler.endNonterminal("CurrentItem", e0);
|
|
}
|
|
|
|
function try_CurrentItem()
|
|
{
|
|
try_EQName();
|
|
}
|
|
|
|
function parse_PreviousItem()
|
|
{
|
|
eventHandler.startNonterminal("PreviousItem", e0);
|
|
parse_EQName();
|
|
eventHandler.endNonterminal("PreviousItem", e0);
|
|
}
|
|
|
|
function try_PreviousItem()
|
|
{
|
|
try_EQName();
|
|
}
|
|
|
|
function parse_NextItem()
|
|
{
|
|
eventHandler.startNonterminal("NextItem", e0);
|
|
parse_EQName();
|
|
eventHandler.endNonterminal("NextItem", e0);
|
|
}
|
|
|
|
function try_NextItem()
|
|
{
|
|
try_EQName();
|
|
}
|
|
|
|
function parse_CountClause()
|
|
{
|
|
eventHandler.startNonterminal("CountClause", e0);
|
|
shift(105); // 'count'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
eventHandler.endNonterminal("CountClause", e0);
|
|
}
|
|
|
|
function try_CountClause()
|
|
{
|
|
shiftT(105); // 'count'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
}
|
|
|
|
function parse_WhereClause()
|
|
{
|
|
eventHandler.startNonterminal("WhereClause", e0);
|
|
shift(266); // 'where'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("WhereClause", e0);
|
|
}
|
|
|
|
function try_WhereClause()
|
|
{
|
|
shiftT(266); // 'where'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_GroupByClause()
|
|
{
|
|
eventHandler.startNonterminal("GroupByClause", e0);
|
|
shift(148); // 'group'
|
|
lookahead1W(34); // S^WS | '(:' | 'by'
|
|
shift(87); // 'by'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
whitespace();
|
|
parse_GroupingSpecList();
|
|
eventHandler.endNonterminal("GroupByClause", e0);
|
|
}
|
|
|
|
function try_GroupByClause()
|
|
{
|
|
shiftT(148); // 'group'
|
|
lookahead1W(34); // S^WS | '(:' | 'by'
|
|
shiftT(87); // 'by'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
try_GroupingSpecList();
|
|
}
|
|
|
|
function parse_GroupingSpecList()
|
|
{
|
|
eventHandler.startNonterminal("GroupingSpecList", e0);
|
|
parse_GroupingSpec();
|
|
for (;;)
|
|
{
|
|
lookahead1W(176); // S^WS | '(:' | ',' | 'count' | 'for' | 'group' | 'let' | 'order' | 'return' |
|
|
// 'stable' | 'where'
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
whitespace();
|
|
parse_GroupingSpec();
|
|
}
|
|
eventHandler.endNonterminal("GroupingSpecList", e0);
|
|
}
|
|
|
|
function try_GroupingSpecList()
|
|
{
|
|
try_GroupingSpec();
|
|
for (;;)
|
|
{
|
|
lookahead1W(176); // S^WS | '(:' | ',' | 'count' | 'for' | 'group' | 'let' | 'order' | 'return' |
|
|
// 'stable' | 'where'
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
try_GroupingSpec();
|
|
}
|
|
}
|
|
|
|
function parse_GroupingSpec()
|
|
{
|
|
eventHandler.startNonterminal("GroupingSpec", e0);
|
|
parse_GroupingVariable();
|
|
lookahead1W(182); // S^WS | '(:' | ',' | ':=' | 'as' | 'collation' | 'count' | 'for' | 'group' |
|
|
// 'let' | 'order' | 'return' | 'stable' | 'where'
|
|
if (l1 == 52 // ':='
|
|
|| l1 == 79) // 'as'
|
|
{
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
lookahead1W(27); // S^WS | '(:' | ':='
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
}
|
|
if (l1 == 94) // 'collation'
|
|
{
|
|
shift(94); // 'collation'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
}
|
|
eventHandler.endNonterminal("GroupingSpec", e0);
|
|
}
|
|
|
|
function try_GroupingSpec()
|
|
{
|
|
try_GroupingVariable();
|
|
lookahead1W(182); // S^WS | '(:' | ',' | ':=' | 'as' | 'collation' | 'count' | 'for' | 'group' |
|
|
// 'let' | 'order' | 'return' | 'stable' | 'where'
|
|
if (l1 == 52 // ':='
|
|
|| l1 == 79) // 'as'
|
|
{
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
try_TypeDeclaration();
|
|
}
|
|
lookahead1W(27); // S^WS | '(:' | ':='
|
|
shiftT(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
if (l1 == 94) // 'collation'
|
|
{
|
|
shiftT(94); // 'collation'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shiftT(7); // URILiteral
|
|
}
|
|
}
|
|
|
|
function parse_GroupingVariable()
|
|
{
|
|
eventHandler.startNonterminal("GroupingVariable", e0);
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
eventHandler.endNonterminal("GroupingVariable", e0);
|
|
}
|
|
|
|
function try_GroupingVariable()
|
|
{
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
}
|
|
|
|
function parse_OrderByClause()
|
|
{
|
|
eventHandler.startNonterminal("OrderByClause", e0);
|
|
switch (l1)
|
|
{
|
|
case 201: // 'order'
|
|
shift(201); // 'order'
|
|
lookahead1W(34); // S^WS | '(:' | 'by'
|
|
shift(87); // 'by'
|
|
break;
|
|
default:
|
|
shift(236); // 'stable'
|
|
lookahead1W(67); // S^WS | '(:' | 'order'
|
|
shift(201); // 'order'
|
|
lookahead1W(34); // S^WS | '(:' | 'by'
|
|
shift(87); // 'by'
|
|
}
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_OrderSpecList();
|
|
eventHandler.endNonterminal("OrderByClause", e0);
|
|
}
|
|
|
|
function try_OrderByClause()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 201: // 'order'
|
|
shiftT(201); // 'order'
|
|
lookahead1W(34); // S^WS | '(:' | 'by'
|
|
shiftT(87); // 'by'
|
|
break;
|
|
default:
|
|
shiftT(236); // 'stable'
|
|
lookahead1W(67); // S^WS | '(:' | 'order'
|
|
shiftT(201); // 'order'
|
|
lookahead1W(34); // S^WS | '(:' | 'by'
|
|
shiftT(87); // 'by'
|
|
}
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_OrderSpecList();
|
|
}
|
|
|
|
function parse_OrderSpecList()
|
|
{
|
|
eventHandler.startNonterminal("OrderSpecList", e0);
|
|
parse_OrderSpec();
|
|
for (;;)
|
|
{
|
|
lookahead1W(176); // S^WS | '(:' | ',' | 'count' | 'for' | 'group' | 'let' | 'order' | 'return' |
|
|
// 'stable' | 'where'
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_OrderSpec();
|
|
}
|
|
eventHandler.endNonterminal("OrderSpecList", e0);
|
|
}
|
|
|
|
function try_OrderSpecList()
|
|
{
|
|
try_OrderSpec();
|
|
for (;;)
|
|
{
|
|
lookahead1W(176); // S^WS | '(:' | ',' | 'count' | 'for' | 'group' | 'let' | 'order' | 'return' |
|
|
// 'stable' | 'where'
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_OrderSpec();
|
|
}
|
|
}
|
|
|
|
function parse_OrderSpec()
|
|
{
|
|
eventHandler.startNonterminal("OrderSpec", e0);
|
|
parse_ExprSingle();
|
|
whitespace();
|
|
parse_OrderModifier();
|
|
eventHandler.endNonterminal("OrderSpec", e0);
|
|
}
|
|
|
|
function try_OrderSpec()
|
|
{
|
|
try_ExprSingle();
|
|
try_OrderModifier();
|
|
}
|
|
|
|
function parse_OrderModifier()
|
|
{
|
|
eventHandler.startNonterminal("OrderModifier", e0);
|
|
if (l1 == 80 // 'ascending'
|
|
|| l1 == 113) // 'descending'
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 80: // 'ascending'
|
|
shift(80); // 'ascending'
|
|
break;
|
|
default:
|
|
shift(113); // 'descending'
|
|
}
|
|
}
|
|
lookahead1W(179); // S^WS | '(:' | ',' | 'collation' | 'count' | 'empty' | 'for' | 'group' | 'let' |
|
|
// 'order' | 'return' | 'stable' | 'where'
|
|
if (l1 == 123) // 'empty'
|
|
{
|
|
shift(123); // 'empty'
|
|
lookahead1W(121); // S^WS | '(:' | 'greatest' | 'least'
|
|
switch (l1)
|
|
{
|
|
case 147: // 'greatest'
|
|
shift(147); // 'greatest'
|
|
break;
|
|
default:
|
|
shift(173); // 'least'
|
|
}
|
|
}
|
|
lookahead1W(177); // S^WS | '(:' | ',' | 'collation' | 'count' | 'for' | 'group' | 'let' | 'order' |
|
|
// 'return' | 'stable' | 'where'
|
|
if (l1 == 94) // 'collation'
|
|
{
|
|
shift(94); // 'collation'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
}
|
|
eventHandler.endNonterminal("OrderModifier", e0);
|
|
}
|
|
|
|
function try_OrderModifier()
|
|
{
|
|
if (l1 == 80 // 'ascending'
|
|
|| l1 == 113) // 'descending'
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 80: // 'ascending'
|
|
shiftT(80); // 'ascending'
|
|
break;
|
|
default:
|
|
shiftT(113); // 'descending'
|
|
}
|
|
}
|
|
lookahead1W(179); // S^WS | '(:' | ',' | 'collation' | 'count' | 'empty' | 'for' | 'group' | 'let' |
|
|
// 'order' | 'return' | 'stable' | 'where'
|
|
if (l1 == 123) // 'empty'
|
|
{
|
|
shiftT(123); // 'empty'
|
|
lookahead1W(121); // S^WS | '(:' | 'greatest' | 'least'
|
|
switch (l1)
|
|
{
|
|
case 147: // 'greatest'
|
|
shiftT(147); // 'greatest'
|
|
break;
|
|
default:
|
|
shiftT(173); // 'least'
|
|
}
|
|
}
|
|
lookahead1W(177); // S^WS | '(:' | ',' | 'collation' | 'count' | 'for' | 'group' | 'let' | 'order' |
|
|
// 'return' | 'stable' | 'where'
|
|
if (l1 == 94) // 'collation'
|
|
{
|
|
shiftT(94); // 'collation'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shiftT(7); // URILiteral
|
|
}
|
|
}
|
|
|
|
function parse_ReturnClause()
|
|
{
|
|
eventHandler.startNonterminal("ReturnClause", e0);
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("ReturnClause", e0);
|
|
}
|
|
|
|
function try_ReturnClause()
|
|
{
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_QuantifiedExpr()
|
|
{
|
|
eventHandler.startNonterminal("QuantifiedExpr", e0);
|
|
switch (l1)
|
|
{
|
|
case 235: // 'some'
|
|
shift(235); // 'some'
|
|
break;
|
|
default:
|
|
shift(129); // 'every'
|
|
}
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(110); // S^WS | '(:' | 'as' | 'in'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shift(154); // 'in'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(110); // S^WS | '(:' | 'as' | 'in'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shift(154); // 'in'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
}
|
|
shift(224); // 'satisfies'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("QuantifiedExpr", e0);
|
|
}
|
|
|
|
function try_QuantifiedExpr()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 235: // 'some'
|
|
shiftT(235); // 'some'
|
|
break;
|
|
default:
|
|
shiftT(129); // 'every'
|
|
}
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(110); // S^WS | '(:' | 'as' | 'in'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
try_TypeDeclaration();
|
|
}
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shiftT(154); // 'in'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(110); // S^WS | '(:' | 'as' | 'in'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
try_TypeDeclaration();
|
|
}
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shiftT(154); // 'in'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
shiftT(224); // 'satisfies'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_SwitchExpr()
|
|
{
|
|
eventHandler.startNonterminal("SwitchExpr", e0);
|
|
shift(243); // 'switch'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(37); // ')'
|
|
for (;;)
|
|
{
|
|
lookahead1W(35); // S^WS | '(:' | 'case'
|
|
whitespace();
|
|
parse_SwitchCaseClause();
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shift(109); // 'default'
|
|
lookahead1W(70); // S^WS | '(:' | 'return'
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("SwitchExpr", e0);
|
|
}
|
|
|
|
function try_SwitchExpr()
|
|
{
|
|
shiftT(243); // 'switch'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(37); // ')'
|
|
for (;;)
|
|
{
|
|
lookahead1W(35); // S^WS | '(:' | 'case'
|
|
try_SwitchCaseClause();
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shiftT(109); // 'default'
|
|
lookahead1W(70); // S^WS | '(:' | 'return'
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_SwitchCaseClause()
|
|
{
|
|
eventHandler.startNonterminal("SwitchCaseClause", e0);
|
|
for (;;)
|
|
{
|
|
shift(88); // 'case'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_SwitchCaseOperand();
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("SwitchCaseClause", e0);
|
|
}
|
|
|
|
function try_SwitchCaseClause()
|
|
{
|
|
for (;;)
|
|
{
|
|
shiftT(88); // 'case'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_SwitchCaseOperand();
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_SwitchCaseOperand()
|
|
{
|
|
eventHandler.startNonterminal("SwitchCaseOperand", e0);
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("SwitchCaseOperand", e0);
|
|
}
|
|
|
|
function try_SwitchCaseOperand()
|
|
{
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_TypeswitchExpr()
|
|
{
|
|
eventHandler.startNonterminal("TypeswitchExpr", e0);
|
|
shift(253); // 'typeswitch'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(37); // ')'
|
|
for (;;)
|
|
{
|
|
lookahead1W(35); // S^WS | '(:' | 'case'
|
|
whitespace();
|
|
parse_CaseClause();
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shift(109); // 'default'
|
|
lookahead1W(95); // S^WS | '$' | '(:' | 'return'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
}
|
|
lookahead1W(70); // S^WS | '(:' | 'return'
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("TypeswitchExpr", e0);
|
|
}
|
|
|
|
function try_TypeswitchExpr()
|
|
{
|
|
shiftT(253); // 'typeswitch'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(37); // ')'
|
|
for (;;)
|
|
{
|
|
lookahead1W(35); // S^WS | '(:' | 'case'
|
|
try_CaseClause();
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shiftT(109); // 'default'
|
|
lookahead1W(95); // S^WS | '$' | '(:' | 'return'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
}
|
|
lookahead1W(70); // S^WS | '(:' | 'return'
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_CaseClause()
|
|
{
|
|
eventHandler.startNonterminal("CaseClause", e0);
|
|
shift(88); // 'case'
|
|
lookahead1W(260); // EQName^Token | S^WS | '$' | '%' | '(' | '(:' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shift(79); // 'as'
|
|
}
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_SequenceTypeUnion();
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("CaseClause", e0);
|
|
}
|
|
|
|
function try_CaseClause()
|
|
{
|
|
shiftT(88); // 'case'
|
|
lookahead1W(260); // EQName^Token | S^WS | '$' | '%' | '(' | '(:' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shiftT(79); // 'as'
|
|
}
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
try_SequenceTypeUnion();
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_SequenceTypeUnion()
|
|
{
|
|
eventHandler.startNonterminal("SequenceTypeUnion", e0);
|
|
parse_SequenceType();
|
|
for (;;)
|
|
{
|
|
lookahead1W(134); // S^WS | '(:' | 'return' | '|'
|
|
if (l1 != 279) // '|'
|
|
{
|
|
break;
|
|
}
|
|
shift(279); // '|'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_SequenceType();
|
|
}
|
|
eventHandler.endNonterminal("SequenceTypeUnion", e0);
|
|
}
|
|
|
|
function try_SequenceTypeUnion()
|
|
{
|
|
try_SequenceType();
|
|
for (;;)
|
|
{
|
|
lookahead1W(134); // S^WS | '(:' | 'return' | '|'
|
|
if (l1 != 279) // '|'
|
|
{
|
|
break;
|
|
}
|
|
shiftT(279); // '|'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
try_SequenceType();
|
|
}
|
|
}
|
|
|
|
function parse_IfExpr()
|
|
{
|
|
eventHandler.startNonterminal("IfExpr", e0);
|
|
shift(152); // 'if'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(37); // ')'
|
|
lookahead1W(77); // S^WS | '(:' | 'then'
|
|
shift(245); // 'then'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
shift(122); // 'else'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("IfExpr", e0);
|
|
}
|
|
|
|
function try_IfExpr()
|
|
{
|
|
shiftT(152); // 'if'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(37); // ')'
|
|
lookahead1W(77); // S^WS | '(:' | 'then'
|
|
shiftT(245); // 'then'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
shiftT(122); // 'else'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_TryCatchExpr()
|
|
{
|
|
eventHandler.startNonterminal("TryCatchExpr", e0);
|
|
parse_TryClause();
|
|
for (;;)
|
|
{
|
|
lookahead1W(36); // S^WS | '(:' | 'catch'
|
|
whitespace();
|
|
parse_CatchClause();
|
|
lookahead1W(184); // S^WS | EOF | '(:' | ')' | ',' | ':' | ';' | ']' | 'after' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'catch' | 'collation' | 'count' | 'default' |
|
|
// 'descending' | 'else' | 'empty' | 'end' | 'for' | 'group' | 'into' | 'let' |
|
|
// 'modify' | 'only' | 'order' | 'return' | 'satisfies' | 'stable' | 'start' |
|
|
// 'where' | 'with' | '|}' | '}'
|
|
if (l1 != 91) // 'catch'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("TryCatchExpr", e0);
|
|
}
|
|
|
|
function try_TryCatchExpr()
|
|
{
|
|
try_TryClause();
|
|
for (;;)
|
|
{
|
|
lookahead1W(36); // S^WS | '(:' | 'catch'
|
|
try_CatchClause();
|
|
lookahead1W(184); // S^WS | EOF | '(:' | ')' | ',' | ':' | ';' | ']' | 'after' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'catch' | 'collation' | 'count' | 'default' |
|
|
// 'descending' | 'else' | 'empty' | 'end' | 'for' | 'group' | 'into' | 'let' |
|
|
// 'modify' | 'only' | 'order' | 'return' | 'satisfies' | 'stable' | 'start' |
|
|
// 'where' | 'with' | '|}' | '}'
|
|
if (l1 != 91) // 'catch'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
function parse_TryClause()
|
|
{
|
|
eventHandler.startNonterminal("TryClause", e0);
|
|
shift(250); // 'try'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_TryTargetExpr();
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("TryClause", e0);
|
|
}
|
|
|
|
function try_TryClause()
|
|
{
|
|
shiftT(250); // 'try'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_TryTargetExpr();
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_TryTargetExpr()
|
|
{
|
|
eventHandler.startNonterminal("TryTargetExpr", e0);
|
|
parse_Expr();
|
|
eventHandler.endNonterminal("TryTargetExpr", e0);
|
|
}
|
|
|
|
function try_TryTargetExpr()
|
|
{
|
|
try_Expr();
|
|
}
|
|
|
|
function parse_CatchClause()
|
|
{
|
|
eventHandler.startNonterminal("CatchClause", e0);
|
|
shift(91); // 'catch'
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_CatchErrorList();
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("CatchClause", e0);
|
|
}
|
|
|
|
function try_CatchClause()
|
|
{
|
|
shiftT(91); // 'catch'
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_CatchErrorList();
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_CatchErrorList()
|
|
{
|
|
eventHandler.startNonterminal("CatchErrorList", e0);
|
|
parse_NameTest();
|
|
for (;;)
|
|
{
|
|
lookahead1W(136); // S^WS | '(:' | '{' | '|'
|
|
if (l1 != 279) // '|'
|
|
{
|
|
break;
|
|
}
|
|
shift(279); // '|'
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_NameTest();
|
|
}
|
|
eventHandler.endNonterminal("CatchErrorList", e0);
|
|
}
|
|
|
|
function try_CatchErrorList()
|
|
{
|
|
try_NameTest();
|
|
for (;;)
|
|
{
|
|
lookahead1W(136); // S^WS | '(:' | '{' | '|'
|
|
if (l1 != 279) // '|'
|
|
{
|
|
break;
|
|
}
|
|
shiftT(279); // '|'
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_NameTest();
|
|
}
|
|
}
|
|
|
|
function parse_OrExpr()
|
|
{
|
|
eventHandler.startNonterminal("OrExpr", e0);
|
|
parse_AndExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 200) // 'or'
|
|
{
|
|
break;
|
|
}
|
|
shift(200); // 'or'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_AndExpr();
|
|
}
|
|
eventHandler.endNonterminal("OrExpr", e0);
|
|
}
|
|
|
|
function try_OrExpr()
|
|
{
|
|
try_AndExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 200) // 'or'
|
|
{
|
|
break;
|
|
}
|
|
shiftT(200); // 'or'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_AndExpr();
|
|
}
|
|
}
|
|
|
|
function parse_AndExpr()
|
|
{
|
|
eventHandler.startNonterminal("AndExpr", e0);
|
|
parse_ComparisonExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 75) // 'and'
|
|
{
|
|
break;
|
|
}
|
|
shift(75); // 'and'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ComparisonExpr();
|
|
}
|
|
eventHandler.endNonterminal("AndExpr", e0);
|
|
}
|
|
|
|
function try_AndExpr()
|
|
{
|
|
try_ComparisonExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 75) // 'and'
|
|
{
|
|
break;
|
|
}
|
|
shiftT(75); // 'and'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ComparisonExpr();
|
|
}
|
|
}
|
|
|
|
function parse_ComparisonExpr()
|
|
{
|
|
eventHandler.startNonterminal("ComparisonExpr", e0);
|
|
parse_FTContainsExpr();
|
|
if (l1 == 27 // '!='
|
|
|| l1 == 54 // '<'
|
|
|| l1 == 57 // '<<'
|
|
|| l1 == 58 // '<='
|
|
|| l1 == 60 // '='
|
|
|| l1 == 61 // '>'
|
|
|| l1 == 62 // '>='
|
|
|| l1 == 63 // '>>'
|
|
|| l1 == 128 // 'eq'
|
|
|| l1 == 146 // 'ge'
|
|
|| l1 == 150 // 'gt'
|
|
|| l1 == 164 // 'is'
|
|
|| l1 == 172 // 'le'
|
|
|| l1 == 178 // 'lt'
|
|
|| l1 == 186) // 'ne'
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 128: // 'eq'
|
|
case 146: // 'ge'
|
|
case 150: // 'gt'
|
|
case 172: // 'le'
|
|
case 178: // 'lt'
|
|
case 186: // 'ne'
|
|
whitespace();
|
|
parse_ValueComp();
|
|
break;
|
|
case 57: // '<<'
|
|
case 63: // '>>'
|
|
case 164: // 'is'
|
|
whitespace();
|
|
parse_NodeComp();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_GeneralComp();
|
|
}
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_FTContainsExpr();
|
|
}
|
|
eventHandler.endNonterminal("ComparisonExpr", e0);
|
|
}
|
|
|
|
function try_ComparisonExpr()
|
|
{
|
|
try_FTContainsExpr();
|
|
if (l1 == 27 // '!='
|
|
|| l1 == 54 // '<'
|
|
|| l1 == 57 // '<<'
|
|
|| l1 == 58 // '<='
|
|
|| l1 == 60 // '='
|
|
|| l1 == 61 // '>'
|
|
|| l1 == 62 // '>='
|
|
|| l1 == 63 // '>>'
|
|
|| l1 == 128 // 'eq'
|
|
|| l1 == 146 // 'ge'
|
|
|| l1 == 150 // 'gt'
|
|
|| l1 == 164 // 'is'
|
|
|| l1 == 172 // 'le'
|
|
|| l1 == 178 // 'lt'
|
|
|| l1 == 186) // 'ne'
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 128: // 'eq'
|
|
case 146: // 'ge'
|
|
case 150: // 'gt'
|
|
case 172: // 'le'
|
|
case 178: // 'lt'
|
|
case 186: // 'ne'
|
|
try_ValueComp();
|
|
break;
|
|
case 57: // '<<'
|
|
case 63: // '>>'
|
|
case 164: // 'is'
|
|
try_NodeComp();
|
|
break;
|
|
default:
|
|
try_GeneralComp();
|
|
}
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_FTContainsExpr();
|
|
}
|
|
}
|
|
|
|
function parse_FTContainsExpr()
|
|
{
|
|
eventHandler.startNonterminal("FTContainsExpr", e0);
|
|
parse_StringConcatExpr();
|
|
if (l1 == 99) // 'contains'
|
|
{
|
|
shift(99); // 'contains'
|
|
lookahead1W(76); // S^WS | '(:' | 'text'
|
|
shift(244); // 'text'
|
|
lookahead1W(162); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{'
|
|
whitespace();
|
|
parse_FTSelection();
|
|
if (l1 == 271) // 'without'
|
|
{
|
|
whitespace();
|
|
parse_FTIgnoreOption();
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("FTContainsExpr", e0);
|
|
}
|
|
|
|
function try_FTContainsExpr()
|
|
{
|
|
try_StringConcatExpr();
|
|
if (l1 == 99) // 'contains'
|
|
{
|
|
shiftT(99); // 'contains'
|
|
lookahead1W(76); // S^WS | '(:' | 'text'
|
|
shiftT(244); // 'text'
|
|
lookahead1W(162); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{'
|
|
try_FTSelection();
|
|
if (l1 == 271) // 'without'
|
|
{
|
|
try_FTIgnoreOption();
|
|
}
|
|
}
|
|
}
|
|
|
|
function parse_StringConcatExpr()
|
|
{
|
|
eventHandler.startNonterminal("StringConcatExpr", e0);
|
|
parse_RangeExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 280) // '||'
|
|
{
|
|
break;
|
|
}
|
|
shift(280); // '||'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_RangeExpr();
|
|
}
|
|
eventHandler.endNonterminal("StringConcatExpr", e0);
|
|
}
|
|
|
|
function try_StringConcatExpr()
|
|
{
|
|
try_RangeExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 280) // '||'
|
|
{
|
|
break;
|
|
}
|
|
shiftT(280); // '||'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_RangeExpr();
|
|
}
|
|
}
|
|
|
|
function parse_RangeExpr()
|
|
{
|
|
eventHandler.startNonterminal("RangeExpr", e0);
|
|
parse_AdditiveExpr();
|
|
if (l1 == 248) // 'to'
|
|
{
|
|
shift(248); // 'to'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_AdditiveExpr();
|
|
}
|
|
eventHandler.endNonterminal("RangeExpr", e0);
|
|
}
|
|
|
|
function try_RangeExpr()
|
|
{
|
|
try_AdditiveExpr();
|
|
if (l1 == 248) // 'to'
|
|
{
|
|
shiftT(248); // 'to'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_AdditiveExpr();
|
|
}
|
|
}
|
|
|
|
function parse_AdditiveExpr()
|
|
{
|
|
eventHandler.startNonterminal("AdditiveExpr", e0);
|
|
parse_MultiplicativeExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 40 // '+'
|
|
&& l1 != 42) // '-'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 40: // '+'
|
|
shift(40); // '+'
|
|
break;
|
|
default:
|
|
shift(42); // '-'
|
|
}
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_MultiplicativeExpr();
|
|
}
|
|
eventHandler.endNonterminal("AdditiveExpr", e0);
|
|
}
|
|
|
|
function try_AdditiveExpr()
|
|
{
|
|
try_MultiplicativeExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 40 // '+'
|
|
&& l1 != 42) // '-'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 40: // '+'
|
|
shiftT(40); // '+'
|
|
break;
|
|
default:
|
|
shiftT(42); // '-'
|
|
}
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_MultiplicativeExpr();
|
|
}
|
|
}
|
|
|
|
function parse_MultiplicativeExpr()
|
|
{
|
|
eventHandler.startNonterminal("MultiplicativeExpr", e0);
|
|
parse_UnionExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 38 // '*'
|
|
&& l1 != 118 // 'div'
|
|
&& l1 != 151 // 'idiv'
|
|
&& l1 != 180) // 'mod'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 38: // '*'
|
|
shift(38); // '*'
|
|
break;
|
|
case 118: // 'div'
|
|
shift(118); // 'div'
|
|
break;
|
|
case 151: // 'idiv'
|
|
shift(151); // 'idiv'
|
|
break;
|
|
default:
|
|
shift(180); // 'mod'
|
|
}
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_UnionExpr();
|
|
}
|
|
eventHandler.endNonterminal("MultiplicativeExpr", e0);
|
|
}
|
|
|
|
function try_MultiplicativeExpr()
|
|
{
|
|
try_UnionExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 38 // '*'
|
|
&& l1 != 118 // 'div'
|
|
&& l1 != 151 // 'idiv'
|
|
&& l1 != 180) // 'mod'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 38: // '*'
|
|
shiftT(38); // '*'
|
|
break;
|
|
case 118: // 'div'
|
|
shiftT(118); // 'div'
|
|
break;
|
|
case 151: // 'idiv'
|
|
shiftT(151); // 'idiv'
|
|
break;
|
|
default:
|
|
shiftT(180); // 'mod'
|
|
}
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_UnionExpr();
|
|
}
|
|
}
|
|
|
|
function parse_UnionExpr()
|
|
{
|
|
eventHandler.startNonterminal("UnionExpr", e0);
|
|
parse_IntersectExceptExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 254 // 'union'
|
|
&& l1 != 279) // '|'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 254: // 'union'
|
|
shift(254); // 'union'
|
|
break;
|
|
default:
|
|
shift(279); // '|'
|
|
}
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_IntersectExceptExpr();
|
|
}
|
|
eventHandler.endNonterminal("UnionExpr", e0);
|
|
}
|
|
|
|
function try_UnionExpr()
|
|
{
|
|
try_IntersectExceptExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 254 // 'union'
|
|
&& l1 != 279) // '|'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 254: // 'union'
|
|
shiftT(254); // 'union'
|
|
break;
|
|
default:
|
|
shiftT(279); // '|'
|
|
}
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_IntersectExceptExpr();
|
|
}
|
|
}
|
|
|
|
function parse_IntersectExceptExpr()
|
|
{
|
|
eventHandler.startNonterminal("IntersectExceptExpr", e0);
|
|
parse_InstanceofExpr();
|
|
for (;;)
|
|
{
|
|
lookahead1W(222); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'collation' | 'contains' | 'count' | 'default' |
|
|
// 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' |
|
|
// 'ge' | 'group' | 'gt' | 'idiv' | 'intersect' | 'into' | 'is' | 'le' | 'let' |
|
|
// 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' |
|
|
// 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
if (l1 != 131 // 'except'
|
|
&& l1 != 162) // 'intersect'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 162: // 'intersect'
|
|
shift(162); // 'intersect'
|
|
break;
|
|
default:
|
|
shift(131); // 'except'
|
|
}
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_InstanceofExpr();
|
|
}
|
|
eventHandler.endNonterminal("IntersectExceptExpr", e0);
|
|
}
|
|
|
|
function try_IntersectExceptExpr()
|
|
{
|
|
try_InstanceofExpr();
|
|
for (;;)
|
|
{
|
|
lookahead1W(222); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'collation' | 'contains' | 'count' | 'default' |
|
|
// 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' |
|
|
// 'ge' | 'group' | 'gt' | 'idiv' | 'intersect' | 'into' | 'is' | 'le' | 'let' |
|
|
// 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' |
|
|
// 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
if (l1 != 131 // 'except'
|
|
&& l1 != 162) // 'intersect'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 162: // 'intersect'
|
|
shiftT(162); // 'intersect'
|
|
break;
|
|
default:
|
|
shiftT(131); // 'except'
|
|
}
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_InstanceofExpr();
|
|
}
|
|
}
|
|
|
|
function parse_InstanceofExpr()
|
|
{
|
|
eventHandler.startNonterminal("InstanceofExpr", e0);
|
|
parse_TreatExpr();
|
|
lookahead1W(223); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'collation' | 'contains' | 'count' | 'default' |
|
|
// 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' |
|
|
// 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' |
|
|
// 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' |
|
|
// 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' |
|
|
// 'times' | 'to' | 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
if (l1 == 160) // 'instance'
|
|
{
|
|
shift(160); // 'instance'
|
|
lookahead1W(64); // S^WS | '(:' | 'of'
|
|
shift(196); // 'of'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_SequenceType();
|
|
}
|
|
eventHandler.endNonterminal("InstanceofExpr", e0);
|
|
}
|
|
|
|
function try_InstanceofExpr()
|
|
{
|
|
try_TreatExpr();
|
|
lookahead1W(223); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'collation' | 'contains' | 'count' | 'default' |
|
|
// 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' |
|
|
// 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' |
|
|
// 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' |
|
|
// 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' |
|
|
// 'times' | 'to' | 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
if (l1 == 160) // 'instance'
|
|
{
|
|
shiftT(160); // 'instance'
|
|
lookahead1W(64); // S^WS | '(:' | 'of'
|
|
shiftT(196); // 'of'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
try_SequenceType();
|
|
}
|
|
}
|
|
|
|
function parse_TreatExpr()
|
|
{
|
|
eventHandler.startNonterminal("TreatExpr", e0);
|
|
parse_CastableExpr();
|
|
lookahead1W(224); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'collation' | 'contains' | 'count' | 'default' |
|
|
// 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' |
|
|
// 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' |
|
|
// 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' |
|
|
// 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' |
|
|
// 'times' | 'to' | 'treat' | 'union' | 'where' | 'with' | 'words' | '|' | '||' |
|
|
// '|}' | '}'
|
|
if (l1 == 249) // 'treat'
|
|
{
|
|
shift(249); // 'treat'
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shift(79); // 'as'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_SequenceType();
|
|
}
|
|
eventHandler.endNonterminal("TreatExpr", e0);
|
|
}
|
|
|
|
function try_TreatExpr()
|
|
{
|
|
try_CastableExpr();
|
|
lookahead1W(224); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'collation' | 'contains' | 'count' | 'default' |
|
|
// 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' |
|
|
// 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' |
|
|
// 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' |
|
|
// 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' |
|
|
// 'times' | 'to' | 'treat' | 'union' | 'where' | 'with' | 'words' | '|' | '||' |
|
|
// '|}' | '}'
|
|
if (l1 == 249) // 'treat'
|
|
{
|
|
shiftT(249); // 'treat'
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shiftT(79); // 'as'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
try_SequenceType();
|
|
}
|
|
}
|
|
|
|
function parse_CastableExpr()
|
|
{
|
|
eventHandler.startNonterminal("CastableExpr", e0);
|
|
parse_CastExpr();
|
|
lookahead1W(225); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'castable' | 'collation' | 'contains' | 'count' |
|
|
// 'default' | 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' |
|
|
// 'for' | 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' |
|
|
// 'is' | 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' |
|
|
// 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' |
|
|
// 'times' | 'to' | 'treat' | 'union' | 'where' | 'with' | 'words' | '|' | '||' |
|
|
// '|}' | '}'
|
|
if (l1 == 90) // 'castable'
|
|
{
|
|
shift(90); // 'castable'
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shift(79); // 'as'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_SingleType();
|
|
}
|
|
eventHandler.endNonterminal("CastableExpr", e0);
|
|
}
|
|
|
|
function try_CastableExpr()
|
|
{
|
|
try_CastExpr();
|
|
lookahead1W(225); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'castable' | 'collation' | 'contains' | 'count' |
|
|
// 'default' | 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' |
|
|
// 'for' | 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' |
|
|
// 'is' | 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' |
|
|
// 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' |
|
|
// 'times' | 'to' | 'treat' | 'union' | 'where' | 'with' | 'words' | '|' | '||' |
|
|
// '|}' | '}'
|
|
if (l1 == 90) // 'castable'
|
|
{
|
|
shiftT(90); // 'castable'
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shiftT(79); // 'as'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_SingleType();
|
|
}
|
|
}
|
|
|
|
function parse_CastExpr()
|
|
{
|
|
eventHandler.startNonterminal("CastExpr", e0);
|
|
parse_UnaryExpr();
|
|
lookahead1W(227); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'cast' | 'castable' | 'collation' | 'contains' |
|
|
// 'count' | 'default' | 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' |
|
|
// 'except' | 'for' | 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' |
|
|
// 'into' | 'is' | 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' |
|
|
// 'order' | 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' |
|
|
// 'start' | 'times' | 'to' | 'treat' | 'union' | 'where' | 'with' | 'words' | '|' |
|
|
// '||' | '|}' | '}'
|
|
if (l1 == 89) // 'cast'
|
|
{
|
|
shift(89); // 'cast'
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shift(79); // 'as'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_SingleType();
|
|
}
|
|
eventHandler.endNonterminal("CastExpr", e0);
|
|
}
|
|
|
|
function try_CastExpr()
|
|
{
|
|
try_UnaryExpr();
|
|
lookahead1W(227); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'cast' | 'castable' | 'collation' | 'contains' |
|
|
// 'count' | 'default' | 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' |
|
|
// 'except' | 'for' | 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' |
|
|
// 'into' | 'is' | 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' |
|
|
// 'order' | 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' |
|
|
// 'start' | 'times' | 'to' | 'treat' | 'union' | 'where' | 'with' | 'words' | '|' |
|
|
// '||' | '|}' | '}'
|
|
if (l1 == 89) // 'cast'
|
|
{
|
|
shiftT(89); // 'cast'
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shiftT(79); // 'as'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_SingleType();
|
|
}
|
|
}
|
|
|
|
function parse_UnaryExpr()
|
|
{
|
|
eventHandler.startNonterminal("UnaryExpr", e0);
|
|
for (;;)
|
|
{
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
if (l1 != 40 // '+'
|
|
&& l1 != 42) // '-'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 42: // '-'
|
|
shift(42); // '-'
|
|
break;
|
|
default:
|
|
shift(40); // '+'
|
|
}
|
|
}
|
|
whitespace();
|
|
parse_ValueExpr();
|
|
eventHandler.endNonterminal("UnaryExpr", e0);
|
|
}
|
|
|
|
function try_UnaryExpr()
|
|
{
|
|
for (;;)
|
|
{
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
if (l1 != 40 // '+'
|
|
&& l1 != 42) // '-'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 42: // '-'
|
|
shiftT(42); // '-'
|
|
break;
|
|
default:
|
|
shiftT(40); // '+'
|
|
}
|
|
}
|
|
try_ValueExpr();
|
|
}
|
|
|
|
function parse_ValueExpr()
|
|
{
|
|
eventHandler.startNonterminal("ValueExpr", e0);
|
|
switch (l1)
|
|
{
|
|
case 260: // 'validate'
|
|
lookahead2W(246); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'lax' | 'le' | 'let' |
|
|
// 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' |
|
|
// 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' | 'strict' | 'times' |
|
|
// 'to' | 'treat' | 'type' | 'union' | 'where' | 'with' | 'words' | '{' | '|' |
|
|
// '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 87812: // 'validate' 'lax'
|
|
case 123140: // 'validate' 'strict'
|
|
case 129284: // 'validate' 'type'
|
|
case 141572: // 'validate' '{'
|
|
parse_ValidateExpr();
|
|
break;
|
|
case 35: // '(#'
|
|
parse_ExtensionExpr();
|
|
break;
|
|
default:
|
|
parse_SimpleMapExpr();
|
|
}
|
|
eventHandler.endNonterminal("ValueExpr", e0);
|
|
}
|
|
|
|
function try_ValueExpr()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 260: // 'validate'
|
|
lookahead2W(246); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'lax' | 'le' | 'let' |
|
|
// 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' |
|
|
// 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' | 'strict' | 'times' |
|
|
// 'to' | 'treat' | 'type' | 'union' | 'where' | 'with' | 'words' | '{' | '|' |
|
|
// '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 87812: // 'validate' 'lax'
|
|
case 123140: // 'validate' 'strict'
|
|
case 129284: // 'validate' 'type'
|
|
case 141572: // 'validate' '{'
|
|
try_ValidateExpr();
|
|
break;
|
|
case 35: // '(#'
|
|
try_ExtensionExpr();
|
|
break;
|
|
default:
|
|
try_SimpleMapExpr();
|
|
}
|
|
}
|
|
|
|
function parse_SimpleMapExpr()
|
|
{
|
|
eventHandler.startNonterminal("SimpleMapExpr", e0);
|
|
parse_PathExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 26) // '!'
|
|
{
|
|
break;
|
|
}
|
|
shift(26); // '!'
|
|
lookahead1W(264); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '/' | '//' | '<' |
|
|
// '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_PathExpr();
|
|
}
|
|
eventHandler.endNonterminal("SimpleMapExpr", e0);
|
|
}
|
|
|
|
function try_SimpleMapExpr()
|
|
{
|
|
try_PathExpr();
|
|
for (;;)
|
|
{
|
|
if (l1 != 26) // '!'
|
|
{
|
|
break;
|
|
}
|
|
shiftT(26); // '!'
|
|
lookahead1W(264); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '/' | '//' | '<' |
|
|
// '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_PathExpr();
|
|
}
|
|
}
|
|
|
|
function parse_GeneralComp()
|
|
{
|
|
eventHandler.startNonterminal("GeneralComp", e0);
|
|
switch (l1)
|
|
{
|
|
case 60: // '='
|
|
shift(60); // '='
|
|
break;
|
|
case 27: // '!='
|
|
shift(27); // '!='
|
|
break;
|
|
case 54: // '<'
|
|
shift(54); // '<'
|
|
break;
|
|
case 58: // '<='
|
|
shift(58); // '<='
|
|
break;
|
|
case 61: // '>'
|
|
shift(61); // '>'
|
|
break;
|
|
default:
|
|
shift(62); // '>='
|
|
}
|
|
eventHandler.endNonterminal("GeneralComp", e0);
|
|
}
|
|
|
|
function try_GeneralComp()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 60: // '='
|
|
shiftT(60); // '='
|
|
break;
|
|
case 27: // '!='
|
|
shiftT(27); // '!='
|
|
break;
|
|
case 54: // '<'
|
|
shiftT(54); // '<'
|
|
break;
|
|
case 58: // '<='
|
|
shiftT(58); // '<='
|
|
break;
|
|
case 61: // '>'
|
|
shiftT(61); // '>'
|
|
break;
|
|
default:
|
|
shiftT(62); // '>='
|
|
}
|
|
}
|
|
|
|
function parse_ValueComp()
|
|
{
|
|
eventHandler.startNonterminal("ValueComp", e0);
|
|
switch (l1)
|
|
{
|
|
case 128: // 'eq'
|
|
shift(128); // 'eq'
|
|
break;
|
|
case 186: // 'ne'
|
|
shift(186); // 'ne'
|
|
break;
|
|
case 178: // 'lt'
|
|
shift(178); // 'lt'
|
|
break;
|
|
case 172: // 'le'
|
|
shift(172); // 'le'
|
|
break;
|
|
case 150: // 'gt'
|
|
shift(150); // 'gt'
|
|
break;
|
|
default:
|
|
shift(146); // 'ge'
|
|
}
|
|
eventHandler.endNonterminal("ValueComp", e0);
|
|
}
|
|
|
|
function try_ValueComp()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 128: // 'eq'
|
|
shiftT(128); // 'eq'
|
|
break;
|
|
case 186: // 'ne'
|
|
shiftT(186); // 'ne'
|
|
break;
|
|
case 178: // 'lt'
|
|
shiftT(178); // 'lt'
|
|
break;
|
|
case 172: // 'le'
|
|
shiftT(172); // 'le'
|
|
break;
|
|
case 150: // 'gt'
|
|
shiftT(150); // 'gt'
|
|
break;
|
|
default:
|
|
shiftT(146); // 'ge'
|
|
}
|
|
}
|
|
|
|
function parse_NodeComp()
|
|
{
|
|
eventHandler.startNonterminal("NodeComp", e0);
|
|
switch (l1)
|
|
{
|
|
case 164: // 'is'
|
|
shift(164); // 'is'
|
|
break;
|
|
case 57: // '<<'
|
|
shift(57); // '<<'
|
|
break;
|
|
default:
|
|
shift(63); // '>>'
|
|
}
|
|
eventHandler.endNonterminal("NodeComp", e0);
|
|
}
|
|
|
|
function try_NodeComp()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 164: // 'is'
|
|
shiftT(164); // 'is'
|
|
break;
|
|
case 57: // '<<'
|
|
shiftT(57); // '<<'
|
|
break;
|
|
default:
|
|
shiftT(63); // '>>'
|
|
}
|
|
}
|
|
|
|
function parse_ValidateExpr()
|
|
{
|
|
eventHandler.startNonterminal("ValidateExpr", e0);
|
|
shift(260); // 'validate'
|
|
lookahead1W(160); // S^WS | '(:' | 'lax' | 'strict' | 'type' | '{'
|
|
if (l1 != 276) // '{'
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 252: // 'type'
|
|
shift(252); // 'type'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_TypeName();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_ValidationMode();
|
|
}
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("ValidateExpr", e0);
|
|
}
|
|
|
|
function try_ValidateExpr()
|
|
{
|
|
shiftT(260); // 'validate'
|
|
lookahead1W(160); // S^WS | '(:' | 'lax' | 'strict' | 'type' | '{'
|
|
if (l1 != 276) // '{'
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 252: // 'type'
|
|
shiftT(252); // 'type'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_TypeName();
|
|
break;
|
|
default:
|
|
try_ValidationMode();
|
|
}
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_ValidationMode()
|
|
{
|
|
eventHandler.startNonterminal("ValidationMode", e0);
|
|
switch (l1)
|
|
{
|
|
case 171: // 'lax'
|
|
shift(171); // 'lax'
|
|
break;
|
|
default:
|
|
shift(240); // 'strict'
|
|
}
|
|
eventHandler.endNonterminal("ValidationMode", e0);
|
|
}
|
|
|
|
function try_ValidationMode()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 171: // 'lax'
|
|
shiftT(171); // 'lax'
|
|
break;
|
|
default:
|
|
shiftT(240); // 'strict'
|
|
}
|
|
}
|
|
|
|
function parse_ExtensionExpr()
|
|
{
|
|
eventHandler.startNonterminal("ExtensionExpr", e0);
|
|
for (;;)
|
|
{
|
|
whitespace();
|
|
parse_Pragma();
|
|
lookahead1W(100); // S^WS | '(#' | '(:' | '{'
|
|
if (l1 != 35) // '(#'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shift(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
if (l1 != 282) // '}'
|
|
{
|
|
whitespace();
|
|
parse_Expr();
|
|
}
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("ExtensionExpr", e0);
|
|
}
|
|
|
|
function try_ExtensionExpr()
|
|
{
|
|
for (;;)
|
|
{
|
|
try_Pragma();
|
|
lookahead1W(100); // S^WS | '(#' | '(:' | '{'
|
|
if (l1 != 35) // '(#'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shiftT(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
if (l1 != 282) // '}'
|
|
{
|
|
try_Expr();
|
|
}
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_Pragma()
|
|
{
|
|
eventHandler.startNonterminal("Pragma", e0);
|
|
shift(35); // '(#'
|
|
lookahead1(250); // EQName^Token | S | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery'
|
|
if (l1 == 21) // S
|
|
{
|
|
shift(21); // S
|
|
}
|
|
parse_EQName();
|
|
lookahead1(10); // S | '#)'
|
|
if (l1 == 21) // S
|
|
{
|
|
shift(21); // S
|
|
lookahead1(0); // PragmaContents
|
|
shift(1); // PragmaContents
|
|
}
|
|
lookahead1(5); // '#)'
|
|
shift(30); // '#)'
|
|
eventHandler.endNonterminal("Pragma", e0);
|
|
}
|
|
|
|
function try_Pragma()
|
|
{
|
|
shiftT(35); // '(#'
|
|
lookahead1(250); // EQName^Token | S | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery'
|
|
if (l1 == 21) // S
|
|
{
|
|
shiftT(21); // S
|
|
}
|
|
try_EQName();
|
|
lookahead1(10); // S | '#)'
|
|
if (l1 == 21) // S
|
|
{
|
|
shiftT(21); // S
|
|
lookahead1(0); // PragmaContents
|
|
shiftT(1); // PragmaContents
|
|
}
|
|
lookahead1(5); // '#)'
|
|
shiftT(30); // '#)'
|
|
}
|
|
|
|
function parse_PathExpr()
|
|
{
|
|
eventHandler.startNonterminal("PathExpr", e0);
|
|
switch (l1)
|
|
{
|
|
case 46: // '/'
|
|
shift(46); // '/'
|
|
lookahead1W(283); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '!' | '!=' | '$' | '%' | '(' | '(:' | ')' | '*' |
|
|
// '+' | ',' | '-' | '.' | '..' | ':' | ';' | '<' | '<!--' | '<<' | '<=' | '<?' |
|
|
// '=' | '>' | '>=' | '>>' | '@' | '[' | ']' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'contains' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'paragraphs' | 'parent' |
|
|
// 'preceding' | 'preceding-sibling' | 'processing-instruction' | 'rename' |
|
|
// 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sentences' |
|
|
// 'sliding' | 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' |
|
|
// 'times' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' |
|
|
// 'unordered' | 'updating' | 'validate' | 'value' | 'variable' | 'version' |
|
|
// 'where' | 'while' | 'with' | 'words' | 'xquery' | '{' | '{|' | '|' | '||' |
|
|
// '|}' | '}'
|
|
switch (l1)
|
|
{
|
|
case 25: // EOF
|
|
case 26: // '!'
|
|
case 27: // '!='
|
|
case 37: // ')'
|
|
case 38: // '*'
|
|
case 40: // '+'
|
|
case 41: // ','
|
|
case 42: // '-'
|
|
case 49: // ':'
|
|
case 53: // ';'
|
|
case 57: // '<<'
|
|
case 58: // '<='
|
|
case 60: // '='
|
|
case 61: // '>'
|
|
case 62: // '>='
|
|
case 63: // '>>'
|
|
case 69: // ']'
|
|
case 87: // 'by'
|
|
case 99: // 'contains'
|
|
case 205: // 'paragraphs'
|
|
case 232: // 'sentences'
|
|
case 247: // 'times'
|
|
case 273: // 'words'
|
|
case 279: // '|'
|
|
case 280: // '||'
|
|
case 281: // '|}'
|
|
case 282: // '}'
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_RelativePathExpr();
|
|
}
|
|
break;
|
|
case 47: // '//'
|
|
shift(47); // '//'
|
|
lookahead1W(263); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '<' | '<!--' |
|
|
// '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_RelativePathExpr();
|
|
break;
|
|
default:
|
|
parse_RelativePathExpr();
|
|
}
|
|
eventHandler.endNonterminal("PathExpr", e0);
|
|
}
|
|
|
|
function try_PathExpr()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 46: // '/'
|
|
shiftT(46); // '/'
|
|
lookahead1W(283); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '!' | '!=' | '$' | '%' | '(' | '(:' | ')' | '*' |
|
|
// '+' | ',' | '-' | '.' | '..' | ':' | ';' | '<' | '<!--' | '<<' | '<=' | '<?' |
|
|
// '=' | '>' | '>=' | '>>' | '@' | '[' | ']' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'contains' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'paragraphs' | 'parent' |
|
|
// 'preceding' | 'preceding-sibling' | 'processing-instruction' | 'rename' |
|
|
// 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sentences' |
|
|
// 'sliding' | 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' |
|
|
// 'times' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' |
|
|
// 'unordered' | 'updating' | 'validate' | 'value' | 'variable' | 'version' |
|
|
// 'where' | 'while' | 'with' | 'words' | 'xquery' | '{' | '{|' | '|' | '||' |
|
|
// '|}' | '}'
|
|
switch (l1)
|
|
{
|
|
case 25: // EOF
|
|
case 26: // '!'
|
|
case 27: // '!='
|
|
case 37: // ')'
|
|
case 38: // '*'
|
|
case 40: // '+'
|
|
case 41: // ','
|
|
case 42: // '-'
|
|
case 49: // ':'
|
|
case 53: // ';'
|
|
case 57: // '<<'
|
|
case 58: // '<='
|
|
case 60: // '='
|
|
case 61: // '>'
|
|
case 62: // '>='
|
|
case 63: // '>>'
|
|
case 69: // ']'
|
|
case 87: // 'by'
|
|
case 99: // 'contains'
|
|
case 205: // 'paragraphs'
|
|
case 232: // 'sentences'
|
|
case 247: // 'times'
|
|
case 273: // 'words'
|
|
case 279: // '|'
|
|
case 280: // '||'
|
|
case 281: // '|}'
|
|
case 282: // '}'
|
|
break;
|
|
default:
|
|
try_RelativePathExpr();
|
|
}
|
|
break;
|
|
case 47: // '//'
|
|
shiftT(47); // '//'
|
|
lookahead1W(263); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '<' | '<!--' |
|
|
// '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery' | '{' | '{|'
|
|
try_RelativePathExpr();
|
|
break;
|
|
default:
|
|
try_RelativePathExpr();
|
|
}
|
|
}
|
|
|
|
function parse_RelativePathExpr()
|
|
{
|
|
eventHandler.startNonterminal("RelativePathExpr", e0);
|
|
parse_StepExpr();
|
|
for (;;)
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 26: // '!'
|
|
lookahead2W(264); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '/' | '//' | '<' |
|
|
// '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk != 25 // EOF
|
|
&& lk != 27 // '!='
|
|
&& lk != 37 // ')'
|
|
&& lk != 38 // '*'
|
|
&& lk != 40 // '+'
|
|
&& lk != 41 // ','
|
|
&& lk != 42 // '-'
|
|
&& lk != 46 // '/'
|
|
&& lk != 47 // '//'
|
|
&& lk != 49 // ':'
|
|
&& lk != 53 // ';'
|
|
&& lk != 54 // '<'
|
|
&& lk != 57 // '<<'
|
|
&& lk != 58 // '<='
|
|
&& lk != 60 // '='
|
|
&& lk != 61 // '>'
|
|
&& lk != 62 // '>='
|
|
&& lk != 63 // '>>'
|
|
&& lk != 69 // ']'
|
|
&& lk != 70 // 'after'
|
|
&& lk != 75 // 'and'
|
|
&& lk != 79 // 'as'
|
|
&& lk != 80 // 'ascending'
|
|
&& lk != 81 // 'at'
|
|
&& lk != 84 // 'before'
|
|
&& lk != 87 // 'by'
|
|
&& lk != 88 // 'case'
|
|
&& lk != 89 // 'cast'
|
|
&& lk != 90 // 'castable'
|
|
&& lk != 94 // 'collation'
|
|
&& lk != 99 // 'contains'
|
|
&& lk != 105 // 'count'
|
|
&& lk != 109 // 'default'
|
|
&& lk != 113 // 'descending'
|
|
&& lk != 118 // 'div'
|
|
&& lk != 122 // 'else'
|
|
&& lk != 123 // 'empty'
|
|
&& lk != 126 // 'end'
|
|
&& lk != 128 // 'eq'
|
|
&& lk != 131 // 'except'
|
|
&& lk != 137 // 'for'
|
|
&& lk != 146 // 'ge'
|
|
&& lk != 148 // 'group'
|
|
&& lk != 150 // 'gt'
|
|
&& lk != 151 // 'idiv'
|
|
&& lk != 160 // 'instance'
|
|
&& lk != 162 // 'intersect'
|
|
&& lk != 163 // 'into'
|
|
&& lk != 164 // 'is'
|
|
&& lk != 172 // 'le'
|
|
&& lk != 174 // 'let'
|
|
&& lk != 178 // 'lt'
|
|
&& lk != 180 // 'mod'
|
|
&& lk != 181 // 'modify'
|
|
&& lk != 186 // 'ne'
|
|
&& lk != 198 // 'only'
|
|
&& lk != 200 // 'or'
|
|
&& lk != 201 // 'order'
|
|
&& lk != 205 // 'paragraphs'
|
|
&& lk != 220 // 'return'
|
|
&& lk != 224 // 'satisfies'
|
|
&& lk != 232 // 'sentences'
|
|
&& lk != 236 // 'stable'
|
|
&& lk != 237 // 'start'
|
|
&& lk != 247 // 'times'
|
|
&& lk != 248 // 'to'
|
|
&& lk != 249 // 'treat'
|
|
&& lk != 254 // 'union'
|
|
&& lk != 266 // 'where'
|
|
&& lk != 270 // 'with'
|
|
&& lk != 273 // 'words'
|
|
&& lk != 279 // '|'
|
|
&& lk != 280 // '||'
|
|
&& lk != 281 // '|}'
|
|
&& lk != 282 // '}'
|
|
&& lk != 23578 // '!' '/'
|
|
&& lk != 24090) // '!' '//'
|
|
{
|
|
lk = memoized(2, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 46: // '/'
|
|
shiftT(46); // '/'
|
|
break;
|
|
case 47: // '//'
|
|
shiftT(47); // '//'
|
|
break;
|
|
default:
|
|
shiftT(26); // '!'
|
|
}
|
|
lookahead1W(263); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '<' | '<!--' |
|
|
// '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery' | '{' | '{|'
|
|
try_StepExpr();
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(2, e0, lk);
|
|
}
|
|
}
|
|
if (lk != -1
|
|
&& lk != 46 // '/'
|
|
&& lk != 47) // '//'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 46: // '/'
|
|
shift(46); // '/'
|
|
break;
|
|
case 47: // '//'
|
|
shift(47); // '//'
|
|
break;
|
|
default:
|
|
shift(26); // '!'
|
|
}
|
|
lookahead1W(263); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '<' | '<!--' |
|
|
// '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_StepExpr();
|
|
}
|
|
eventHandler.endNonterminal("RelativePathExpr", e0);
|
|
}
|
|
|
|
function try_RelativePathExpr()
|
|
{
|
|
try_StepExpr();
|
|
for (;;)
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 26: // '!'
|
|
lookahead2W(264); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '/' | '//' | '<' |
|
|
// '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk != 25 // EOF
|
|
&& lk != 27 // '!='
|
|
&& lk != 37 // ')'
|
|
&& lk != 38 // '*'
|
|
&& lk != 40 // '+'
|
|
&& lk != 41 // ','
|
|
&& lk != 42 // '-'
|
|
&& lk != 46 // '/'
|
|
&& lk != 47 // '//'
|
|
&& lk != 49 // ':'
|
|
&& lk != 53 // ';'
|
|
&& lk != 54 // '<'
|
|
&& lk != 57 // '<<'
|
|
&& lk != 58 // '<='
|
|
&& lk != 60 // '='
|
|
&& lk != 61 // '>'
|
|
&& lk != 62 // '>='
|
|
&& lk != 63 // '>>'
|
|
&& lk != 69 // ']'
|
|
&& lk != 70 // 'after'
|
|
&& lk != 75 // 'and'
|
|
&& lk != 79 // 'as'
|
|
&& lk != 80 // 'ascending'
|
|
&& lk != 81 // 'at'
|
|
&& lk != 84 // 'before'
|
|
&& lk != 87 // 'by'
|
|
&& lk != 88 // 'case'
|
|
&& lk != 89 // 'cast'
|
|
&& lk != 90 // 'castable'
|
|
&& lk != 94 // 'collation'
|
|
&& lk != 99 // 'contains'
|
|
&& lk != 105 // 'count'
|
|
&& lk != 109 // 'default'
|
|
&& lk != 113 // 'descending'
|
|
&& lk != 118 // 'div'
|
|
&& lk != 122 // 'else'
|
|
&& lk != 123 // 'empty'
|
|
&& lk != 126 // 'end'
|
|
&& lk != 128 // 'eq'
|
|
&& lk != 131 // 'except'
|
|
&& lk != 137 // 'for'
|
|
&& lk != 146 // 'ge'
|
|
&& lk != 148 // 'group'
|
|
&& lk != 150 // 'gt'
|
|
&& lk != 151 // 'idiv'
|
|
&& lk != 160 // 'instance'
|
|
&& lk != 162 // 'intersect'
|
|
&& lk != 163 // 'into'
|
|
&& lk != 164 // 'is'
|
|
&& lk != 172 // 'le'
|
|
&& lk != 174 // 'let'
|
|
&& lk != 178 // 'lt'
|
|
&& lk != 180 // 'mod'
|
|
&& lk != 181 // 'modify'
|
|
&& lk != 186 // 'ne'
|
|
&& lk != 198 // 'only'
|
|
&& lk != 200 // 'or'
|
|
&& lk != 201 // 'order'
|
|
&& lk != 205 // 'paragraphs'
|
|
&& lk != 220 // 'return'
|
|
&& lk != 224 // 'satisfies'
|
|
&& lk != 232 // 'sentences'
|
|
&& lk != 236 // 'stable'
|
|
&& lk != 237 // 'start'
|
|
&& lk != 247 // 'times'
|
|
&& lk != 248 // 'to'
|
|
&& lk != 249 // 'treat'
|
|
&& lk != 254 // 'union'
|
|
&& lk != 266 // 'where'
|
|
&& lk != 270 // 'with'
|
|
&& lk != 273 // 'words'
|
|
&& lk != 279 // '|'
|
|
&& lk != 280 // '||'
|
|
&& lk != 281 // '|}'
|
|
&& lk != 282 // '}'
|
|
&& lk != 23578 // '!' '/'
|
|
&& lk != 24090) // '!' '//'
|
|
{
|
|
lk = memoized(2, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 46: // '/'
|
|
shiftT(46); // '/'
|
|
break;
|
|
case 47: // '//'
|
|
shiftT(47); // '//'
|
|
break;
|
|
default:
|
|
shiftT(26); // '!'
|
|
}
|
|
lookahead1W(263); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '<' | '<!--' |
|
|
// '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery' | '{' | '{|'
|
|
try_StepExpr();
|
|
memoize(2, e0A, -1);
|
|
continue;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(2, e0A, -2);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (lk != -1
|
|
&& lk != 46 // '/'
|
|
&& lk != 47) // '//'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 46: // '/'
|
|
shiftT(46); // '/'
|
|
break;
|
|
case 47: // '//'
|
|
shiftT(47); // '//'
|
|
break;
|
|
default:
|
|
shiftT(26); // '!'
|
|
}
|
|
lookahead1W(263); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '<' | '<!--' |
|
|
// '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery' | '{' | '{|'
|
|
try_StepExpr();
|
|
}
|
|
}
|
|
|
|
function parse_StepExpr()
|
|
{
|
|
eventHandler.startNonterminal("StepExpr", e0);
|
|
switch (l1)
|
|
{
|
|
case 82: // 'attribute'
|
|
lookahead2W(282); // EQName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' |
|
|
// ',' | '-' | '/' | '//' | ':' | '::' | ';' | '<' | '<<' | '<=' | '=' | '>' |
|
|
// '>=' | '>>' | '[' | ']' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'contains' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'paragraphs' | 'parent' |
|
|
// 'preceding' | 'preceding-sibling' | 'processing-instruction' | 'rename' |
|
|
// 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sentences' |
|
|
// 'sliding' | 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' |
|
|
// 'times' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' |
|
|
// 'unordered' | 'updating' | 'validate' | 'value' | 'variable' | 'version' |
|
|
// 'where' | 'while' | 'with' | 'words' | 'xquery' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 121: // 'element'
|
|
lookahead2W(280); // EQName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' |
|
|
// ',' | '-' | '/' | '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' |
|
|
// '>>' | '[' | ']' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'by' | 'case' | 'cast' | 'castable' |
|
|
// 'catch' | 'child' | 'collation' | 'comment' | 'constraint' | 'construction' |
|
|
// 'contains' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'paragraphs' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sentences' |
|
|
// 'sliding' | 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' |
|
|
// 'times' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' |
|
|
// 'unordered' | 'updating' | 'validate' | 'value' | 'variable' | 'version' |
|
|
// 'where' | 'while' | 'with' | 'words' | 'xquery' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 184: // 'namespace'
|
|
case 216: // 'processing-instruction'
|
|
lookahead2W(279); // NCName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' |
|
|
// ',' | '-' | '/' | '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' |
|
|
// '>>' | '[' | ']' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' |
|
|
// 'boundary-space' | 'break' | 'by' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'contains' |
|
|
// 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'paragraphs' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sentences' | 'sliding' | 'some' | 'stable' | 'start' |
|
|
// 'strict' | 'switch' | 'text' | 'times' | 'to' | 'treat' | 'try' | 'tumbling' |
|
|
// 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' | 'validate' |
|
|
// 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' | 'words' |
|
|
// 'xquery' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 96: // 'comment'
|
|
case 119: // 'document'
|
|
case 202: // 'ordered'
|
|
case 244: // 'text'
|
|
case 256: // 'unordered'
|
|
lookahead2W(245); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 124: // 'empty-sequence'
|
|
case 152: // 'if'
|
|
case 165: // 'item'
|
|
case 243: // 'switch'
|
|
case 253: // 'typeswitch'
|
|
lookahead2W(238); // S^WS | EOF | '!' | '!=' | '#' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 73: // 'ancestor'
|
|
case 74: // 'ancestor-or-self'
|
|
case 93: // 'child'
|
|
case 111: // 'descendant'
|
|
case 112: // 'descendant-or-self'
|
|
case 135: // 'following'
|
|
case 136: // 'following-sibling'
|
|
case 206: // 'parent'
|
|
case 212: // 'preceding'
|
|
case 213: // 'preceding-sibling'
|
|
case 229: // 'self'
|
|
lookahead2W(244); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' |
|
|
// 'cast' | 'castable' | 'collation' | 'contains' | 'count' | 'default' |
|
|
// 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' |
|
|
// 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' |
|
|
// 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' |
|
|
// 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' |
|
|
// 'times' | 'to' | 'treat' | 'union' | 'where' | 'with' | 'words' | '|' | '||' |
|
|
// '|}' | '}'
|
|
break;
|
|
case 6: // EQName^Token
|
|
case 70: // 'after'
|
|
case 72: // 'allowing'
|
|
case 75: // 'and'
|
|
case 78: // 'array'
|
|
case 79: // 'as'
|
|
case 80: // 'ascending'
|
|
case 81: // 'at'
|
|
case 83: // 'base-uri'
|
|
case 84: // 'before'
|
|
case 85: // 'boundary-space'
|
|
case 86: // 'break'
|
|
case 88: // 'case'
|
|
case 89: // 'cast'
|
|
case 90: // 'castable'
|
|
case 91: // 'catch'
|
|
case 94: // 'collation'
|
|
case 97: // 'constraint'
|
|
case 98: // 'construction'
|
|
case 101: // 'context'
|
|
case 102: // 'continue'
|
|
case 103: // 'copy'
|
|
case 104: // 'copy-namespaces'
|
|
case 105: // 'count'
|
|
case 106: // 'decimal-format'
|
|
case 108: // 'declare'
|
|
case 109: // 'default'
|
|
case 110: // 'delete'
|
|
case 113: // 'descending'
|
|
case 118: // 'div'
|
|
case 120: // 'document-node'
|
|
case 122: // 'else'
|
|
case 123: // 'empty'
|
|
case 125: // 'encoding'
|
|
case 126: // 'end'
|
|
case 128: // 'eq'
|
|
case 129: // 'every'
|
|
case 131: // 'except'
|
|
case 132: // 'exit'
|
|
case 133: // 'external'
|
|
case 134: // 'first'
|
|
case 137: // 'for'
|
|
case 141: // 'ft-option'
|
|
case 145: // 'function'
|
|
case 146: // 'ge'
|
|
case 148: // 'group'
|
|
case 150: // 'gt'
|
|
case 151: // 'idiv'
|
|
case 153: // 'import'
|
|
case 154: // 'in'
|
|
case 155: // 'index'
|
|
case 159: // 'insert'
|
|
case 160: // 'instance'
|
|
case 161: // 'integrity'
|
|
case 162: // 'intersect'
|
|
case 163: // 'into'
|
|
case 164: // 'is'
|
|
case 167: // 'json-item'
|
|
case 170: // 'last'
|
|
case 171: // 'lax'
|
|
case 172: // 'le'
|
|
case 174: // 'let'
|
|
case 176: // 'loop'
|
|
case 178: // 'lt'
|
|
case 180: // 'mod'
|
|
case 181: // 'modify'
|
|
case 182: // 'module'
|
|
case 185: // 'namespace-node'
|
|
case 186: // 'ne'
|
|
case 191: // 'node'
|
|
case 192: // 'nodes'
|
|
case 194: // 'object'
|
|
case 198: // 'only'
|
|
case 199: // 'option'
|
|
case 200: // 'or'
|
|
case 201: // 'order'
|
|
case 203: // 'ordering'
|
|
case 218: // 'rename'
|
|
case 219: // 'replace'
|
|
case 220: // 'return'
|
|
case 221: // 'returning'
|
|
case 222: // 'revalidation'
|
|
case 224: // 'satisfies'
|
|
case 225: // 'schema'
|
|
case 226: // 'schema-attribute'
|
|
case 227: // 'schema-element'
|
|
case 228: // 'score'
|
|
case 234: // 'sliding'
|
|
case 235: // 'some'
|
|
case 236: // 'stable'
|
|
case 237: // 'start'
|
|
case 240: // 'strict'
|
|
case 248: // 'to'
|
|
case 249: // 'treat'
|
|
case 250: // 'try'
|
|
case 251: // 'tumbling'
|
|
case 252: // 'type'
|
|
case 254: // 'union'
|
|
case 257: // 'updating'
|
|
case 260: // 'validate'
|
|
case 261: // 'value'
|
|
case 262: // 'variable'
|
|
case 263: // 'version'
|
|
case 266: // 'where'
|
|
case 267: // 'while'
|
|
case 270: // 'with'
|
|
case 274: // 'xquery'
|
|
lookahead2W(242); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 17486 // 'array' '('
|
|
|| lk == 17575 // 'json-item' '('
|
|
|| lk == 17602 // 'object' '('
|
|
|| lk == 35922 // 'attribute' 'after'
|
|
|| lk == 35961 // 'element' 'after'
|
|
|| lk == 36024 // 'namespace' 'after'
|
|
|| lk == 36056 // 'processing-instruction' 'after'
|
|
|| lk == 38482 // 'attribute' 'and'
|
|
|| lk == 38521 // 'element' 'and'
|
|
|| lk == 38584 // 'namespace' 'and'
|
|
|| lk == 38616 // 'processing-instruction' 'and'
|
|
|| lk == 40530 // 'attribute' 'as'
|
|
|| lk == 40569 // 'element' 'as'
|
|
|| lk == 40632 // 'namespace' 'as'
|
|
|| lk == 40664 // 'processing-instruction' 'as'
|
|
|| lk == 41042 // 'attribute' 'ascending'
|
|
|| lk == 41081 // 'element' 'ascending'
|
|
|| lk == 41144 // 'namespace' 'ascending'
|
|
|| lk == 41176 // 'processing-instruction' 'ascending'
|
|
|| lk == 41554 // 'attribute' 'at'
|
|
|| lk == 41593 // 'element' 'at'
|
|
|| lk == 41656 // 'namespace' 'at'
|
|
|| lk == 41688 // 'processing-instruction' 'at'
|
|
|| lk == 43090 // 'attribute' 'before'
|
|
|| lk == 43129 // 'element' 'before'
|
|
|| lk == 43192 // 'namespace' 'before'
|
|
|| lk == 43224 // 'processing-instruction' 'before'
|
|
|| lk == 45138 // 'attribute' 'case'
|
|
|| lk == 45177 // 'element' 'case'
|
|
|| lk == 45240 // 'namespace' 'case'
|
|
|| lk == 45272 // 'processing-instruction' 'case'
|
|
|| lk == 45650 // 'attribute' 'cast'
|
|
|| lk == 45689 // 'element' 'cast'
|
|
|| lk == 45752 // 'namespace' 'cast'
|
|
|| lk == 45784 // 'processing-instruction' 'cast'
|
|
|| lk == 46162 // 'attribute' 'castable'
|
|
|| lk == 46201 // 'element' 'castable'
|
|
|| lk == 46264 // 'namespace' 'castable'
|
|
|| lk == 46296 // 'processing-instruction' 'castable'
|
|
|| lk == 48210 // 'attribute' 'collation'
|
|
|| lk == 48249 // 'element' 'collation'
|
|
|| lk == 48312 // 'namespace' 'collation'
|
|
|| lk == 48344 // 'processing-instruction' 'collation'
|
|
|| lk == 53842 // 'attribute' 'count'
|
|
|| lk == 53881 // 'element' 'count'
|
|
|| lk == 53944 // 'namespace' 'count'
|
|
|| lk == 53976 // 'processing-instruction' 'count'
|
|
|| lk == 55890 // 'attribute' 'default'
|
|
|| lk == 55929 // 'element' 'default'
|
|
|| lk == 55992 // 'namespace' 'default'
|
|
|| lk == 56024 // 'processing-instruction' 'default'
|
|
|| lk == 57938 // 'attribute' 'descending'
|
|
|| lk == 57977 // 'element' 'descending'
|
|
|| lk == 58040 // 'namespace' 'descending'
|
|
|| lk == 58072 // 'processing-instruction' 'descending'
|
|
|| lk == 60498 // 'attribute' 'div'
|
|
|| lk == 60537 // 'element' 'div'
|
|
|| lk == 60600 // 'namespace' 'div'
|
|
|| lk == 60632 // 'processing-instruction' 'div'
|
|
|| lk == 62546 // 'attribute' 'else'
|
|
|| lk == 62585 // 'element' 'else'
|
|
|| lk == 62648 // 'namespace' 'else'
|
|
|| lk == 62680 // 'processing-instruction' 'else'
|
|
|| lk == 63058 // 'attribute' 'empty'
|
|
|| lk == 63097 // 'element' 'empty'
|
|
|| lk == 63160 // 'namespace' 'empty'
|
|
|| lk == 63192 // 'processing-instruction' 'empty'
|
|
|| lk == 64594 // 'attribute' 'end'
|
|
|| lk == 64633 // 'element' 'end'
|
|
|| lk == 64696 // 'namespace' 'end'
|
|
|| lk == 64728 // 'processing-instruction' 'end'
|
|
|| lk == 65618 // 'attribute' 'eq'
|
|
|| lk == 65657 // 'element' 'eq'
|
|
|| lk == 65720 // 'namespace' 'eq'
|
|
|| lk == 65752 // 'processing-instruction' 'eq'
|
|
|| lk == 67154 // 'attribute' 'except'
|
|
|| lk == 67193 // 'element' 'except'
|
|
|| lk == 67256 // 'namespace' 'except'
|
|
|| lk == 67288 // 'processing-instruction' 'except'
|
|
|| lk == 70226 // 'attribute' 'for'
|
|
|| lk == 70265 // 'element' 'for'
|
|
|| lk == 70328 // 'namespace' 'for'
|
|
|| lk == 70360 // 'processing-instruction' 'for'
|
|
|| lk == 74834 // 'attribute' 'ge'
|
|
|| lk == 74873 // 'element' 'ge'
|
|
|| lk == 74936 // 'namespace' 'ge'
|
|
|| lk == 74968 // 'processing-instruction' 'ge'
|
|
|| lk == 75858 // 'attribute' 'group'
|
|
|| lk == 75897 // 'element' 'group'
|
|
|| lk == 75960 // 'namespace' 'group'
|
|
|| lk == 75992 // 'processing-instruction' 'group'
|
|
|| lk == 76882 // 'attribute' 'gt'
|
|
|| lk == 76921 // 'element' 'gt'
|
|
|| lk == 76984 // 'namespace' 'gt'
|
|
|| lk == 77016 // 'processing-instruction' 'gt'
|
|
|| lk == 77394 // 'attribute' 'idiv'
|
|
|| lk == 77433 // 'element' 'idiv'
|
|
|| lk == 77496 // 'namespace' 'idiv'
|
|
|| lk == 77528 // 'processing-instruction' 'idiv'
|
|
|| lk == 82002 // 'attribute' 'instance'
|
|
|| lk == 82041 // 'element' 'instance'
|
|
|| lk == 82104 // 'namespace' 'instance'
|
|
|| lk == 82136 // 'processing-instruction' 'instance'
|
|
|| lk == 83026 // 'attribute' 'intersect'
|
|
|| lk == 83065 // 'element' 'intersect'
|
|
|| lk == 83128 // 'namespace' 'intersect'
|
|
|| lk == 83160 // 'processing-instruction' 'intersect'
|
|
|| lk == 83538 // 'attribute' 'into'
|
|
|| lk == 83577 // 'element' 'into'
|
|
|| lk == 83640 // 'namespace' 'into'
|
|
|| lk == 83672 // 'processing-instruction' 'into'
|
|
|| lk == 84050 // 'attribute' 'is'
|
|
|| lk == 84089 // 'element' 'is'
|
|
|| lk == 84152 // 'namespace' 'is'
|
|
|| lk == 84184 // 'processing-instruction' 'is'
|
|
|| lk == 88146 // 'attribute' 'le'
|
|
|| lk == 88185 // 'element' 'le'
|
|
|| lk == 88248 // 'namespace' 'le'
|
|
|| lk == 88280 // 'processing-instruction' 'le'
|
|
|| lk == 89170 // 'attribute' 'let'
|
|
|| lk == 89209 // 'element' 'let'
|
|
|| lk == 89272 // 'namespace' 'let'
|
|
|| lk == 89304 // 'processing-instruction' 'let'
|
|
|| lk == 91218 // 'attribute' 'lt'
|
|
|| lk == 91257 // 'element' 'lt'
|
|
|| lk == 91320 // 'namespace' 'lt'
|
|
|| lk == 91352 // 'processing-instruction' 'lt'
|
|
|| lk == 92242 // 'attribute' 'mod'
|
|
|| lk == 92281 // 'element' 'mod'
|
|
|| lk == 92344 // 'namespace' 'mod'
|
|
|| lk == 92376 // 'processing-instruction' 'mod'
|
|
|| lk == 92754 // 'attribute' 'modify'
|
|
|| lk == 92793 // 'element' 'modify'
|
|
|| lk == 92856 // 'namespace' 'modify'
|
|
|| lk == 92888 // 'processing-instruction' 'modify'
|
|
|| lk == 95314 // 'attribute' 'ne'
|
|
|| lk == 95353 // 'element' 'ne'
|
|
|| lk == 95416 // 'namespace' 'ne'
|
|
|| lk == 95448 // 'processing-instruction' 'ne'
|
|
|| lk == 101458 // 'attribute' 'only'
|
|
|| lk == 101497 // 'element' 'only'
|
|
|| lk == 101560 // 'namespace' 'only'
|
|
|| lk == 101592 // 'processing-instruction' 'only'
|
|
|| lk == 102482 // 'attribute' 'or'
|
|
|| lk == 102521 // 'element' 'or'
|
|
|| lk == 102584 // 'namespace' 'or'
|
|
|| lk == 102616 // 'processing-instruction' 'or'
|
|
|| lk == 102994 // 'attribute' 'order'
|
|
|| lk == 103033 // 'element' 'order'
|
|
|| lk == 103096 // 'namespace' 'order'
|
|
|| lk == 103128 // 'processing-instruction' 'order'
|
|
|| lk == 112722 // 'attribute' 'return'
|
|
|| lk == 112761 // 'element' 'return'
|
|
|| lk == 112824 // 'namespace' 'return'
|
|
|| lk == 112856 // 'processing-instruction' 'return'
|
|
|| lk == 114770 // 'attribute' 'satisfies'
|
|
|| lk == 114809 // 'element' 'satisfies'
|
|
|| lk == 114872 // 'namespace' 'satisfies'
|
|
|| lk == 114904 // 'processing-instruction' 'satisfies'
|
|
|| lk == 120914 // 'attribute' 'stable'
|
|
|| lk == 120953 // 'element' 'stable'
|
|
|| lk == 121016 // 'namespace' 'stable'
|
|
|| lk == 121048 // 'processing-instruction' 'stable'
|
|
|| lk == 121426 // 'attribute' 'start'
|
|
|| lk == 121465 // 'element' 'start'
|
|
|| lk == 121528 // 'namespace' 'start'
|
|
|| lk == 121560 // 'processing-instruction' 'start'
|
|
|| lk == 127058 // 'attribute' 'to'
|
|
|| lk == 127097 // 'element' 'to'
|
|
|| lk == 127160 // 'namespace' 'to'
|
|
|| lk == 127192 // 'processing-instruction' 'to'
|
|
|| lk == 127570 // 'attribute' 'treat'
|
|
|| lk == 127609 // 'element' 'treat'
|
|
|| lk == 127672 // 'namespace' 'treat'
|
|
|| lk == 127704 // 'processing-instruction' 'treat'
|
|
|| lk == 130130 // 'attribute' 'union'
|
|
|| lk == 130169 // 'element' 'union'
|
|
|| lk == 130232 // 'namespace' 'union'
|
|
|| lk == 130264 // 'processing-instruction' 'union'
|
|
|| lk == 136274 // 'attribute' 'where'
|
|
|| lk == 136313 // 'element' 'where'
|
|
|| lk == 136376 // 'namespace' 'where'
|
|
|| lk == 136408 // 'processing-instruction' 'where'
|
|
|| lk == 138322 // 'attribute' 'with'
|
|
|| lk == 138361 // 'element' 'with'
|
|
|| lk == 138424 // 'namespace' 'with'
|
|
|| lk == 138456) // 'processing-instruction' 'with'
|
|
{
|
|
lk = memoized(3, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_PostfixExpr();
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(3, e0, lk);
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
case 8: // IntegerLiteral
|
|
case 9: // DecimalLiteral
|
|
case 10: // DoubleLiteral
|
|
case 11: // StringLiteral
|
|
case 31: // '$'
|
|
case 32: // '%'
|
|
case 34: // '('
|
|
case 44: // '.'
|
|
case 54: // '<'
|
|
case 55: // '<!--'
|
|
case 59: // '<?'
|
|
case 68: // '['
|
|
case 276: // '{'
|
|
case 278: // '{|'
|
|
case 3154: // 'attribute' EQName^Token
|
|
case 3193: // 'element' EQName^Token
|
|
case 9912: // 'namespace' NCName^Token
|
|
case 9944: // 'processing-instruction' NCName^Token
|
|
case 14854: // EQName^Token '#'
|
|
case 14918: // 'after' '#'
|
|
case 14920: // 'allowing' '#'
|
|
case 14921: // 'ancestor' '#'
|
|
case 14922: // 'ancestor-or-self' '#'
|
|
case 14923: // 'and' '#'
|
|
case 14926: // 'array' '#'
|
|
case 14927: // 'as' '#'
|
|
case 14928: // 'ascending' '#'
|
|
case 14929: // 'at' '#'
|
|
case 14930: // 'attribute' '#'
|
|
case 14931: // 'base-uri' '#'
|
|
case 14932: // 'before' '#'
|
|
case 14933: // 'boundary-space' '#'
|
|
case 14934: // 'break' '#'
|
|
case 14936: // 'case' '#'
|
|
case 14937: // 'cast' '#'
|
|
case 14938: // 'castable' '#'
|
|
case 14939: // 'catch' '#'
|
|
case 14941: // 'child' '#'
|
|
case 14942: // 'collation' '#'
|
|
case 14944: // 'comment' '#'
|
|
case 14945: // 'constraint' '#'
|
|
case 14946: // 'construction' '#'
|
|
case 14949: // 'context' '#'
|
|
case 14950: // 'continue' '#'
|
|
case 14951: // 'copy' '#'
|
|
case 14952: // 'copy-namespaces' '#'
|
|
case 14953: // 'count' '#'
|
|
case 14954: // 'decimal-format' '#'
|
|
case 14956: // 'declare' '#'
|
|
case 14957: // 'default' '#'
|
|
case 14958: // 'delete' '#'
|
|
case 14959: // 'descendant' '#'
|
|
case 14960: // 'descendant-or-self' '#'
|
|
case 14961: // 'descending' '#'
|
|
case 14966: // 'div' '#'
|
|
case 14967: // 'document' '#'
|
|
case 14968: // 'document-node' '#'
|
|
case 14969: // 'element' '#'
|
|
case 14970: // 'else' '#'
|
|
case 14971: // 'empty' '#'
|
|
case 14972: // 'empty-sequence' '#'
|
|
case 14973: // 'encoding' '#'
|
|
case 14974: // 'end' '#'
|
|
case 14976: // 'eq' '#'
|
|
case 14977: // 'every' '#'
|
|
case 14979: // 'except' '#'
|
|
case 14980: // 'exit' '#'
|
|
case 14981: // 'external' '#'
|
|
case 14982: // 'first' '#'
|
|
case 14983: // 'following' '#'
|
|
case 14984: // 'following-sibling' '#'
|
|
case 14985: // 'for' '#'
|
|
case 14989: // 'ft-option' '#'
|
|
case 14993: // 'function' '#'
|
|
case 14994: // 'ge' '#'
|
|
case 14996: // 'group' '#'
|
|
case 14998: // 'gt' '#'
|
|
case 14999: // 'idiv' '#'
|
|
case 15000: // 'if' '#'
|
|
case 15001: // 'import' '#'
|
|
case 15002: // 'in' '#'
|
|
case 15003: // 'index' '#'
|
|
case 15007: // 'insert' '#'
|
|
case 15008: // 'instance' '#'
|
|
case 15009: // 'integrity' '#'
|
|
case 15010: // 'intersect' '#'
|
|
case 15011: // 'into' '#'
|
|
case 15012: // 'is' '#'
|
|
case 15013: // 'item' '#'
|
|
case 15015: // 'json-item' '#'
|
|
case 15018: // 'last' '#'
|
|
case 15019: // 'lax' '#'
|
|
case 15020: // 'le' '#'
|
|
case 15022: // 'let' '#'
|
|
case 15024: // 'loop' '#'
|
|
case 15026: // 'lt' '#'
|
|
case 15028: // 'mod' '#'
|
|
case 15029: // 'modify' '#'
|
|
case 15030: // 'module' '#'
|
|
case 15032: // 'namespace' '#'
|
|
case 15033: // 'namespace-node' '#'
|
|
case 15034: // 'ne' '#'
|
|
case 15039: // 'node' '#'
|
|
case 15040: // 'nodes' '#'
|
|
case 15042: // 'object' '#'
|
|
case 15046: // 'only' '#'
|
|
case 15047: // 'option' '#'
|
|
case 15048: // 'or' '#'
|
|
case 15049: // 'order' '#'
|
|
case 15050: // 'ordered' '#'
|
|
case 15051: // 'ordering' '#'
|
|
case 15054: // 'parent' '#'
|
|
case 15060: // 'preceding' '#'
|
|
case 15061: // 'preceding-sibling' '#'
|
|
case 15064: // 'processing-instruction' '#'
|
|
case 15066: // 'rename' '#'
|
|
case 15067: // 'replace' '#'
|
|
case 15068: // 'return' '#'
|
|
case 15069: // 'returning' '#'
|
|
case 15070: // 'revalidation' '#'
|
|
case 15072: // 'satisfies' '#'
|
|
case 15073: // 'schema' '#'
|
|
case 15074: // 'schema-attribute' '#'
|
|
case 15075: // 'schema-element' '#'
|
|
case 15076: // 'score' '#'
|
|
case 15077: // 'self' '#'
|
|
case 15082: // 'sliding' '#'
|
|
case 15083: // 'some' '#'
|
|
case 15084: // 'stable' '#'
|
|
case 15085: // 'start' '#'
|
|
case 15088: // 'strict' '#'
|
|
case 15091: // 'switch' '#'
|
|
case 15092: // 'text' '#'
|
|
case 15096: // 'to' '#'
|
|
case 15097: // 'treat' '#'
|
|
case 15098: // 'try' '#'
|
|
case 15099: // 'tumbling' '#'
|
|
case 15100: // 'type' '#'
|
|
case 15101: // 'typeswitch' '#'
|
|
case 15102: // 'union' '#'
|
|
case 15104: // 'unordered' '#'
|
|
case 15105: // 'updating' '#'
|
|
case 15108: // 'validate' '#'
|
|
case 15109: // 'value' '#'
|
|
case 15110: // 'variable' '#'
|
|
case 15111: // 'version' '#'
|
|
case 15114: // 'where' '#'
|
|
case 15115: // 'while' '#'
|
|
case 15118: // 'with' '#'
|
|
case 15122: // 'xquery' '#'
|
|
case 17414: // EQName^Token '('
|
|
case 17478: // 'after' '('
|
|
case 17480: // 'allowing' '('
|
|
case 17481: // 'ancestor' '('
|
|
case 17482: // 'ancestor-or-self' '('
|
|
case 17483: // 'and' '('
|
|
case 17487: // 'as' '('
|
|
case 17488: // 'ascending' '('
|
|
case 17489: // 'at' '('
|
|
case 17491: // 'base-uri' '('
|
|
case 17492: // 'before' '('
|
|
case 17493: // 'boundary-space' '('
|
|
case 17494: // 'break' '('
|
|
case 17496: // 'case' '('
|
|
case 17497: // 'cast' '('
|
|
case 17498: // 'castable' '('
|
|
case 17499: // 'catch' '('
|
|
case 17501: // 'child' '('
|
|
case 17502: // 'collation' '('
|
|
case 17505: // 'constraint' '('
|
|
case 17506: // 'construction' '('
|
|
case 17509: // 'context' '('
|
|
case 17510: // 'continue' '('
|
|
case 17511: // 'copy' '('
|
|
case 17512: // 'copy-namespaces' '('
|
|
case 17513: // 'count' '('
|
|
case 17514: // 'decimal-format' '('
|
|
case 17516: // 'declare' '('
|
|
case 17517: // 'default' '('
|
|
case 17518: // 'delete' '('
|
|
case 17519: // 'descendant' '('
|
|
case 17520: // 'descendant-or-self' '('
|
|
case 17521: // 'descending' '('
|
|
case 17526: // 'div' '('
|
|
case 17527: // 'document' '('
|
|
case 17530: // 'else' '('
|
|
case 17531: // 'empty' '('
|
|
case 17533: // 'encoding' '('
|
|
case 17534: // 'end' '('
|
|
case 17536: // 'eq' '('
|
|
case 17537: // 'every' '('
|
|
case 17539: // 'except' '('
|
|
case 17540: // 'exit' '('
|
|
case 17541: // 'external' '('
|
|
case 17542: // 'first' '('
|
|
case 17543: // 'following' '('
|
|
case 17544: // 'following-sibling' '('
|
|
case 17545: // 'for' '('
|
|
case 17549: // 'ft-option' '('
|
|
case 17553: // 'function' '('
|
|
case 17554: // 'ge' '('
|
|
case 17556: // 'group' '('
|
|
case 17558: // 'gt' '('
|
|
case 17559: // 'idiv' '('
|
|
case 17561: // 'import' '('
|
|
case 17562: // 'in' '('
|
|
case 17563: // 'index' '('
|
|
case 17567: // 'insert' '('
|
|
case 17568: // 'instance' '('
|
|
case 17569: // 'integrity' '('
|
|
case 17570: // 'intersect' '('
|
|
case 17571: // 'into' '('
|
|
case 17572: // 'is' '('
|
|
case 17578: // 'last' '('
|
|
case 17579: // 'lax' '('
|
|
case 17580: // 'le' '('
|
|
case 17582: // 'let' '('
|
|
case 17584: // 'loop' '('
|
|
case 17586: // 'lt' '('
|
|
case 17588: // 'mod' '('
|
|
case 17589: // 'modify' '('
|
|
case 17590: // 'module' '('
|
|
case 17592: // 'namespace' '('
|
|
case 17594: // 'ne' '('
|
|
case 17600: // 'nodes' '('
|
|
case 17606: // 'only' '('
|
|
case 17607: // 'option' '('
|
|
case 17608: // 'or' '('
|
|
case 17609: // 'order' '('
|
|
case 17610: // 'ordered' '('
|
|
case 17611: // 'ordering' '('
|
|
case 17614: // 'parent' '('
|
|
case 17620: // 'preceding' '('
|
|
case 17621: // 'preceding-sibling' '('
|
|
case 17626: // 'rename' '('
|
|
case 17627: // 'replace' '('
|
|
case 17628: // 'return' '('
|
|
case 17629: // 'returning' '('
|
|
case 17630: // 'revalidation' '('
|
|
case 17632: // 'satisfies' '('
|
|
case 17633: // 'schema' '('
|
|
case 17636: // 'score' '('
|
|
case 17637: // 'self' '('
|
|
case 17642: // 'sliding' '('
|
|
case 17643: // 'some' '('
|
|
case 17644: // 'stable' '('
|
|
case 17645: // 'start' '('
|
|
case 17648: // 'strict' '('
|
|
case 17656: // 'to' '('
|
|
case 17657: // 'treat' '('
|
|
case 17658: // 'try' '('
|
|
case 17659: // 'tumbling' '('
|
|
case 17660: // 'type' '('
|
|
case 17662: // 'union' '('
|
|
case 17664: // 'unordered' '('
|
|
case 17665: // 'updating' '('
|
|
case 17668: // 'validate' '('
|
|
case 17669: // 'value' '('
|
|
case 17670: // 'variable' '('
|
|
case 17671: // 'version' '('
|
|
case 17674: // 'where' '('
|
|
case 17675: // 'while' '('
|
|
case 17678: // 'with' '('
|
|
case 17682: // 'xquery' '('
|
|
case 36946: // 'attribute' 'allowing'
|
|
case 36985: // 'element' 'allowing'
|
|
case 37048: // 'namespace' 'allowing'
|
|
case 37080: // 'processing-instruction' 'allowing'
|
|
case 37458: // 'attribute' 'ancestor'
|
|
case 37497: // 'element' 'ancestor'
|
|
case 37560: // 'namespace' 'ancestor'
|
|
case 37592: // 'processing-instruction' 'ancestor'
|
|
case 37970: // 'attribute' 'ancestor-or-self'
|
|
case 38009: // 'element' 'ancestor-or-self'
|
|
case 38072: // 'namespace' 'ancestor-or-self'
|
|
case 38104: // 'processing-instruction' 'ancestor-or-self'
|
|
case 40018: // 'attribute' 'array'
|
|
case 40057: // 'element' 'array'
|
|
case 42066: // 'attribute' 'attribute'
|
|
case 42105: // 'element' 'attribute'
|
|
case 42168: // 'namespace' 'attribute'
|
|
case 42200: // 'processing-instruction' 'attribute'
|
|
case 42578: // 'attribute' 'base-uri'
|
|
case 42617: // 'element' 'base-uri'
|
|
case 42680: // 'namespace' 'base-uri'
|
|
case 42712: // 'processing-instruction' 'base-uri'
|
|
case 43602: // 'attribute' 'boundary-space'
|
|
case 43641: // 'element' 'boundary-space'
|
|
case 43704: // 'namespace' 'boundary-space'
|
|
case 43736: // 'processing-instruction' 'boundary-space'
|
|
case 44114: // 'attribute' 'break'
|
|
case 44153: // 'element' 'break'
|
|
case 44216: // 'namespace' 'break'
|
|
case 44248: // 'processing-instruction' 'break'
|
|
case 46674: // 'attribute' 'catch'
|
|
case 46713: // 'element' 'catch'
|
|
case 46776: // 'namespace' 'catch'
|
|
case 46808: // 'processing-instruction' 'catch'
|
|
case 47698: // 'attribute' 'child'
|
|
case 47737: // 'element' 'child'
|
|
case 47800: // 'namespace' 'child'
|
|
case 47832: // 'processing-instruction' 'child'
|
|
case 49234: // 'attribute' 'comment'
|
|
case 49273: // 'element' 'comment'
|
|
case 49336: // 'namespace' 'comment'
|
|
case 49368: // 'processing-instruction' 'comment'
|
|
case 49746: // 'attribute' 'constraint'
|
|
case 49785: // 'element' 'constraint'
|
|
case 49848: // 'namespace' 'constraint'
|
|
case 49880: // 'processing-instruction' 'constraint'
|
|
case 50258: // 'attribute' 'construction'
|
|
case 50297: // 'element' 'construction'
|
|
case 50360: // 'namespace' 'construction'
|
|
case 50392: // 'processing-instruction' 'construction'
|
|
case 51794: // 'attribute' 'context'
|
|
case 51833: // 'element' 'context'
|
|
case 51896: // 'namespace' 'context'
|
|
case 51928: // 'processing-instruction' 'context'
|
|
case 52306: // 'attribute' 'continue'
|
|
case 52345: // 'element' 'continue'
|
|
case 52408: // 'namespace' 'continue'
|
|
case 52440: // 'processing-instruction' 'continue'
|
|
case 52818: // 'attribute' 'copy'
|
|
case 52857: // 'element' 'copy'
|
|
case 52920: // 'namespace' 'copy'
|
|
case 52952: // 'processing-instruction' 'copy'
|
|
case 53330: // 'attribute' 'copy-namespaces'
|
|
case 53369: // 'element' 'copy-namespaces'
|
|
case 53432: // 'namespace' 'copy-namespaces'
|
|
case 53464: // 'processing-instruction' 'copy-namespaces'
|
|
case 54354: // 'attribute' 'decimal-format'
|
|
case 54393: // 'element' 'decimal-format'
|
|
case 54456: // 'namespace' 'decimal-format'
|
|
case 54488: // 'processing-instruction' 'decimal-format'
|
|
case 55378: // 'attribute' 'declare'
|
|
case 55417: // 'element' 'declare'
|
|
case 55480: // 'namespace' 'declare'
|
|
case 55512: // 'processing-instruction' 'declare'
|
|
case 56402: // 'attribute' 'delete'
|
|
case 56441: // 'element' 'delete'
|
|
case 56504: // 'namespace' 'delete'
|
|
case 56536: // 'processing-instruction' 'delete'
|
|
case 56914: // 'attribute' 'descendant'
|
|
case 56953: // 'element' 'descendant'
|
|
case 57016: // 'namespace' 'descendant'
|
|
case 57048: // 'processing-instruction' 'descendant'
|
|
case 57426: // 'attribute' 'descendant-or-self'
|
|
case 57465: // 'element' 'descendant-or-self'
|
|
case 57528: // 'namespace' 'descendant-or-self'
|
|
case 57560: // 'processing-instruction' 'descendant-or-self'
|
|
case 61010: // 'attribute' 'document'
|
|
case 61049: // 'element' 'document'
|
|
case 61112: // 'namespace' 'document'
|
|
case 61144: // 'processing-instruction' 'document'
|
|
case 61522: // 'attribute' 'document-node'
|
|
case 61561: // 'element' 'document-node'
|
|
case 61624: // 'namespace' 'document-node'
|
|
case 61656: // 'processing-instruction' 'document-node'
|
|
case 62034: // 'attribute' 'element'
|
|
case 62073: // 'element' 'element'
|
|
case 62136: // 'namespace' 'element'
|
|
case 62168: // 'processing-instruction' 'element'
|
|
case 63570: // 'attribute' 'empty-sequence'
|
|
case 63609: // 'element' 'empty-sequence'
|
|
case 63672: // 'namespace' 'empty-sequence'
|
|
case 63704: // 'processing-instruction' 'empty-sequence'
|
|
case 64082: // 'attribute' 'encoding'
|
|
case 64121: // 'element' 'encoding'
|
|
case 64184: // 'namespace' 'encoding'
|
|
case 64216: // 'processing-instruction' 'encoding'
|
|
case 66130: // 'attribute' 'every'
|
|
case 66169: // 'element' 'every'
|
|
case 66232: // 'namespace' 'every'
|
|
case 66264: // 'processing-instruction' 'every'
|
|
case 67666: // 'attribute' 'exit'
|
|
case 67705: // 'element' 'exit'
|
|
case 67768: // 'namespace' 'exit'
|
|
case 67800: // 'processing-instruction' 'exit'
|
|
case 68178: // 'attribute' 'external'
|
|
case 68217: // 'element' 'external'
|
|
case 68280: // 'namespace' 'external'
|
|
case 68312: // 'processing-instruction' 'external'
|
|
case 68690: // 'attribute' 'first'
|
|
case 68729: // 'element' 'first'
|
|
case 68792: // 'namespace' 'first'
|
|
case 68824: // 'processing-instruction' 'first'
|
|
case 69202: // 'attribute' 'following'
|
|
case 69241: // 'element' 'following'
|
|
case 69304: // 'namespace' 'following'
|
|
case 69336: // 'processing-instruction' 'following'
|
|
case 69714: // 'attribute' 'following-sibling'
|
|
case 69753: // 'element' 'following-sibling'
|
|
case 69816: // 'namespace' 'following-sibling'
|
|
case 69848: // 'processing-instruction' 'following-sibling'
|
|
case 72274: // 'attribute' 'ft-option'
|
|
case 72313: // 'element' 'ft-option'
|
|
case 72376: // 'namespace' 'ft-option'
|
|
case 72408: // 'processing-instruction' 'ft-option'
|
|
case 74322: // 'attribute' 'function'
|
|
case 74361: // 'element' 'function'
|
|
case 74424: // 'namespace' 'function'
|
|
case 74456: // 'processing-instruction' 'function'
|
|
case 77906: // 'attribute' 'if'
|
|
case 77945: // 'element' 'if'
|
|
case 78008: // 'namespace' 'if'
|
|
case 78040: // 'processing-instruction' 'if'
|
|
case 78418: // 'attribute' 'import'
|
|
case 78457: // 'element' 'import'
|
|
case 78520: // 'namespace' 'import'
|
|
case 78552: // 'processing-instruction' 'import'
|
|
case 78930: // 'attribute' 'in'
|
|
case 78969: // 'element' 'in'
|
|
case 79032: // 'namespace' 'in'
|
|
case 79064: // 'processing-instruction' 'in'
|
|
case 79442: // 'attribute' 'index'
|
|
case 79481: // 'element' 'index'
|
|
case 79544: // 'namespace' 'index'
|
|
case 79576: // 'processing-instruction' 'index'
|
|
case 81490: // 'attribute' 'insert'
|
|
case 81529: // 'element' 'insert'
|
|
case 81592: // 'namespace' 'insert'
|
|
case 81624: // 'processing-instruction' 'insert'
|
|
case 82514: // 'attribute' 'integrity'
|
|
case 82553: // 'element' 'integrity'
|
|
case 82616: // 'namespace' 'integrity'
|
|
case 82648: // 'processing-instruction' 'integrity'
|
|
case 84562: // 'attribute' 'item'
|
|
case 84601: // 'element' 'item'
|
|
case 84664: // 'namespace' 'item'
|
|
case 84696: // 'processing-instruction' 'item'
|
|
case 85586: // 'attribute' 'json-item'
|
|
case 85625: // 'element' 'json-item'
|
|
case 87122: // 'attribute' 'last'
|
|
case 87161: // 'element' 'last'
|
|
case 87224: // 'namespace' 'last'
|
|
case 87256: // 'processing-instruction' 'last'
|
|
case 87634: // 'attribute' 'lax'
|
|
case 87673: // 'element' 'lax'
|
|
case 87736: // 'namespace' 'lax'
|
|
case 87768: // 'processing-instruction' 'lax'
|
|
case 90194: // 'attribute' 'loop'
|
|
case 90233: // 'element' 'loop'
|
|
case 90296: // 'namespace' 'loop'
|
|
case 90328: // 'processing-instruction' 'loop'
|
|
case 93266: // 'attribute' 'module'
|
|
case 93305: // 'element' 'module'
|
|
case 93368: // 'namespace' 'module'
|
|
case 93400: // 'processing-instruction' 'module'
|
|
case 94290: // 'attribute' 'namespace'
|
|
case 94329: // 'element' 'namespace'
|
|
case 94392: // 'namespace' 'namespace'
|
|
case 94424: // 'processing-instruction' 'namespace'
|
|
case 94802: // 'attribute' 'namespace-node'
|
|
case 94841: // 'element' 'namespace-node'
|
|
case 94904: // 'namespace' 'namespace-node'
|
|
case 94936: // 'processing-instruction' 'namespace-node'
|
|
case 97874: // 'attribute' 'node'
|
|
case 97913: // 'element' 'node'
|
|
case 97976: // 'namespace' 'node'
|
|
case 98008: // 'processing-instruction' 'node'
|
|
case 98386: // 'attribute' 'nodes'
|
|
case 98425: // 'element' 'nodes'
|
|
case 98488: // 'namespace' 'nodes'
|
|
case 98520: // 'processing-instruction' 'nodes'
|
|
case 99410: // 'attribute' 'object'
|
|
case 99449: // 'element' 'object'
|
|
case 101970: // 'attribute' 'option'
|
|
case 102009: // 'element' 'option'
|
|
case 102072: // 'namespace' 'option'
|
|
case 102104: // 'processing-instruction' 'option'
|
|
case 103506: // 'attribute' 'ordered'
|
|
case 103545: // 'element' 'ordered'
|
|
case 103608: // 'namespace' 'ordered'
|
|
case 103640: // 'processing-instruction' 'ordered'
|
|
case 104018: // 'attribute' 'ordering'
|
|
case 104057: // 'element' 'ordering'
|
|
case 104120: // 'namespace' 'ordering'
|
|
case 104152: // 'processing-instruction' 'ordering'
|
|
case 105554: // 'attribute' 'parent'
|
|
case 105593: // 'element' 'parent'
|
|
case 105656: // 'namespace' 'parent'
|
|
case 105688: // 'processing-instruction' 'parent'
|
|
case 108626: // 'attribute' 'preceding'
|
|
case 108665: // 'element' 'preceding'
|
|
case 108728: // 'namespace' 'preceding'
|
|
case 108760: // 'processing-instruction' 'preceding'
|
|
case 109138: // 'attribute' 'preceding-sibling'
|
|
case 109177: // 'element' 'preceding-sibling'
|
|
case 109240: // 'namespace' 'preceding-sibling'
|
|
case 109272: // 'processing-instruction' 'preceding-sibling'
|
|
case 110674: // 'attribute' 'processing-instruction'
|
|
case 110713: // 'element' 'processing-instruction'
|
|
case 110776: // 'namespace' 'processing-instruction'
|
|
case 110808: // 'processing-instruction' 'processing-instruction'
|
|
case 111698: // 'attribute' 'rename'
|
|
case 111737: // 'element' 'rename'
|
|
case 111800: // 'namespace' 'rename'
|
|
case 111832: // 'processing-instruction' 'rename'
|
|
case 112210: // 'attribute' 'replace'
|
|
case 112249: // 'element' 'replace'
|
|
case 112312: // 'namespace' 'replace'
|
|
case 112344: // 'processing-instruction' 'replace'
|
|
case 113234: // 'attribute' 'returning'
|
|
case 113273: // 'element' 'returning'
|
|
case 113336: // 'namespace' 'returning'
|
|
case 113368: // 'processing-instruction' 'returning'
|
|
case 113746: // 'attribute' 'revalidation'
|
|
case 113785: // 'element' 'revalidation'
|
|
case 113848: // 'namespace' 'revalidation'
|
|
case 113880: // 'processing-instruction' 'revalidation'
|
|
case 115282: // 'attribute' 'schema'
|
|
case 115321: // 'element' 'schema'
|
|
case 115384: // 'namespace' 'schema'
|
|
case 115416: // 'processing-instruction' 'schema'
|
|
case 115794: // 'attribute' 'schema-attribute'
|
|
case 115833: // 'element' 'schema-attribute'
|
|
case 115896: // 'namespace' 'schema-attribute'
|
|
case 115928: // 'processing-instruction' 'schema-attribute'
|
|
case 116306: // 'attribute' 'schema-element'
|
|
case 116345: // 'element' 'schema-element'
|
|
case 116408: // 'namespace' 'schema-element'
|
|
case 116440: // 'processing-instruction' 'schema-element'
|
|
case 116818: // 'attribute' 'score'
|
|
case 116857: // 'element' 'score'
|
|
case 116920: // 'namespace' 'score'
|
|
case 116952: // 'processing-instruction' 'score'
|
|
case 117330: // 'attribute' 'self'
|
|
case 117369: // 'element' 'self'
|
|
case 117432: // 'namespace' 'self'
|
|
case 117464: // 'processing-instruction' 'self'
|
|
case 119890: // 'attribute' 'sliding'
|
|
case 119929: // 'element' 'sliding'
|
|
case 119992: // 'namespace' 'sliding'
|
|
case 120024: // 'processing-instruction' 'sliding'
|
|
case 120402: // 'attribute' 'some'
|
|
case 120441: // 'element' 'some'
|
|
case 120504: // 'namespace' 'some'
|
|
case 120536: // 'processing-instruction' 'some'
|
|
case 122962: // 'attribute' 'strict'
|
|
case 123001: // 'element' 'strict'
|
|
case 123064: // 'namespace' 'strict'
|
|
case 123096: // 'processing-instruction' 'strict'
|
|
case 124498: // 'attribute' 'switch'
|
|
case 124537: // 'element' 'switch'
|
|
case 124600: // 'namespace' 'switch'
|
|
case 124632: // 'processing-instruction' 'switch'
|
|
case 125010: // 'attribute' 'text'
|
|
case 125049: // 'element' 'text'
|
|
case 125112: // 'namespace' 'text'
|
|
case 125144: // 'processing-instruction' 'text'
|
|
case 128082: // 'attribute' 'try'
|
|
case 128121: // 'element' 'try'
|
|
case 128184: // 'namespace' 'try'
|
|
case 128216: // 'processing-instruction' 'try'
|
|
case 128594: // 'attribute' 'tumbling'
|
|
case 128633: // 'element' 'tumbling'
|
|
case 128696: // 'namespace' 'tumbling'
|
|
case 128728: // 'processing-instruction' 'tumbling'
|
|
case 129106: // 'attribute' 'type'
|
|
case 129145: // 'element' 'type'
|
|
case 129208: // 'namespace' 'type'
|
|
case 129240: // 'processing-instruction' 'type'
|
|
case 129618: // 'attribute' 'typeswitch'
|
|
case 129657: // 'element' 'typeswitch'
|
|
case 129720: // 'namespace' 'typeswitch'
|
|
case 129752: // 'processing-instruction' 'typeswitch'
|
|
case 131154: // 'attribute' 'unordered'
|
|
case 131193: // 'element' 'unordered'
|
|
case 131256: // 'namespace' 'unordered'
|
|
case 131288: // 'processing-instruction' 'unordered'
|
|
case 131666: // 'attribute' 'updating'
|
|
case 131705: // 'element' 'updating'
|
|
case 131768: // 'namespace' 'updating'
|
|
case 131800: // 'processing-instruction' 'updating'
|
|
case 133202: // 'attribute' 'validate'
|
|
case 133241: // 'element' 'validate'
|
|
case 133304: // 'namespace' 'validate'
|
|
case 133336: // 'processing-instruction' 'validate'
|
|
case 133714: // 'attribute' 'value'
|
|
case 133753: // 'element' 'value'
|
|
case 133816: // 'namespace' 'value'
|
|
case 133848: // 'processing-instruction' 'value'
|
|
case 134226: // 'attribute' 'variable'
|
|
case 134265: // 'element' 'variable'
|
|
case 134328: // 'namespace' 'variable'
|
|
case 134360: // 'processing-instruction' 'variable'
|
|
case 134738: // 'attribute' 'version'
|
|
case 134777: // 'element' 'version'
|
|
case 134840: // 'namespace' 'version'
|
|
case 134872: // 'processing-instruction' 'version'
|
|
case 136786: // 'attribute' 'while'
|
|
case 136825: // 'element' 'while'
|
|
case 136888: // 'namespace' 'while'
|
|
case 136920: // 'processing-instruction' 'while'
|
|
case 140370: // 'attribute' 'xquery'
|
|
case 140409: // 'element' 'xquery'
|
|
case 140472: // 'namespace' 'xquery'
|
|
case 140504: // 'processing-instruction' 'xquery'
|
|
case 141394: // 'attribute' '{'
|
|
case 141408: // 'comment' '{'
|
|
case 141431: // 'document' '{'
|
|
case 141433: // 'element' '{'
|
|
case 141496: // 'namespace' '{'
|
|
case 141514: // 'ordered' '{'
|
|
case 141528: // 'processing-instruction' '{'
|
|
case 141556: // 'text' '{'
|
|
case 141568: // 'unordered' '{'
|
|
parse_PostfixExpr();
|
|
break;
|
|
default:
|
|
parse_AxisStep();
|
|
}
|
|
eventHandler.endNonterminal("StepExpr", e0);
|
|
}
|
|
|
|
function try_StepExpr()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 82: // 'attribute'
|
|
lookahead2W(282); // EQName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' |
|
|
// ',' | '-' | '/' | '//' | ':' | '::' | ';' | '<' | '<<' | '<=' | '=' | '>' |
|
|
// '>=' | '>>' | '[' | ']' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'contains' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'paragraphs' | 'parent' |
|
|
// 'preceding' | 'preceding-sibling' | 'processing-instruction' | 'rename' |
|
|
// 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sentences' |
|
|
// 'sliding' | 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' |
|
|
// 'times' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' |
|
|
// 'unordered' | 'updating' | 'validate' | 'value' | 'variable' | 'version' |
|
|
// 'where' | 'while' | 'with' | 'words' | 'xquery' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 121: // 'element'
|
|
lookahead2W(280); // EQName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' |
|
|
// ',' | '-' | '/' | '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' |
|
|
// '>>' | '[' | ']' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'by' | 'case' | 'cast' | 'castable' |
|
|
// 'catch' | 'child' | 'collation' | 'comment' | 'constraint' | 'construction' |
|
|
// 'contains' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'paragraphs' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sentences' |
|
|
// 'sliding' | 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' |
|
|
// 'times' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' |
|
|
// 'unordered' | 'updating' | 'validate' | 'value' | 'variable' | 'version' |
|
|
// 'where' | 'while' | 'with' | 'words' | 'xquery' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 184: // 'namespace'
|
|
case 216: // 'processing-instruction'
|
|
lookahead2W(279); // NCName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' |
|
|
// ',' | '-' | '/' | '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' |
|
|
// '>>' | '[' | ']' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' |
|
|
// 'boundary-space' | 'break' | 'by' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'contains' |
|
|
// 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'paragraphs' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sentences' | 'sliding' | 'some' | 'stable' | 'start' |
|
|
// 'strict' | 'switch' | 'text' | 'times' | 'to' | 'treat' | 'try' | 'tumbling' |
|
|
// 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' | 'validate' |
|
|
// 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' | 'words' |
|
|
// 'xquery' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 96: // 'comment'
|
|
case 119: // 'document'
|
|
case 202: // 'ordered'
|
|
case 244: // 'text'
|
|
case 256: // 'unordered'
|
|
lookahead2W(245); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 124: // 'empty-sequence'
|
|
case 152: // 'if'
|
|
case 165: // 'item'
|
|
case 243: // 'switch'
|
|
case 253: // 'typeswitch'
|
|
lookahead2W(238); // S^WS | EOF | '!' | '!=' | '#' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 73: // 'ancestor'
|
|
case 74: // 'ancestor-or-self'
|
|
case 93: // 'child'
|
|
case 111: // 'descendant'
|
|
case 112: // 'descendant-or-self'
|
|
case 135: // 'following'
|
|
case 136: // 'following-sibling'
|
|
case 206: // 'parent'
|
|
case 212: // 'preceding'
|
|
case 213: // 'preceding-sibling'
|
|
case 229: // 'self'
|
|
lookahead2W(244); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' |
|
|
// 'cast' | 'castable' | 'collation' | 'contains' | 'count' | 'default' |
|
|
// 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' |
|
|
// 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' |
|
|
// 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' |
|
|
// 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' | 'start' |
|
|
// 'times' | 'to' | 'treat' | 'union' | 'where' | 'with' | 'words' | '|' | '||' |
|
|
// '|}' | '}'
|
|
break;
|
|
case 6: // EQName^Token
|
|
case 70: // 'after'
|
|
case 72: // 'allowing'
|
|
case 75: // 'and'
|
|
case 78: // 'array'
|
|
case 79: // 'as'
|
|
case 80: // 'ascending'
|
|
case 81: // 'at'
|
|
case 83: // 'base-uri'
|
|
case 84: // 'before'
|
|
case 85: // 'boundary-space'
|
|
case 86: // 'break'
|
|
case 88: // 'case'
|
|
case 89: // 'cast'
|
|
case 90: // 'castable'
|
|
case 91: // 'catch'
|
|
case 94: // 'collation'
|
|
case 97: // 'constraint'
|
|
case 98: // 'construction'
|
|
case 101: // 'context'
|
|
case 102: // 'continue'
|
|
case 103: // 'copy'
|
|
case 104: // 'copy-namespaces'
|
|
case 105: // 'count'
|
|
case 106: // 'decimal-format'
|
|
case 108: // 'declare'
|
|
case 109: // 'default'
|
|
case 110: // 'delete'
|
|
case 113: // 'descending'
|
|
case 118: // 'div'
|
|
case 120: // 'document-node'
|
|
case 122: // 'else'
|
|
case 123: // 'empty'
|
|
case 125: // 'encoding'
|
|
case 126: // 'end'
|
|
case 128: // 'eq'
|
|
case 129: // 'every'
|
|
case 131: // 'except'
|
|
case 132: // 'exit'
|
|
case 133: // 'external'
|
|
case 134: // 'first'
|
|
case 137: // 'for'
|
|
case 141: // 'ft-option'
|
|
case 145: // 'function'
|
|
case 146: // 'ge'
|
|
case 148: // 'group'
|
|
case 150: // 'gt'
|
|
case 151: // 'idiv'
|
|
case 153: // 'import'
|
|
case 154: // 'in'
|
|
case 155: // 'index'
|
|
case 159: // 'insert'
|
|
case 160: // 'instance'
|
|
case 161: // 'integrity'
|
|
case 162: // 'intersect'
|
|
case 163: // 'into'
|
|
case 164: // 'is'
|
|
case 167: // 'json-item'
|
|
case 170: // 'last'
|
|
case 171: // 'lax'
|
|
case 172: // 'le'
|
|
case 174: // 'let'
|
|
case 176: // 'loop'
|
|
case 178: // 'lt'
|
|
case 180: // 'mod'
|
|
case 181: // 'modify'
|
|
case 182: // 'module'
|
|
case 185: // 'namespace-node'
|
|
case 186: // 'ne'
|
|
case 191: // 'node'
|
|
case 192: // 'nodes'
|
|
case 194: // 'object'
|
|
case 198: // 'only'
|
|
case 199: // 'option'
|
|
case 200: // 'or'
|
|
case 201: // 'order'
|
|
case 203: // 'ordering'
|
|
case 218: // 'rename'
|
|
case 219: // 'replace'
|
|
case 220: // 'return'
|
|
case 221: // 'returning'
|
|
case 222: // 'revalidation'
|
|
case 224: // 'satisfies'
|
|
case 225: // 'schema'
|
|
case 226: // 'schema-attribute'
|
|
case 227: // 'schema-element'
|
|
case 228: // 'score'
|
|
case 234: // 'sliding'
|
|
case 235: // 'some'
|
|
case 236: // 'stable'
|
|
case 237: // 'start'
|
|
case 240: // 'strict'
|
|
case 248: // 'to'
|
|
case 249: // 'treat'
|
|
case 250: // 'try'
|
|
case 251: // 'tumbling'
|
|
case 252: // 'type'
|
|
case 254: // 'union'
|
|
case 257: // 'updating'
|
|
case 260: // 'validate'
|
|
case 261: // 'value'
|
|
case 262: // 'variable'
|
|
case 263: // 'version'
|
|
case 266: // 'where'
|
|
case 267: // 'while'
|
|
case 270: // 'with'
|
|
case 274: // 'xquery'
|
|
lookahead2W(242); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 17486 // 'array' '('
|
|
|| lk == 17575 // 'json-item' '('
|
|
|| lk == 17602 // 'object' '('
|
|
|| lk == 35922 // 'attribute' 'after'
|
|
|| lk == 35961 // 'element' 'after'
|
|
|| lk == 36024 // 'namespace' 'after'
|
|
|| lk == 36056 // 'processing-instruction' 'after'
|
|
|| lk == 38482 // 'attribute' 'and'
|
|
|| lk == 38521 // 'element' 'and'
|
|
|| lk == 38584 // 'namespace' 'and'
|
|
|| lk == 38616 // 'processing-instruction' 'and'
|
|
|| lk == 40530 // 'attribute' 'as'
|
|
|| lk == 40569 // 'element' 'as'
|
|
|| lk == 40632 // 'namespace' 'as'
|
|
|| lk == 40664 // 'processing-instruction' 'as'
|
|
|| lk == 41042 // 'attribute' 'ascending'
|
|
|| lk == 41081 // 'element' 'ascending'
|
|
|| lk == 41144 // 'namespace' 'ascending'
|
|
|| lk == 41176 // 'processing-instruction' 'ascending'
|
|
|| lk == 41554 // 'attribute' 'at'
|
|
|| lk == 41593 // 'element' 'at'
|
|
|| lk == 41656 // 'namespace' 'at'
|
|
|| lk == 41688 // 'processing-instruction' 'at'
|
|
|| lk == 43090 // 'attribute' 'before'
|
|
|| lk == 43129 // 'element' 'before'
|
|
|| lk == 43192 // 'namespace' 'before'
|
|
|| lk == 43224 // 'processing-instruction' 'before'
|
|
|| lk == 45138 // 'attribute' 'case'
|
|
|| lk == 45177 // 'element' 'case'
|
|
|| lk == 45240 // 'namespace' 'case'
|
|
|| lk == 45272 // 'processing-instruction' 'case'
|
|
|| lk == 45650 // 'attribute' 'cast'
|
|
|| lk == 45689 // 'element' 'cast'
|
|
|| lk == 45752 // 'namespace' 'cast'
|
|
|| lk == 45784 // 'processing-instruction' 'cast'
|
|
|| lk == 46162 // 'attribute' 'castable'
|
|
|| lk == 46201 // 'element' 'castable'
|
|
|| lk == 46264 // 'namespace' 'castable'
|
|
|| lk == 46296 // 'processing-instruction' 'castable'
|
|
|| lk == 48210 // 'attribute' 'collation'
|
|
|| lk == 48249 // 'element' 'collation'
|
|
|| lk == 48312 // 'namespace' 'collation'
|
|
|| lk == 48344 // 'processing-instruction' 'collation'
|
|
|| lk == 53842 // 'attribute' 'count'
|
|
|| lk == 53881 // 'element' 'count'
|
|
|| lk == 53944 // 'namespace' 'count'
|
|
|| lk == 53976 // 'processing-instruction' 'count'
|
|
|| lk == 55890 // 'attribute' 'default'
|
|
|| lk == 55929 // 'element' 'default'
|
|
|| lk == 55992 // 'namespace' 'default'
|
|
|| lk == 56024 // 'processing-instruction' 'default'
|
|
|| lk == 57938 // 'attribute' 'descending'
|
|
|| lk == 57977 // 'element' 'descending'
|
|
|| lk == 58040 // 'namespace' 'descending'
|
|
|| lk == 58072 // 'processing-instruction' 'descending'
|
|
|| lk == 60498 // 'attribute' 'div'
|
|
|| lk == 60537 // 'element' 'div'
|
|
|| lk == 60600 // 'namespace' 'div'
|
|
|| lk == 60632 // 'processing-instruction' 'div'
|
|
|| lk == 62546 // 'attribute' 'else'
|
|
|| lk == 62585 // 'element' 'else'
|
|
|| lk == 62648 // 'namespace' 'else'
|
|
|| lk == 62680 // 'processing-instruction' 'else'
|
|
|| lk == 63058 // 'attribute' 'empty'
|
|
|| lk == 63097 // 'element' 'empty'
|
|
|| lk == 63160 // 'namespace' 'empty'
|
|
|| lk == 63192 // 'processing-instruction' 'empty'
|
|
|| lk == 64594 // 'attribute' 'end'
|
|
|| lk == 64633 // 'element' 'end'
|
|
|| lk == 64696 // 'namespace' 'end'
|
|
|| lk == 64728 // 'processing-instruction' 'end'
|
|
|| lk == 65618 // 'attribute' 'eq'
|
|
|| lk == 65657 // 'element' 'eq'
|
|
|| lk == 65720 // 'namespace' 'eq'
|
|
|| lk == 65752 // 'processing-instruction' 'eq'
|
|
|| lk == 67154 // 'attribute' 'except'
|
|
|| lk == 67193 // 'element' 'except'
|
|
|| lk == 67256 // 'namespace' 'except'
|
|
|| lk == 67288 // 'processing-instruction' 'except'
|
|
|| lk == 70226 // 'attribute' 'for'
|
|
|| lk == 70265 // 'element' 'for'
|
|
|| lk == 70328 // 'namespace' 'for'
|
|
|| lk == 70360 // 'processing-instruction' 'for'
|
|
|| lk == 74834 // 'attribute' 'ge'
|
|
|| lk == 74873 // 'element' 'ge'
|
|
|| lk == 74936 // 'namespace' 'ge'
|
|
|| lk == 74968 // 'processing-instruction' 'ge'
|
|
|| lk == 75858 // 'attribute' 'group'
|
|
|| lk == 75897 // 'element' 'group'
|
|
|| lk == 75960 // 'namespace' 'group'
|
|
|| lk == 75992 // 'processing-instruction' 'group'
|
|
|| lk == 76882 // 'attribute' 'gt'
|
|
|| lk == 76921 // 'element' 'gt'
|
|
|| lk == 76984 // 'namespace' 'gt'
|
|
|| lk == 77016 // 'processing-instruction' 'gt'
|
|
|| lk == 77394 // 'attribute' 'idiv'
|
|
|| lk == 77433 // 'element' 'idiv'
|
|
|| lk == 77496 // 'namespace' 'idiv'
|
|
|| lk == 77528 // 'processing-instruction' 'idiv'
|
|
|| lk == 82002 // 'attribute' 'instance'
|
|
|| lk == 82041 // 'element' 'instance'
|
|
|| lk == 82104 // 'namespace' 'instance'
|
|
|| lk == 82136 // 'processing-instruction' 'instance'
|
|
|| lk == 83026 // 'attribute' 'intersect'
|
|
|| lk == 83065 // 'element' 'intersect'
|
|
|| lk == 83128 // 'namespace' 'intersect'
|
|
|| lk == 83160 // 'processing-instruction' 'intersect'
|
|
|| lk == 83538 // 'attribute' 'into'
|
|
|| lk == 83577 // 'element' 'into'
|
|
|| lk == 83640 // 'namespace' 'into'
|
|
|| lk == 83672 // 'processing-instruction' 'into'
|
|
|| lk == 84050 // 'attribute' 'is'
|
|
|| lk == 84089 // 'element' 'is'
|
|
|| lk == 84152 // 'namespace' 'is'
|
|
|| lk == 84184 // 'processing-instruction' 'is'
|
|
|| lk == 88146 // 'attribute' 'le'
|
|
|| lk == 88185 // 'element' 'le'
|
|
|| lk == 88248 // 'namespace' 'le'
|
|
|| lk == 88280 // 'processing-instruction' 'le'
|
|
|| lk == 89170 // 'attribute' 'let'
|
|
|| lk == 89209 // 'element' 'let'
|
|
|| lk == 89272 // 'namespace' 'let'
|
|
|| lk == 89304 // 'processing-instruction' 'let'
|
|
|| lk == 91218 // 'attribute' 'lt'
|
|
|| lk == 91257 // 'element' 'lt'
|
|
|| lk == 91320 // 'namespace' 'lt'
|
|
|| lk == 91352 // 'processing-instruction' 'lt'
|
|
|| lk == 92242 // 'attribute' 'mod'
|
|
|| lk == 92281 // 'element' 'mod'
|
|
|| lk == 92344 // 'namespace' 'mod'
|
|
|| lk == 92376 // 'processing-instruction' 'mod'
|
|
|| lk == 92754 // 'attribute' 'modify'
|
|
|| lk == 92793 // 'element' 'modify'
|
|
|| lk == 92856 // 'namespace' 'modify'
|
|
|| lk == 92888 // 'processing-instruction' 'modify'
|
|
|| lk == 95314 // 'attribute' 'ne'
|
|
|| lk == 95353 // 'element' 'ne'
|
|
|| lk == 95416 // 'namespace' 'ne'
|
|
|| lk == 95448 // 'processing-instruction' 'ne'
|
|
|| lk == 101458 // 'attribute' 'only'
|
|
|| lk == 101497 // 'element' 'only'
|
|
|| lk == 101560 // 'namespace' 'only'
|
|
|| lk == 101592 // 'processing-instruction' 'only'
|
|
|| lk == 102482 // 'attribute' 'or'
|
|
|| lk == 102521 // 'element' 'or'
|
|
|| lk == 102584 // 'namespace' 'or'
|
|
|| lk == 102616 // 'processing-instruction' 'or'
|
|
|| lk == 102994 // 'attribute' 'order'
|
|
|| lk == 103033 // 'element' 'order'
|
|
|| lk == 103096 // 'namespace' 'order'
|
|
|| lk == 103128 // 'processing-instruction' 'order'
|
|
|| lk == 112722 // 'attribute' 'return'
|
|
|| lk == 112761 // 'element' 'return'
|
|
|| lk == 112824 // 'namespace' 'return'
|
|
|| lk == 112856 // 'processing-instruction' 'return'
|
|
|| lk == 114770 // 'attribute' 'satisfies'
|
|
|| lk == 114809 // 'element' 'satisfies'
|
|
|| lk == 114872 // 'namespace' 'satisfies'
|
|
|| lk == 114904 // 'processing-instruction' 'satisfies'
|
|
|| lk == 120914 // 'attribute' 'stable'
|
|
|| lk == 120953 // 'element' 'stable'
|
|
|| lk == 121016 // 'namespace' 'stable'
|
|
|| lk == 121048 // 'processing-instruction' 'stable'
|
|
|| lk == 121426 // 'attribute' 'start'
|
|
|| lk == 121465 // 'element' 'start'
|
|
|| lk == 121528 // 'namespace' 'start'
|
|
|| lk == 121560 // 'processing-instruction' 'start'
|
|
|| lk == 127058 // 'attribute' 'to'
|
|
|| lk == 127097 // 'element' 'to'
|
|
|| lk == 127160 // 'namespace' 'to'
|
|
|| lk == 127192 // 'processing-instruction' 'to'
|
|
|| lk == 127570 // 'attribute' 'treat'
|
|
|| lk == 127609 // 'element' 'treat'
|
|
|| lk == 127672 // 'namespace' 'treat'
|
|
|| lk == 127704 // 'processing-instruction' 'treat'
|
|
|| lk == 130130 // 'attribute' 'union'
|
|
|| lk == 130169 // 'element' 'union'
|
|
|| lk == 130232 // 'namespace' 'union'
|
|
|| lk == 130264 // 'processing-instruction' 'union'
|
|
|| lk == 136274 // 'attribute' 'where'
|
|
|| lk == 136313 // 'element' 'where'
|
|
|| lk == 136376 // 'namespace' 'where'
|
|
|| lk == 136408 // 'processing-instruction' 'where'
|
|
|| lk == 138322 // 'attribute' 'with'
|
|
|| lk == 138361 // 'element' 'with'
|
|
|| lk == 138424 // 'namespace' 'with'
|
|
|| lk == 138456) // 'processing-instruction' 'with'
|
|
{
|
|
lk = memoized(3, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_PostfixExpr();
|
|
memoize(3, e0A, -1);
|
|
lk = -3;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(3, e0A, -2);
|
|
}
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
case 8: // IntegerLiteral
|
|
case 9: // DecimalLiteral
|
|
case 10: // DoubleLiteral
|
|
case 11: // StringLiteral
|
|
case 31: // '$'
|
|
case 32: // '%'
|
|
case 34: // '('
|
|
case 44: // '.'
|
|
case 54: // '<'
|
|
case 55: // '<!--'
|
|
case 59: // '<?'
|
|
case 68: // '['
|
|
case 276: // '{'
|
|
case 278: // '{|'
|
|
case 3154: // 'attribute' EQName^Token
|
|
case 3193: // 'element' EQName^Token
|
|
case 9912: // 'namespace' NCName^Token
|
|
case 9944: // 'processing-instruction' NCName^Token
|
|
case 14854: // EQName^Token '#'
|
|
case 14918: // 'after' '#'
|
|
case 14920: // 'allowing' '#'
|
|
case 14921: // 'ancestor' '#'
|
|
case 14922: // 'ancestor-or-self' '#'
|
|
case 14923: // 'and' '#'
|
|
case 14926: // 'array' '#'
|
|
case 14927: // 'as' '#'
|
|
case 14928: // 'ascending' '#'
|
|
case 14929: // 'at' '#'
|
|
case 14930: // 'attribute' '#'
|
|
case 14931: // 'base-uri' '#'
|
|
case 14932: // 'before' '#'
|
|
case 14933: // 'boundary-space' '#'
|
|
case 14934: // 'break' '#'
|
|
case 14936: // 'case' '#'
|
|
case 14937: // 'cast' '#'
|
|
case 14938: // 'castable' '#'
|
|
case 14939: // 'catch' '#'
|
|
case 14941: // 'child' '#'
|
|
case 14942: // 'collation' '#'
|
|
case 14944: // 'comment' '#'
|
|
case 14945: // 'constraint' '#'
|
|
case 14946: // 'construction' '#'
|
|
case 14949: // 'context' '#'
|
|
case 14950: // 'continue' '#'
|
|
case 14951: // 'copy' '#'
|
|
case 14952: // 'copy-namespaces' '#'
|
|
case 14953: // 'count' '#'
|
|
case 14954: // 'decimal-format' '#'
|
|
case 14956: // 'declare' '#'
|
|
case 14957: // 'default' '#'
|
|
case 14958: // 'delete' '#'
|
|
case 14959: // 'descendant' '#'
|
|
case 14960: // 'descendant-or-self' '#'
|
|
case 14961: // 'descending' '#'
|
|
case 14966: // 'div' '#'
|
|
case 14967: // 'document' '#'
|
|
case 14968: // 'document-node' '#'
|
|
case 14969: // 'element' '#'
|
|
case 14970: // 'else' '#'
|
|
case 14971: // 'empty' '#'
|
|
case 14972: // 'empty-sequence' '#'
|
|
case 14973: // 'encoding' '#'
|
|
case 14974: // 'end' '#'
|
|
case 14976: // 'eq' '#'
|
|
case 14977: // 'every' '#'
|
|
case 14979: // 'except' '#'
|
|
case 14980: // 'exit' '#'
|
|
case 14981: // 'external' '#'
|
|
case 14982: // 'first' '#'
|
|
case 14983: // 'following' '#'
|
|
case 14984: // 'following-sibling' '#'
|
|
case 14985: // 'for' '#'
|
|
case 14989: // 'ft-option' '#'
|
|
case 14993: // 'function' '#'
|
|
case 14994: // 'ge' '#'
|
|
case 14996: // 'group' '#'
|
|
case 14998: // 'gt' '#'
|
|
case 14999: // 'idiv' '#'
|
|
case 15000: // 'if' '#'
|
|
case 15001: // 'import' '#'
|
|
case 15002: // 'in' '#'
|
|
case 15003: // 'index' '#'
|
|
case 15007: // 'insert' '#'
|
|
case 15008: // 'instance' '#'
|
|
case 15009: // 'integrity' '#'
|
|
case 15010: // 'intersect' '#'
|
|
case 15011: // 'into' '#'
|
|
case 15012: // 'is' '#'
|
|
case 15013: // 'item' '#'
|
|
case 15015: // 'json-item' '#'
|
|
case 15018: // 'last' '#'
|
|
case 15019: // 'lax' '#'
|
|
case 15020: // 'le' '#'
|
|
case 15022: // 'let' '#'
|
|
case 15024: // 'loop' '#'
|
|
case 15026: // 'lt' '#'
|
|
case 15028: // 'mod' '#'
|
|
case 15029: // 'modify' '#'
|
|
case 15030: // 'module' '#'
|
|
case 15032: // 'namespace' '#'
|
|
case 15033: // 'namespace-node' '#'
|
|
case 15034: // 'ne' '#'
|
|
case 15039: // 'node' '#'
|
|
case 15040: // 'nodes' '#'
|
|
case 15042: // 'object' '#'
|
|
case 15046: // 'only' '#'
|
|
case 15047: // 'option' '#'
|
|
case 15048: // 'or' '#'
|
|
case 15049: // 'order' '#'
|
|
case 15050: // 'ordered' '#'
|
|
case 15051: // 'ordering' '#'
|
|
case 15054: // 'parent' '#'
|
|
case 15060: // 'preceding' '#'
|
|
case 15061: // 'preceding-sibling' '#'
|
|
case 15064: // 'processing-instruction' '#'
|
|
case 15066: // 'rename' '#'
|
|
case 15067: // 'replace' '#'
|
|
case 15068: // 'return' '#'
|
|
case 15069: // 'returning' '#'
|
|
case 15070: // 'revalidation' '#'
|
|
case 15072: // 'satisfies' '#'
|
|
case 15073: // 'schema' '#'
|
|
case 15074: // 'schema-attribute' '#'
|
|
case 15075: // 'schema-element' '#'
|
|
case 15076: // 'score' '#'
|
|
case 15077: // 'self' '#'
|
|
case 15082: // 'sliding' '#'
|
|
case 15083: // 'some' '#'
|
|
case 15084: // 'stable' '#'
|
|
case 15085: // 'start' '#'
|
|
case 15088: // 'strict' '#'
|
|
case 15091: // 'switch' '#'
|
|
case 15092: // 'text' '#'
|
|
case 15096: // 'to' '#'
|
|
case 15097: // 'treat' '#'
|
|
case 15098: // 'try' '#'
|
|
case 15099: // 'tumbling' '#'
|
|
case 15100: // 'type' '#'
|
|
case 15101: // 'typeswitch' '#'
|
|
case 15102: // 'union' '#'
|
|
case 15104: // 'unordered' '#'
|
|
case 15105: // 'updating' '#'
|
|
case 15108: // 'validate' '#'
|
|
case 15109: // 'value' '#'
|
|
case 15110: // 'variable' '#'
|
|
case 15111: // 'version' '#'
|
|
case 15114: // 'where' '#'
|
|
case 15115: // 'while' '#'
|
|
case 15118: // 'with' '#'
|
|
case 15122: // 'xquery' '#'
|
|
case 17414: // EQName^Token '('
|
|
case 17478: // 'after' '('
|
|
case 17480: // 'allowing' '('
|
|
case 17481: // 'ancestor' '('
|
|
case 17482: // 'ancestor-or-self' '('
|
|
case 17483: // 'and' '('
|
|
case 17487: // 'as' '('
|
|
case 17488: // 'ascending' '('
|
|
case 17489: // 'at' '('
|
|
case 17491: // 'base-uri' '('
|
|
case 17492: // 'before' '('
|
|
case 17493: // 'boundary-space' '('
|
|
case 17494: // 'break' '('
|
|
case 17496: // 'case' '('
|
|
case 17497: // 'cast' '('
|
|
case 17498: // 'castable' '('
|
|
case 17499: // 'catch' '('
|
|
case 17501: // 'child' '('
|
|
case 17502: // 'collation' '('
|
|
case 17505: // 'constraint' '('
|
|
case 17506: // 'construction' '('
|
|
case 17509: // 'context' '('
|
|
case 17510: // 'continue' '('
|
|
case 17511: // 'copy' '('
|
|
case 17512: // 'copy-namespaces' '('
|
|
case 17513: // 'count' '('
|
|
case 17514: // 'decimal-format' '('
|
|
case 17516: // 'declare' '('
|
|
case 17517: // 'default' '('
|
|
case 17518: // 'delete' '('
|
|
case 17519: // 'descendant' '('
|
|
case 17520: // 'descendant-or-self' '('
|
|
case 17521: // 'descending' '('
|
|
case 17526: // 'div' '('
|
|
case 17527: // 'document' '('
|
|
case 17530: // 'else' '('
|
|
case 17531: // 'empty' '('
|
|
case 17533: // 'encoding' '('
|
|
case 17534: // 'end' '('
|
|
case 17536: // 'eq' '('
|
|
case 17537: // 'every' '('
|
|
case 17539: // 'except' '('
|
|
case 17540: // 'exit' '('
|
|
case 17541: // 'external' '('
|
|
case 17542: // 'first' '('
|
|
case 17543: // 'following' '('
|
|
case 17544: // 'following-sibling' '('
|
|
case 17545: // 'for' '('
|
|
case 17549: // 'ft-option' '('
|
|
case 17553: // 'function' '('
|
|
case 17554: // 'ge' '('
|
|
case 17556: // 'group' '('
|
|
case 17558: // 'gt' '('
|
|
case 17559: // 'idiv' '('
|
|
case 17561: // 'import' '('
|
|
case 17562: // 'in' '('
|
|
case 17563: // 'index' '('
|
|
case 17567: // 'insert' '('
|
|
case 17568: // 'instance' '('
|
|
case 17569: // 'integrity' '('
|
|
case 17570: // 'intersect' '('
|
|
case 17571: // 'into' '('
|
|
case 17572: // 'is' '('
|
|
case 17578: // 'last' '('
|
|
case 17579: // 'lax' '('
|
|
case 17580: // 'le' '('
|
|
case 17582: // 'let' '('
|
|
case 17584: // 'loop' '('
|
|
case 17586: // 'lt' '('
|
|
case 17588: // 'mod' '('
|
|
case 17589: // 'modify' '('
|
|
case 17590: // 'module' '('
|
|
case 17592: // 'namespace' '('
|
|
case 17594: // 'ne' '('
|
|
case 17600: // 'nodes' '('
|
|
case 17606: // 'only' '('
|
|
case 17607: // 'option' '('
|
|
case 17608: // 'or' '('
|
|
case 17609: // 'order' '('
|
|
case 17610: // 'ordered' '('
|
|
case 17611: // 'ordering' '('
|
|
case 17614: // 'parent' '('
|
|
case 17620: // 'preceding' '('
|
|
case 17621: // 'preceding-sibling' '('
|
|
case 17626: // 'rename' '('
|
|
case 17627: // 'replace' '('
|
|
case 17628: // 'return' '('
|
|
case 17629: // 'returning' '('
|
|
case 17630: // 'revalidation' '('
|
|
case 17632: // 'satisfies' '('
|
|
case 17633: // 'schema' '('
|
|
case 17636: // 'score' '('
|
|
case 17637: // 'self' '('
|
|
case 17642: // 'sliding' '('
|
|
case 17643: // 'some' '('
|
|
case 17644: // 'stable' '('
|
|
case 17645: // 'start' '('
|
|
case 17648: // 'strict' '('
|
|
case 17656: // 'to' '('
|
|
case 17657: // 'treat' '('
|
|
case 17658: // 'try' '('
|
|
case 17659: // 'tumbling' '('
|
|
case 17660: // 'type' '('
|
|
case 17662: // 'union' '('
|
|
case 17664: // 'unordered' '('
|
|
case 17665: // 'updating' '('
|
|
case 17668: // 'validate' '('
|
|
case 17669: // 'value' '('
|
|
case 17670: // 'variable' '('
|
|
case 17671: // 'version' '('
|
|
case 17674: // 'where' '('
|
|
case 17675: // 'while' '('
|
|
case 17678: // 'with' '('
|
|
case 17682: // 'xquery' '('
|
|
case 36946: // 'attribute' 'allowing'
|
|
case 36985: // 'element' 'allowing'
|
|
case 37048: // 'namespace' 'allowing'
|
|
case 37080: // 'processing-instruction' 'allowing'
|
|
case 37458: // 'attribute' 'ancestor'
|
|
case 37497: // 'element' 'ancestor'
|
|
case 37560: // 'namespace' 'ancestor'
|
|
case 37592: // 'processing-instruction' 'ancestor'
|
|
case 37970: // 'attribute' 'ancestor-or-self'
|
|
case 38009: // 'element' 'ancestor-or-self'
|
|
case 38072: // 'namespace' 'ancestor-or-self'
|
|
case 38104: // 'processing-instruction' 'ancestor-or-self'
|
|
case 40018: // 'attribute' 'array'
|
|
case 40057: // 'element' 'array'
|
|
case 42066: // 'attribute' 'attribute'
|
|
case 42105: // 'element' 'attribute'
|
|
case 42168: // 'namespace' 'attribute'
|
|
case 42200: // 'processing-instruction' 'attribute'
|
|
case 42578: // 'attribute' 'base-uri'
|
|
case 42617: // 'element' 'base-uri'
|
|
case 42680: // 'namespace' 'base-uri'
|
|
case 42712: // 'processing-instruction' 'base-uri'
|
|
case 43602: // 'attribute' 'boundary-space'
|
|
case 43641: // 'element' 'boundary-space'
|
|
case 43704: // 'namespace' 'boundary-space'
|
|
case 43736: // 'processing-instruction' 'boundary-space'
|
|
case 44114: // 'attribute' 'break'
|
|
case 44153: // 'element' 'break'
|
|
case 44216: // 'namespace' 'break'
|
|
case 44248: // 'processing-instruction' 'break'
|
|
case 46674: // 'attribute' 'catch'
|
|
case 46713: // 'element' 'catch'
|
|
case 46776: // 'namespace' 'catch'
|
|
case 46808: // 'processing-instruction' 'catch'
|
|
case 47698: // 'attribute' 'child'
|
|
case 47737: // 'element' 'child'
|
|
case 47800: // 'namespace' 'child'
|
|
case 47832: // 'processing-instruction' 'child'
|
|
case 49234: // 'attribute' 'comment'
|
|
case 49273: // 'element' 'comment'
|
|
case 49336: // 'namespace' 'comment'
|
|
case 49368: // 'processing-instruction' 'comment'
|
|
case 49746: // 'attribute' 'constraint'
|
|
case 49785: // 'element' 'constraint'
|
|
case 49848: // 'namespace' 'constraint'
|
|
case 49880: // 'processing-instruction' 'constraint'
|
|
case 50258: // 'attribute' 'construction'
|
|
case 50297: // 'element' 'construction'
|
|
case 50360: // 'namespace' 'construction'
|
|
case 50392: // 'processing-instruction' 'construction'
|
|
case 51794: // 'attribute' 'context'
|
|
case 51833: // 'element' 'context'
|
|
case 51896: // 'namespace' 'context'
|
|
case 51928: // 'processing-instruction' 'context'
|
|
case 52306: // 'attribute' 'continue'
|
|
case 52345: // 'element' 'continue'
|
|
case 52408: // 'namespace' 'continue'
|
|
case 52440: // 'processing-instruction' 'continue'
|
|
case 52818: // 'attribute' 'copy'
|
|
case 52857: // 'element' 'copy'
|
|
case 52920: // 'namespace' 'copy'
|
|
case 52952: // 'processing-instruction' 'copy'
|
|
case 53330: // 'attribute' 'copy-namespaces'
|
|
case 53369: // 'element' 'copy-namespaces'
|
|
case 53432: // 'namespace' 'copy-namespaces'
|
|
case 53464: // 'processing-instruction' 'copy-namespaces'
|
|
case 54354: // 'attribute' 'decimal-format'
|
|
case 54393: // 'element' 'decimal-format'
|
|
case 54456: // 'namespace' 'decimal-format'
|
|
case 54488: // 'processing-instruction' 'decimal-format'
|
|
case 55378: // 'attribute' 'declare'
|
|
case 55417: // 'element' 'declare'
|
|
case 55480: // 'namespace' 'declare'
|
|
case 55512: // 'processing-instruction' 'declare'
|
|
case 56402: // 'attribute' 'delete'
|
|
case 56441: // 'element' 'delete'
|
|
case 56504: // 'namespace' 'delete'
|
|
case 56536: // 'processing-instruction' 'delete'
|
|
case 56914: // 'attribute' 'descendant'
|
|
case 56953: // 'element' 'descendant'
|
|
case 57016: // 'namespace' 'descendant'
|
|
case 57048: // 'processing-instruction' 'descendant'
|
|
case 57426: // 'attribute' 'descendant-or-self'
|
|
case 57465: // 'element' 'descendant-or-self'
|
|
case 57528: // 'namespace' 'descendant-or-self'
|
|
case 57560: // 'processing-instruction' 'descendant-or-self'
|
|
case 61010: // 'attribute' 'document'
|
|
case 61049: // 'element' 'document'
|
|
case 61112: // 'namespace' 'document'
|
|
case 61144: // 'processing-instruction' 'document'
|
|
case 61522: // 'attribute' 'document-node'
|
|
case 61561: // 'element' 'document-node'
|
|
case 61624: // 'namespace' 'document-node'
|
|
case 61656: // 'processing-instruction' 'document-node'
|
|
case 62034: // 'attribute' 'element'
|
|
case 62073: // 'element' 'element'
|
|
case 62136: // 'namespace' 'element'
|
|
case 62168: // 'processing-instruction' 'element'
|
|
case 63570: // 'attribute' 'empty-sequence'
|
|
case 63609: // 'element' 'empty-sequence'
|
|
case 63672: // 'namespace' 'empty-sequence'
|
|
case 63704: // 'processing-instruction' 'empty-sequence'
|
|
case 64082: // 'attribute' 'encoding'
|
|
case 64121: // 'element' 'encoding'
|
|
case 64184: // 'namespace' 'encoding'
|
|
case 64216: // 'processing-instruction' 'encoding'
|
|
case 66130: // 'attribute' 'every'
|
|
case 66169: // 'element' 'every'
|
|
case 66232: // 'namespace' 'every'
|
|
case 66264: // 'processing-instruction' 'every'
|
|
case 67666: // 'attribute' 'exit'
|
|
case 67705: // 'element' 'exit'
|
|
case 67768: // 'namespace' 'exit'
|
|
case 67800: // 'processing-instruction' 'exit'
|
|
case 68178: // 'attribute' 'external'
|
|
case 68217: // 'element' 'external'
|
|
case 68280: // 'namespace' 'external'
|
|
case 68312: // 'processing-instruction' 'external'
|
|
case 68690: // 'attribute' 'first'
|
|
case 68729: // 'element' 'first'
|
|
case 68792: // 'namespace' 'first'
|
|
case 68824: // 'processing-instruction' 'first'
|
|
case 69202: // 'attribute' 'following'
|
|
case 69241: // 'element' 'following'
|
|
case 69304: // 'namespace' 'following'
|
|
case 69336: // 'processing-instruction' 'following'
|
|
case 69714: // 'attribute' 'following-sibling'
|
|
case 69753: // 'element' 'following-sibling'
|
|
case 69816: // 'namespace' 'following-sibling'
|
|
case 69848: // 'processing-instruction' 'following-sibling'
|
|
case 72274: // 'attribute' 'ft-option'
|
|
case 72313: // 'element' 'ft-option'
|
|
case 72376: // 'namespace' 'ft-option'
|
|
case 72408: // 'processing-instruction' 'ft-option'
|
|
case 74322: // 'attribute' 'function'
|
|
case 74361: // 'element' 'function'
|
|
case 74424: // 'namespace' 'function'
|
|
case 74456: // 'processing-instruction' 'function'
|
|
case 77906: // 'attribute' 'if'
|
|
case 77945: // 'element' 'if'
|
|
case 78008: // 'namespace' 'if'
|
|
case 78040: // 'processing-instruction' 'if'
|
|
case 78418: // 'attribute' 'import'
|
|
case 78457: // 'element' 'import'
|
|
case 78520: // 'namespace' 'import'
|
|
case 78552: // 'processing-instruction' 'import'
|
|
case 78930: // 'attribute' 'in'
|
|
case 78969: // 'element' 'in'
|
|
case 79032: // 'namespace' 'in'
|
|
case 79064: // 'processing-instruction' 'in'
|
|
case 79442: // 'attribute' 'index'
|
|
case 79481: // 'element' 'index'
|
|
case 79544: // 'namespace' 'index'
|
|
case 79576: // 'processing-instruction' 'index'
|
|
case 81490: // 'attribute' 'insert'
|
|
case 81529: // 'element' 'insert'
|
|
case 81592: // 'namespace' 'insert'
|
|
case 81624: // 'processing-instruction' 'insert'
|
|
case 82514: // 'attribute' 'integrity'
|
|
case 82553: // 'element' 'integrity'
|
|
case 82616: // 'namespace' 'integrity'
|
|
case 82648: // 'processing-instruction' 'integrity'
|
|
case 84562: // 'attribute' 'item'
|
|
case 84601: // 'element' 'item'
|
|
case 84664: // 'namespace' 'item'
|
|
case 84696: // 'processing-instruction' 'item'
|
|
case 85586: // 'attribute' 'json-item'
|
|
case 85625: // 'element' 'json-item'
|
|
case 87122: // 'attribute' 'last'
|
|
case 87161: // 'element' 'last'
|
|
case 87224: // 'namespace' 'last'
|
|
case 87256: // 'processing-instruction' 'last'
|
|
case 87634: // 'attribute' 'lax'
|
|
case 87673: // 'element' 'lax'
|
|
case 87736: // 'namespace' 'lax'
|
|
case 87768: // 'processing-instruction' 'lax'
|
|
case 90194: // 'attribute' 'loop'
|
|
case 90233: // 'element' 'loop'
|
|
case 90296: // 'namespace' 'loop'
|
|
case 90328: // 'processing-instruction' 'loop'
|
|
case 93266: // 'attribute' 'module'
|
|
case 93305: // 'element' 'module'
|
|
case 93368: // 'namespace' 'module'
|
|
case 93400: // 'processing-instruction' 'module'
|
|
case 94290: // 'attribute' 'namespace'
|
|
case 94329: // 'element' 'namespace'
|
|
case 94392: // 'namespace' 'namespace'
|
|
case 94424: // 'processing-instruction' 'namespace'
|
|
case 94802: // 'attribute' 'namespace-node'
|
|
case 94841: // 'element' 'namespace-node'
|
|
case 94904: // 'namespace' 'namespace-node'
|
|
case 94936: // 'processing-instruction' 'namespace-node'
|
|
case 97874: // 'attribute' 'node'
|
|
case 97913: // 'element' 'node'
|
|
case 97976: // 'namespace' 'node'
|
|
case 98008: // 'processing-instruction' 'node'
|
|
case 98386: // 'attribute' 'nodes'
|
|
case 98425: // 'element' 'nodes'
|
|
case 98488: // 'namespace' 'nodes'
|
|
case 98520: // 'processing-instruction' 'nodes'
|
|
case 99410: // 'attribute' 'object'
|
|
case 99449: // 'element' 'object'
|
|
case 101970: // 'attribute' 'option'
|
|
case 102009: // 'element' 'option'
|
|
case 102072: // 'namespace' 'option'
|
|
case 102104: // 'processing-instruction' 'option'
|
|
case 103506: // 'attribute' 'ordered'
|
|
case 103545: // 'element' 'ordered'
|
|
case 103608: // 'namespace' 'ordered'
|
|
case 103640: // 'processing-instruction' 'ordered'
|
|
case 104018: // 'attribute' 'ordering'
|
|
case 104057: // 'element' 'ordering'
|
|
case 104120: // 'namespace' 'ordering'
|
|
case 104152: // 'processing-instruction' 'ordering'
|
|
case 105554: // 'attribute' 'parent'
|
|
case 105593: // 'element' 'parent'
|
|
case 105656: // 'namespace' 'parent'
|
|
case 105688: // 'processing-instruction' 'parent'
|
|
case 108626: // 'attribute' 'preceding'
|
|
case 108665: // 'element' 'preceding'
|
|
case 108728: // 'namespace' 'preceding'
|
|
case 108760: // 'processing-instruction' 'preceding'
|
|
case 109138: // 'attribute' 'preceding-sibling'
|
|
case 109177: // 'element' 'preceding-sibling'
|
|
case 109240: // 'namespace' 'preceding-sibling'
|
|
case 109272: // 'processing-instruction' 'preceding-sibling'
|
|
case 110674: // 'attribute' 'processing-instruction'
|
|
case 110713: // 'element' 'processing-instruction'
|
|
case 110776: // 'namespace' 'processing-instruction'
|
|
case 110808: // 'processing-instruction' 'processing-instruction'
|
|
case 111698: // 'attribute' 'rename'
|
|
case 111737: // 'element' 'rename'
|
|
case 111800: // 'namespace' 'rename'
|
|
case 111832: // 'processing-instruction' 'rename'
|
|
case 112210: // 'attribute' 'replace'
|
|
case 112249: // 'element' 'replace'
|
|
case 112312: // 'namespace' 'replace'
|
|
case 112344: // 'processing-instruction' 'replace'
|
|
case 113234: // 'attribute' 'returning'
|
|
case 113273: // 'element' 'returning'
|
|
case 113336: // 'namespace' 'returning'
|
|
case 113368: // 'processing-instruction' 'returning'
|
|
case 113746: // 'attribute' 'revalidation'
|
|
case 113785: // 'element' 'revalidation'
|
|
case 113848: // 'namespace' 'revalidation'
|
|
case 113880: // 'processing-instruction' 'revalidation'
|
|
case 115282: // 'attribute' 'schema'
|
|
case 115321: // 'element' 'schema'
|
|
case 115384: // 'namespace' 'schema'
|
|
case 115416: // 'processing-instruction' 'schema'
|
|
case 115794: // 'attribute' 'schema-attribute'
|
|
case 115833: // 'element' 'schema-attribute'
|
|
case 115896: // 'namespace' 'schema-attribute'
|
|
case 115928: // 'processing-instruction' 'schema-attribute'
|
|
case 116306: // 'attribute' 'schema-element'
|
|
case 116345: // 'element' 'schema-element'
|
|
case 116408: // 'namespace' 'schema-element'
|
|
case 116440: // 'processing-instruction' 'schema-element'
|
|
case 116818: // 'attribute' 'score'
|
|
case 116857: // 'element' 'score'
|
|
case 116920: // 'namespace' 'score'
|
|
case 116952: // 'processing-instruction' 'score'
|
|
case 117330: // 'attribute' 'self'
|
|
case 117369: // 'element' 'self'
|
|
case 117432: // 'namespace' 'self'
|
|
case 117464: // 'processing-instruction' 'self'
|
|
case 119890: // 'attribute' 'sliding'
|
|
case 119929: // 'element' 'sliding'
|
|
case 119992: // 'namespace' 'sliding'
|
|
case 120024: // 'processing-instruction' 'sliding'
|
|
case 120402: // 'attribute' 'some'
|
|
case 120441: // 'element' 'some'
|
|
case 120504: // 'namespace' 'some'
|
|
case 120536: // 'processing-instruction' 'some'
|
|
case 122962: // 'attribute' 'strict'
|
|
case 123001: // 'element' 'strict'
|
|
case 123064: // 'namespace' 'strict'
|
|
case 123096: // 'processing-instruction' 'strict'
|
|
case 124498: // 'attribute' 'switch'
|
|
case 124537: // 'element' 'switch'
|
|
case 124600: // 'namespace' 'switch'
|
|
case 124632: // 'processing-instruction' 'switch'
|
|
case 125010: // 'attribute' 'text'
|
|
case 125049: // 'element' 'text'
|
|
case 125112: // 'namespace' 'text'
|
|
case 125144: // 'processing-instruction' 'text'
|
|
case 128082: // 'attribute' 'try'
|
|
case 128121: // 'element' 'try'
|
|
case 128184: // 'namespace' 'try'
|
|
case 128216: // 'processing-instruction' 'try'
|
|
case 128594: // 'attribute' 'tumbling'
|
|
case 128633: // 'element' 'tumbling'
|
|
case 128696: // 'namespace' 'tumbling'
|
|
case 128728: // 'processing-instruction' 'tumbling'
|
|
case 129106: // 'attribute' 'type'
|
|
case 129145: // 'element' 'type'
|
|
case 129208: // 'namespace' 'type'
|
|
case 129240: // 'processing-instruction' 'type'
|
|
case 129618: // 'attribute' 'typeswitch'
|
|
case 129657: // 'element' 'typeswitch'
|
|
case 129720: // 'namespace' 'typeswitch'
|
|
case 129752: // 'processing-instruction' 'typeswitch'
|
|
case 131154: // 'attribute' 'unordered'
|
|
case 131193: // 'element' 'unordered'
|
|
case 131256: // 'namespace' 'unordered'
|
|
case 131288: // 'processing-instruction' 'unordered'
|
|
case 131666: // 'attribute' 'updating'
|
|
case 131705: // 'element' 'updating'
|
|
case 131768: // 'namespace' 'updating'
|
|
case 131800: // 'processing-instruction' 'updating'
|
|
case 133202: // 'attribute' 'validate'
|
|
case 133241: // 'element' 'validate'
|
|
case 133304: // 'namespace' 'validate'
|
|
case 133336: // 'processing-instruction' 'validate'
|
|
case 133714: // 'attribute' 'value'
|
|
case 133753: // 'element' 'value'
|
|
case 133816: // 'namespace' 'value'
|
|
case 133848: // 'processing-instruction' 'value'
|
|
case 134226: // 'attribute' 'variable'
|
|
case 134265: // 'element' 'variable'
|
|
case 134328: // 'namespace' 'variable'
|
|
case 134360: // 'processing-instruction' 'variable'
|
|
case 134738: // 'attribute' 'version'
|
|
case 134777: // 'element' 'version'
|
|
case 134840: // 'namespace' 'version'
|
|
case 134872: // 'processing-instruction' 'version'
|
|
case 136786: // 'attribute' 'while'
|
|
case 136825: // 'element' 'while'
|
|
case 136888: // 'namespace' 'while'
|
|
case 136920: // 'processing-instruction' 'while'
|
|
case 140370: // 'attribute' 'xquery'
|
|
case 140409: // 'element' 'xquery'
|
|
case 140472: // 'namespace' 'xquery'
|
|
case 140504: // 'processing-instruction' 'xquery'
|
|
case 141394: // 'attribute' '{'
|
|
case 141408: // 'comment' '{'
|
|
case 141431: // 'document' '{'
|
|
case 141433: // 'element' '{'
|
|
case 141496: // 'namespace' '{'
|
|
case 141514: // 'ordered' '{'
|
|
case 141528: // 'processing-instruction' '{'
|
|
case 141556: // 'text' '{'
|
|
case 141568: // 'unordered' '{'
|
|
try_PostfixExpr();
|
|
break;
|
|
case -3:
|
|
break;
|
|
default:
|
|
try_AxisStep();
|
|
}
|
|
}
|
|
|
|
function parse_AxisStep()
|
|
{
|
|
eventHandler.startNonterminal("AxisStep", e0);
|
|
switch (l1)
|
|
{
|
|
case 73: // 'ancestor'
|
|
case 74: // 'ancestor-or-self'
|
|
case 206: // 'parent'
|
|
case 212: // 'preceding'
|
|
case 213: // 'preceding-sibling'
|
|
lookahead2W(240); // S^WS | EOF | '!' | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' | ':' |
|
|
// '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 45: // '..'
|
|
case 26185: // 'ancestor' '::'
|
|
case 26186: // 'ancestor-or-self' '::'
|
|
case 26318: // 'parent' '::'
|
|
case 26324: // 'preceding' '::'
|
|
case 26325: // 'preceding-sibling' '::'
|
|
parse_ReverseStep();
|
|
break;
|
|
default:
|
|
parse_ForwardStep();
|
|
}
|
|
lookahead1W(236); // S^WS | EOF | '!' | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' | ':' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' | 'and' |
|
|
// 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' | 'castable' |
|
|
// 'collation' | 'contains' | 'count' | 'default' | 'descending' | 'div' | 'else' |
|
|
// 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' | 'mod' |
|
|
// 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
whitespace();
|
|
parse_PredicateList();
|
|
eventHandler.endNonterminal("AxisStep", e0);
|
|
}
|
|
|
|
function try_AxisStep()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 73: // 'ancestor'
|
|
case 74: // 'ancestor-or-self'
|
|
case 206: // 'parent'
|
|
case 212: // 'preceding'
|
|
case 213: // 'preceding-sibling'
|
|
lookahead2W(240); // S^WS | EOF | '!' | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' | ':' |
|
|
// '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 45: // '..'
|
|
case 26185: // 'ancestor' '::'
|
|
case 26186: // 'ancestor-or-self' '::'
|
|
case 26318: // 'parent' '::'
|
|
case 26324: // 'preceding' '::'
|
|
case 26325: // 'preceding-sibling' '::'
|
|
try_ReverseStep();
|
|
break;
|
|
default:
|
|
try_ForwardStep();
|
|
}
|
|
lookahead1W(236); // S^WS | EOF | '!' | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' | ':' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' | 'and' |
|
|
// 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' | 'castable' |
|
|
// 'collation' | 'contains' | 'count' | 'default' | 'descending' | 'div' | 'else' |
|
|
// 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' | 'mod' |
|
|
// 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
try_PredicateList();
|
|
}
|
|
|
|
function parse_ForwardStep()
|
|
{
|
|
eventHandler.startNonterminal("ForwardStep", e0);
|
|
switch (l1)
|
|
{
|
|
case 82: // 'attribute'
|
|
lookahead2W(243); // S^WS | EOF | '!' | '!=' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ':' | '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 93: // 'child'
|
|
case 111: // 'descendant'
|
|
case 112: // 'descendant-or-self'
|
|
case 135: // 'following'
|
|
case 136: // 'following-sibling'
|
|
case 229: // 'self'
|
|
lookahead2W(240); // S^WS | EOF | '!' | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' | ':' |
|
|
// '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 26194: // 'attribute' '::'
|
|
case 26205: // 'child' '::'
|
|
case 26223: // 'descendant' '::'
|
|
case 26224: // 'descendant-or-self' '::'
|
|
case 26247: // 'following' '::'
|
|
case 26248: // 'following-sibling' '::'
|
|
case 26341: // 'self' '::'
|
|
parse_ForwardAxis();
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_NodeTest();
|
|
break;
|
|
default:
|
|
parse_AbbrevForwardStep();
|
|
}
|
|
eventHandler.endNonterminal("ForwardStep", e0);
|
|
}
|
|
|
|
function try_ForwardStep()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 82: // 'attribute'
|
|
lookahead2W(243); // S^WS | EOF | '!' | '!=' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ':' | '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 93: // 'child'
|
|
case 111: // 'descendant'
|
|
case 112: // 'descendant-or-self'
|
|
case 135: // 'following'
|
|
case 136: // 'following-sibling'
|
|
case 229: // 'self'
|
|
lookahead2W(240); // S^WS | EOF | '!' | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' | ':' |
|
|
// '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 26194: // 'attribute' '::'
|
|
case 26205: // 'child' '::'
|
|
case 26223: // 'descendant' '::'
|
|
case 26224: // 'descendant-or-self' '::'
|
|
case 26247: // 'following' '::'
|
|
case 26248: // 'following-sibling' '::'
|
|
case 26341: // 'self' '::'
|
|
try_ForwardAxis();
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_NodeTest();
|
|
break;
|
|
default:
|
|
try_AbbrevForwardStep();
|
|
}
|
|
}
|
|
|
|
function parse_ForwardAxis()
|
|
{
|
|
eventHandler.startNonterminal("ForwardAxis", e0);
|
|
switch (l1)
|
|
{
|
|
case 93: // 'child'
|
|
shift(93); // 'child'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
break;
|
|
case 111: // 'descendant'
|
|
shift(111); // 'descendant'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
break;
|
|
case 82: // 'attribute'
|
|
shift(82); // 'attribute'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
break;
|
|
case 229: // 'self'
|
|
shift(229); // 'self'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
break;
|
|
case 112: // 'descendant-or-self'
|
|
shift(112); // 'descendant-or-self'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
break;
|
|
case 136: // 'following-sibling'
|
|
shift(136); // 'following-sibling'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
break;
|
|
default:
|
|
shift(135); // 'following'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
}
|
|
eventHandler.endNonterminal("ForwardAxis", e0);
|
|
}
|
|
|
|
function try_ForwardAxis()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 93: // 'child'
|
|
shiftT(93); // 'child'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
break;
|
|
case 111: // 'descendant'
|
|
shiftT(111); // 'descendant'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
break;
|
|
case 82: // 'attribute'
|
|
shiftT(82); // 'attribute'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
break;
|
|
case 229: // 'self'
|
|
shiftT(229); // 'self'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
break;
|
|
case 112: // 'descendant-or-self'
|
|
shiftT(112); // 'descendant-or-self'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
break;
|
|
case 136: // 'following-sibling'
|
|
shiftT(136); // 'following-sibling'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
break;
|
|
default:
|
|
shiftT(135); // 'following'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
}
|
|
}
|
|
|
|
function parse_AbbrevForwardStep()
|
|
{
|
|
eventHandler.startNonterminal("AbbrevForwardStep", e0);
|
|
if (l1 == 66) // '@'
|
|
{
|
|
shift(66); // '@'
|
|
}
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_NodeTest();
|
|
eventHandler.endNonterminal("AbbrevForwardStep", e0);
|
|
}
|
|
|
|
function try_AbbrevForwardStep()
|
|
{
|
|
if (l1 == 66) // '@'
|
|
{
|
|
shiftT(66); // '@'
|
|
}
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_NodeTest();
|
|
}
|
|
|
|
function parse_ReverseStep()
|
|
{
|
|
eventHandler.startNonterminal("ReverseStep", e0);
|
|
switch (l1)
|
|
{
|
|
case 45: // '..'
|
|
parse_AbbrevReverseStep();
|
|
break;
|
|
default:
|
|
parse_ReverseAxis();
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_NodeTest();
|
|
}
|
|
eventHandler.endNonterminal("ReverseStep", e0);
|
|
}
|
|
|
|
function try_ReverseStep()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 45: // '..'
|
|
try_AbbrevReverseStep();
|
|
break;
|
|
default:
|
|
try_ReverseAxis();
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_NodeTest();
|
|
}
|
|
}
|
|
|
|
function parse_ReverseAxis()
|
|
{
|
|
eventHandler.startNonterminal("ReverseAxis", e0);
|
|
switch (l1)
|
|
{
|
|
case 206: // 'parent'
|
|
shift(206); // 'parent'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
break;
|
|
case 73: // 'ancestor'
|
|
shift(73); // 'ancestor'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
break;
|
|
case 213: // 'preceding-sibling'
|
|
shift(213); // 'preceding-sibling'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
break;
|
|
case 212: // 'preceding'
|
|
shift(212); // 'preceding'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
break;
|
|
default:
|
|
shift(74); // 'ancestor-or-self'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shift(51); // '::'
|
|
}
|
|
eventHandler.endNonterminal("ReverseAxis", e0);
|
|
}
|
|
|
|
function try_ReverseAxis()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 206: // 'parent'
|
|
shiftT(206); // 'parent'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
break;
|
|
case 73: // 'ancestor'
|
|
shiftT(73); // 'ancestor'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
break;
|
|
case 213: // 'preceding-sibling'
|
|
shiftT(213); // 'preceding-sibling'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
break;
|
|
case 212: // 'preceding'
|
|
shiftT(212); // 'preceding'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
break;
|
|
default:
|
|
shiftT(74); // 'ancestor-or-self'
|
|
lookahead1W(26); // S^WS | '(:' | '::'
|
|
shiftT(51); // '::'
|
|
}
|
|
}
|
|
|
|
function parse_AbbrevReverseStep()
|
|
{
|
|
eventHandler.startNonterminal("AbbrevReverseStep", e0);
|
|
shift(45); // '..'
|
|
eventHandler.endNonterminal("AbbrevReverseStep", e0);
|
|
}
|
|
|
|
function try_AbbrevReverseStep()
|
|
{
|
|
shiftT(45); // '..'
|
|
}
|
|
|
|
function parse_NodeTest()
|
|
{
|
|
eventHandler.startNonterminal("NodeTest", e0);
|
|
switch (l1)
|
|
{
|
|
case 78: // 'array'
|
|
case 82: // 'attribute'
|
|
case 96: // 'comment'
|
|
case 120: // 'document-node'
|
|
case 121: // 'element'
|
|
case 167: // 'json-item'
|
|
case 185: // 'namespace-node'
|
|
case 191: // 'node'
|
|
case 194: // 'object'
|
|
case 216: // 'processing-instruction'
|
|
case 226: // 'schema-attribute'
|
|
case 227: // 'schema-element'
|
|
case 244: // 'text'
|
|
lookahead2W(239); // S^WS | EOF | '!' | '!=' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 17486: // 'array' '('
|
|
case 17490: // 'attribute' '('
|
|
case 17504: // 'comment' '('
|
|
case 17528: // 'document-node' '('
|
|
case 17529: // 'element' '('
|
|
case 17575: // 'json-item' '('
|
|
case 17593: // 'namespace-node' '('
|
|
case 17599: // 'node' '('
|
|
case 17602: // 'object' '('
|
|
case 17624: // 'processing-instruction' '('
|
|
case 17634: // 'schema-attribute' '('
|
|
case 17635: // 'schema-element' '('
|
|
case 17652: // 'text' '('
|
|
parse_KindTest();
|
|
break;
|
|
default:
|
|
parse_NameTest();
|
|
}
|
|
eventHandler.endNonterminal("NodeTest", e0);
|
|
}
|
|
|
|
function try_NodeTest()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 78: // 'array'
|
|
case 82: // 'attribute'
|
|
case 96: // 'comment'
|
|
case 120: // 'document-node'
|
|
case 121: // 'element'
|
|
case 167: // 'json-item'
|
|
case 185: // 'namespace-node'
|
|
case 191: // 'node'
|
|
case 194: // 'object'
|
|
case 216: // 'processing-instruction'
|
|
case 226: // 'schema-attribute'
|
|
case 227: // 'schema-element'
|
|
case 244: // 'text'
|
|
lookahead2W(239); // S^WS | EOF | '!' | '!=' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 17486: // 'array' '('
|
|
case 17490: // 'attribute' '('
|
|
case 17504: // 'comment' '('
|
|
case 17528: // 'document-node' '('
|
|
case 17529: // 'element' '('
|
|
case 17575: // 'json-item' '('
|
|
case 17593: // 'namespace-node' '('
|
|
case 17599: // 'node' '('
|
|
case 17602: // 'object' '('
|
|
case 17624: // 'processing-instruction' '('
|
|
case 17634: // 'schema-attribute' '('
|
|
case 17635: // 'schema-element' '('
|
|
case 17652: // 'text' '('
|
|
try_KindTest();
|
|
break;
|
|
default:
|
|
try_NameTest();
|
|
}
|
|
}
|
|
|
|
function parse_NameTest()
|
|
{
|
|
eventHandler.startNonterminal("NameTest", e0);
|
|
switch (l1)
|
|
{
|
|
case 5: // Wildcard
|
|
shift(5); // Wildcard
|
|
break;
|
|
default:
|
|
parse_EQName();
|
|
}
|
|
eventHandler.endNonterminal("NameTest", e0);
|
|
}
|
|
|
|
function try_NameTest()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 5: // Wildcard
|
|
shiftT(5); // Wildcard
|
|
break;
|
|
default:
|
|
try_EQName();
|
|
}
|
|
}
|
|
|
|
function parse_PostfixExpr()
|
|
{
|
|
eventHandler.startNonterminal("PostfixExpr", e0);
|
|
parse_PrimaryExpr();
|
|
for (;;)
|
|
{
|
|
lookahead1W(239); // S^WS | EOF | '!' | '!=' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
if (l1 != 34 // '('
|
|
&& l1 != 68) // '['
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 68: // '['
|
|
whitespace();
|
|
parse_Predicate();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_ArgumentList();
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("PostfixExpr", e0);
|
|
}
|
|
|
|
function try_PostfixExpr()
|
|
{
|
|
try_PrimaryExpr();
|
|
for (;;)
|
|
{
|
|
lookahead1W(239); // S^WS | EOF | '!' | '!=' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
if (l1 != 34 // '('
|
|
&& l1 != 68) // '['
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 68: // '['
|
|
try_Predicate();
|
|
break;
|
|
default:
|
|
try_ArgumentList();
|
|
}
|
|
}
|
|
}
|
|
|
|
function parse_ArgumentList()
|
|
{
|
|
eventHandler.startNonterminal("ArgumentList", e0);
|
|
shift(34); // '('
|
|
lookahead1W(275); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | ')' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '?' | '@' | '[' | 'after' |
|
|
// 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' |
|
|
// 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' |
|
|
// 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' |
|
|
// 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery' | '{' | '{|'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
whitespace();
|
|
parse_Argument();
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(270); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Argument();
|
|
}
|
|
}
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("ArgumentList", e0);
|
|
}
|
|
|
|
function try_ArgumentList()
|
|
{
|
|
shiftT(34); // '('
|
|
lookahead1W(275); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | ')' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '?' | '@' | '[' | 'after' |
|
|
// 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' |
|
|
// 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' |
|
|
// 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' |
|
|
// 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery' | '{' | '{|'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
try_Argument();
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(270); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Argument();
|
|
}
|
|
}
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_PredicateList()
|
|
{
|
|
eventHandler.startNonterminal("PredicateList", e0);
|
|
for (;;)
|
|
{
|
|
lookahead1W(236); // S^WS | EOF | '!' | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' | ':' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' | 'and' |
|
|
// 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' | 'castable' |
|
|
// 'collation' | 'contains' | 'count' | 'default' | 'descending' | 'div' | 'else' |
|
|
// 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' | 'mod' |
|
|
// 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
if (l1 != 68) // '['
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_Predicate();
|
|
}
|
|
eventHandler.endNonterminal("PredicateList", e0);
|
|
}
|
|
|
|
function try_PredicateList()
|
|
{
|
|
for (;;)
|
|
{
|
|
lookahead1W(236); // S^WS | EOF | '!' | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' | '//' | ':' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' | 'after' | 'and' |
|
|
// 'as' | 'ascending' | 'at' | 'before' | 'by' | 'case' | 'cast' | 'castable' |
|
|
// 'collation' | 'contains' | 'count' | 'default' | 'descending' | 'div' | 'else' |
|
|
// 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' | 'mod' |
|
|
// 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'sentences' | 'stable' | 'start' | 'times' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | 'words' | '|' | '||' | '|}' | '}'
|
|
if (l1 != 68) // '['
|
|
{
|
|
break;
|
|
}
|
|
try_Predicate();
|
|
}
|
|
}
|
|
|
|
function parse_Predicate()
|
|
{
|
|
eventHandler.startNonterminal("Predicate", e0);
|
|
shift(68); // '['
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(69); // ']'
|
|
eventHandler.endNonterminal("Predicate", e0);
|
|
}
|
|
|
|
function try_Predicate()
|
|
{
|
|
shiftT(68); // '['
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(69); // ']'
|
|
}
|
|
|
|
function parse_Literal()
|
|
{
|
|
eventHandler.startNonterminal("Literal", e0);
|
|
switch (l1)
|
|
{
|
|
case 11: // StringLiteral
|
|
shift(11); // StringLiteral
|
|
break;
|
|
default:
|
|
parse_NumericLiteral();
|
|
}
|
|
eventHandler.endNonterminal("Literal", e0);
|
|
}
|
|
|
|
function try_Literal()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 11: // StringLiteral
|
|
shiftT(11); // StringLiteral
|
|
break;
|
|
default:
|
|
try_NumericLiteral();
|
|
}
|
|
}
|
|
|
|
function parse_NumericLiteral()
|
|
{
|
|
eventHandler.startNonterminal("NumericLiteral", e0);
|
|
switch (l1)
|
|
{
|
|
case 8: // IntegerLiteral
|
|
shift(8); // IntegerLiteral
|
|
break;
|
|
case 9: // DecimalLiteral
|
|
shift(9); // DecimalLiteral
|
|
break;
|
|
default:
|
|
shift(10); // DoubleLiteral
|
|
}
|
|
eventHandler.endNonterminal("NumericLiteral", e0);
|
|
}
|
|
|
|
function try_NumericLiteral()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 8: // IntegerLiteral
|
|
shiftT(8); // IntegerLiteral
|
|
break;
|
|
case 9: // DecimalLiteral
|
|
shiftT(9); // DecimalLiteral
|
|
break;
|
|
default:
|
|
shiftT(10); // DoubleLiteral
|
|
}
|
|
}
|
|
|
|
function parse_VarRef()
|
|
{
|
|
eventHandler.startNonterminal("VarRef", e0);
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
eventHandler.endNonterminal("VarRef", e0);
|
|
}
|
|
|
|
function try_VarRef()
|
|
{
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
}
|
|
|
|
function parse_VarName()
|
|
{
|
|
eventHandler.startNonterminal("VarName", e0);
|
|
parse_EQName();
|
|
eventHandler.endNonterminal("VarName", e0);
|
|
}
|
|
|
|
function try_VarName()
|
|
{
|
|
try_EQName();
|
|
}
|
|
|
|
function parse_ParenthesizedExpr()
|
|
{
|
|
eventHandler.startNonterminal("ParenthesizedExpr", e0);
|
|
shift(34); // '('
|
|
lookahead1W(269); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | ')' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
whitespace();
|
|
parse_Expr();
|
|
}
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("ParenthesizedExpr", e0);
|
|
}
|
|
|
|
function try_ParenthesizedExpr()
|
|
{
|
|
shiftT(34); // '('
|
|
lookahead1W(269); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | ')' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
try_Expr();
|
|
}
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_ContextItemExpr()
|
|
{
|
|
eventHandler.startNonterminal("ContextItemExpr", e0);
|
|
shift(44); // '.'
|
|
eventHandler.endNonterminal("ContextItemExpr", e0);
|
|
}
|
|
|
|
function try_ContextItemExpr()
|
|
{
|
|
shiftT(44); // '.'
|
|
}
|
|
|
|
function parse_OrderedExpr()
|
|
{
|
|
eventHandler.startNonterminal("OrderedExpr", e0);
|
|
shift(202); // 'ordered'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("OrderedExpr", e0);
|
|
}
|
|
|
|
function try_OrderedExpr()
|
|
{
|
|
shiftT(202); // 'ordered'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_UnorderedExpr()
|
|
{
|
|
eventHandler.startNonterminal("UnorderedExpr", e0);
|
|
shift(256); // 'unordered'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("UnorderedExpr", e0);
|
|
}
|
|
|
|
function try_UnorderedExpr()
|
|
{
|
|
shiftT(256); // 'unordered'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_FunctionCall()
|
|
{
|
|
eventHandler.startNonterminal("FunctionCall", e0);
|
|
parse_FunctionName();
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
whitespace();
|
|
parse_ArgumentList();
|
|
eventHandler.endNonterminal("FunctionCall", e0);
|
|
}
|
|
|
|
function try_FunctionCall()
|
|
{
|
|
try_FunctionName();
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
try_ArgumentList();
|
|
}
|
|
|
|
function parse_Argument()
|
|
{
|
|
eventHandler.startNonterminal("Argument", e0);
|
|
switch (l1)
|
|
{
|
|
case 64: // '?'
|
|
parse_ArgumentPlaceholder();
|
|
break;
|
|
default:
|
|
parse_ExprSingle();
|
|
}
|
|
eventHandler.endNonterminal("Argument", e0);
|
|
}
|
|
|
|
function try_Argument()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 64: // '?'
|
|
try_ArgumentPlaceholder();
|
|
break;
|
|
default:
|
|
try_ExprSingle();
|
|
}
|
|
}
|
|
|
|
function parse_ArgumentPlaceholder()
|
|
{
|
|
eventHandler.startNonterminal("ArgumentPlaceholder", e0);
|
|
shift(64); // '?'
|
|
eventHandler.endNonterminal("ArgumentPlaceholder", e0);
|
|
}
|
|
|
|
function try_ArgumentPlaceholder()
|
|
{
|
|
shiftT(64); // '?'
|
|
}
|
|
|
|
function parse_Constructor()
|
|
{
|
|
eventHandler.startNonterminal("Constructor", e0);
|
|
switch (l1)
|
|
{
|
|
case 54: // '<'
|
|
case 55: // '<!--'
|
|
case 59: // '<?'
|
|
parse_DirectConstructor();
|
|
break;
|
|
default:
|
|
parse_ComputedConstructor();
|
|
}
|
|
eventHandler.endNonterminal("Constructor", e0);
|
|
}
|
|
|
|
function try_Constructor()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 54: // '<'
|
|
case 55: // '<!--'
|
|
case 59: // '<?'
|
|
try_DirectConstructor();
|
|
break;
|
|
default:
|
|
try_ComputedConstructor();
|
|
}
|
|
}
|
|
|
|
function parse_DirectConstructor()
|
|
{
|
|
eventHandler.startNonterminal("DirectConstructor", e0);
|
|
switch (l1)
|
|
{
|
|
case 54: // '<'
|
|
parse_DirElemConstructor();
|
|
break;
|
|
case 55: // '<!--'
|
|
parse_DirCommentConstructor();
|
|
break;
|
|
default:
|
|
parse_DirPIConstructor();
|
|
}
|
|
eventHandler.endNonterminal("DirectConstructor", e0);
|
|
}
|
|
|
|
function try_DirectConstructor()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 54: // '<'
|
|
try_DirElemConstructor();
|
|
break;
|
|
case 55: // '<!--'
|
|
try_DirCommentConstructor();
|
|
break;
|
|
default:
|
|
try_DirPIConstructor();
|
|
}
|
|
}
|
|
|
|
function parse_DirElemConstructor()
|
|
{
|
|
eventHandler.startNonterminal("DirElemConstructor", e0);
|
|
shift(54); // '<'
|
|
lookahead1(4); // QName
|
|
shift(20); // QName
|
|
parse_DirAttributeList();
|
|
switch (l1)
|
|
{
|
|
case 48: // '/>'
|
|
shift(48); // '/>'
|
|
break;
|
|
default:
|
|
shift(61); // '>'
|
|
for (;;)
|
|
{
|
|
lookahead1(174); // CDataSection | PredefinedEntityRef | ElementContentChar | CharRef | '<' |
|
|
// '<!--' | '</' | '<?' | '{' | '{{' | '}}'
|
|
if (l1 == 56) // '</'
|
|
{
|
|
break;
|
|
}
|
|
parse_DirElemContent();
|
|
}
|
|
shift(56); // '</'
|
|
lookahead1(4); // QName
|
|
shift(20); // QName
|
|
lookahead1(12); // S | '>'
|
|
if (l1 == 21) // S
|
|
{
|
|
shift(21); // S
|
|
}
|
|
lookahead1(8); // '>'
|
|
shift(61); // '>'
|
|
}
|
|
eventHandler.endNonterminal("DirElemConstructor", e0);
|
|
}
|
|
|
|
function try_DirElemConstructor()
|
|
{
|
|
shiftT(54); // '<'
|
|
lookahead1(4); // QName
|
|
shiftT(20); // QName
|
|
try_DirAttributeList();
|
|
switch (l1)
|
|
{
|
|
case 48: // '/>'
|
|
shiftT(48); // '/>'
|
|
break;
|
|
default:
|
|
shiftT(61); // '>'
|
|
for (;;)
|
|
{
|
|
lookahead1(174); // CDataSection | PredefinedEntityRef | ElementContentChar | CharRef | '<' |
|
|
// '<!--' | '</' | '<?' | '{' | '{{' | '}}'
|
|
if (l1 == 56) // '</'
|
|
{
|
|
break;
|
|
}
|
|
try_DirElemContent();
|
|
}
|
|
shiftT(56); // '</'
|
|
lookahead1(4); // QName
|
|
shiftT(20); // QName
|
|
lookahead1(12); // S | '>'
|
|
if (l1 == 21) // S
|
|
{
|
|
shiftT(21); // S
|
|
}
|
|
lookahead1(8); // '>'
|
|
shiftT(61); // '>'
|
|
}
|
|
}
|
|
|
|
function parse_DirAttributeList()
|
|
{
|
|
eventHandler.startNonterminal("DirAttributeList", e0);
|
|
for (;;)
|
|
{
|
|
lookahead1(19); // S | '/>' | '>'
|
|
if (l1 != 21) // S
|
|
{
|
|
break;
|
|
}
|
|
shift(21); // S
|
|
lookahead1(91); // QName | S | '/>' | '>'
|
|
if (l1 == 20) // QName
|
|
{
|
|
shift(20); // QName
|
|
lookahead1(11); // S | '='
|
|
if (l1 == 21) // S
|
|
{
|
|
shift(21); // S
|
|
}
|
|
lookahead1(7); // '='
|
|
shift(60); // '='
|
|
lookahead1(18); // S | '"' | "'"
|
|
if (l1 == 21) // S
|
|
{
|
|
shift(21); // S
|
|
}
|
|
parse_DirAttributeValue();
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("DirAttributeList", e0);
|
|
}
|
|
|
|
function try_DirAttributeList()
|
|
{
|
|
for (;;)
|
|
{
|
|
lookahead1(19); // S | '/>' | '>'
|
|
if (l1 != 21) // S
|
|
{
|
|
break;
|
|
}
|
|
shiftT(21); // S
|
|
lookahead1(91); // QName | S | '/>' | '>'
|
|
if (l1 == 20) // QName
|
|
{
|
|
shiftT(20); // QName
|
|
lookahead1(11); // S | '='
|
|
if (l1 == 21) // S
|
|
{
|
|
shiftT(21); // S
|
|
}
|
|
lookahead1(7); // '='
|
|
shiftT(60); // '='
|
|
lookahead1(18); // S | '"' | "'"
|
|
if (l1 == 21) // S
|
|
{
|
|
shiftT(21); // S
|
|
}
|
|
try_DirAttributeValue();
|
|
}
|
|
}
|
|
}
|
|
|
|
function parse_DirAttributeValue()
|
|
{
|
|
eventHandler.startNonterminal("DirAttributeValue", e0);
|
|
lookahead1(14); // '"' | "'"
|
|
switch (l1)
|
|
{
|
|
case 28: // '"'
|
|
shift(28); // '"'
|
|
for (;;)
|
|
{
|
|
lookahead1(167); // PredefinedEntityRef | EscapeQuot | QuotAttrContentChar | CharRef | '"' | '{' |
|
|
// '{{' | '}}'
|
|
if (l1 == 28) // '"'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 13: // EscapeQuot
|
|
shift(13); // EscapeQuot
|
|
break;
|
|
default:
|
|
parse_QuotAttrValueContent();
|
|
}
|
|
}
|
|
shift(28); // '"'
|
|
break;
|
|
default:
|
|
shift(33); // "'"
|
|
for (;;)
|
|
{
|
|
lookahead1(168); // PredefinedEntityRef | EscapeApos | AposAttrContentChar | CharRef | "'" | '{' |
|
|
// '{{' | '}}'
|
|
if (l1 == 33) // "'"
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 14: // EscapeApos
|
|
shift(14); // EscapeApos
|
|
break;
|
|
default:
|
|
parse_AposAttrValueContent();
|
|
}
|
|
}
|
|
shift(33); // "'"
|
|
}
|
|
eventHandler.endNonterminal("DirAttributeValue", e0);
|
|
}
|
|
|
|
function try_DirAttributeValue()
|
|
{
|
|
lookahead1(14); // '"' | "'"
|
|
switch (l1)
|
|
{
|
|
case 28: // '"'
|
|
shiftT(28); // '"'
|
|
for (;;)
|
|
{
|
|
lookahead1(167); // PredefinedEntityRef | EscapeQuot | QuotAttrContentChar | CharRef | '"' | '{' |
|
|
// '{{' | '}}'
|
|
if (l1 == 28) // '"'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 13: // EscapeQuot
|
|
shiftT(13); // EscapeQuot
|
|
break;
|
|
default:
|
|
try_QuotAttrValueContent();
|
|
}
|
|
}
|
|
shiftT(28); // '"'
|
|
break;
|
|
default:
|
|
shiftT(33); // "'"
|
|
for (;;)
|
|
{
|
|
lookahead1(168); // PredefinedEntityRef | EscapeApos | AposAttrContentChar | CharRef | "'" | '{' |
|
|
// '{{' | '}}'
|
|
if (l1 == 33) // "'"
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 14: // EscapeApos
|
|
shiftT(14); // EscapeApos
|
|
break;
|
|
default:
|
|
try_AposAttrValueContent();
|
|
}
|
|
}
|
|
shiftT(33); // "'"
|
|
}
|
|
}
|
|
|
|
function parse_QuotAttrValueContent()
|
|
{
|
|
eventHandler.startNonterminal("QuotAttrValueContent", e0);
|
|
switch (l1)
|
|
{
|
|
case 16: // QuotAttrContentChar
|
|
shift(16); // QuotAttrContentChar
|
|
break;
|
|
default:
|
|
parse_CommonContent();
|
|
}
|
|
eventHandler.endNonterminal("QuotAttrValueContent", e0);
|
|
}
|
|
|
|
function try_QuotAttrValueContent()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 16: // QuotAttrContentChar
|
|
shiftT(16); // QuotAttrContentChar
|
|
break;
|
|
default:
|
|
try_CommonContent();
|
|
}
|
|
}
|
|
|
|
function parse_AposAttrValueContent()
|
|
{
|
|
eventHandler.startNonterminal("AposAttrValueContent", e0);
|
|
switch (l1)
|
|
{
|
|
case 17: // AposAttrContentChar
|
|
shift(17); // AposAttrContentChar
|
|
break;
|
|
default:
|
|
parse_CommonContent();
|
|
}
|
|
eventHandler.endNonterminal("AposAttrValueContent", e0);
|
|
}
|
|
|
|
function try_AposAttrValueContent()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 17: // AposAttrContentChar
|
|
shiftT(17); // AposAttrContentChar
|
|
break;
|
|
default:
|
|
try_CommonContent();
|
|
}
|
|
}
|
|
|
|
function parse_DirElemContent()
|
|
{
|
|
eventHandler.startNonterminal("DirElemContent", e0);
|
|
switch (l1)
|
|
{
|
|
case 54: // '<'
|
|
case 55: // '<!--'
|
|
case 59: // '<?'
|
|
parse_DirectConstructor();
|
|
break;
|
|
case 4: // CDataSection
|
|
shift(4); // CDataSection
|
|
break;
|
|
case 15: // ElementContentChar
|
|
shift(15); // ElementContentChar
|
|
break;
|
|
default:
|
|
parse_CommonContent();
|
|
}
|
|
eventHandler.endNonterminal("DirElemContent", e0);
|
|
}
|
|
|
|
function try_DirElemContent()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 54: // '<'
|
|
case 55: // '<!--'
|
|
case 59: // '<?'
|
|
try_DirectConstructor();
|
|
break;
|
|
case 4: // CDataSection
|
|
shiftT(4); // CDataSection
|
|
break;
|
|
case 15: // ElementContentChar
|
|
shiftT(15); // ElementContentChar
|
|
break;
|
|
default:
|
|
try_CommonContent();
|
|
}
|
|
}
|
|
|
|
function parse_DirCommentConstructor()
|
|
{
|
|
eventHandler.startNonterminal("DirCommentConstructor", e0);
|
|
shift(55); // '<!--'
|
|
lookahead1(1); // DirCommentContents
|
|
shift(2); // DirCommentContents
|
|
lookahead1(6); // '-->'
|
|
shift(43); // '-->'
|
|
eventHandler.endNonterminal("DirCommentConstructor", e0);
|
|
}
|
|
|
|
function try_DirCommentConstructor()
|
|
{
|
|
shiftT(55); // '<!--'
|
|
lookahead1(1); // DirCommentContents
|
|
shiftT(2); // DirCommentContents
|
|
lookahead1(6); // '-->'
|
|
shiftT(43); // '-->'
|
|
}
|
|
|
|
function parse_DirPIConstructor()
|
|
{
|
|
eventHandler.startNonterminal("DirPIConstructor", e0);
|
|
shift(59); // '<?'
|
|
lookahead1(3); // PITarget
|
|
shift(18); // PITarget
|
|
lookahead1(13); // S | '?>'
|
|
if (l1 == 21) // S
|
|
{
|
|
shift(21); // S
|
|
lookahead1(2); // DirPIContents
|
|
shift(3); // DirPIContents
|
|
}
|
|
lookahead1(9); // '?>'
|
|
shift(65); // '?>'
|
|
eventHandler.endNonterminal("DirPIConstructor", e0);
|
|
}
|
|
|
|
function try_DirPIConstructor()
|
|
{
|
|
shiftT(59); // '<?'
|
|
lookahead1(3); // PITarget
|
|
shiftT(18); // PITarget
|
|
lookahead1(13); // S | '?>'
|
|
if (l1 == 21) // S
|
|
{
|
|
shiftT(21); // S
|
|
lookahead1(2); // DirPIContents
|
|
shiftT(3); // DirPIContents
|
|
}
|
|
lookahead1(9); // '?>'
|
|
shiftT(65); // '?>'
|
|
}
|
|
|
|
function parse_ComputedConstructor()
|
|
{
|
|
eventHandler.startNonterminal("ComputedConstructor", e0);
|
|
switch (l1)
|
|
{
|
|
case 119: // 'document'
|
|
parse_CompDocConstructor();
|
|
break;
|
|
case 121: // 'element'
|
|
parse_CompElemConstructor();
|
|
break;
|
|
case 82: // 'attribute'
|
|
parse_CompAttrConstructor();
|
|
break;
|
|
case 184: // 'namespace'
|
|
parse_CompNamespaceConstructor();
|
|
break;
|
|
case 244: // 'text'
|
|
parse_CompTextConstructor();
|
|
break;
|
|
case 96: // 'comment'
|
|
parse_CompCommentConstructor();
|
|
break;
|
|
default:
|
|
parse_CompPIConstructor();
|
|
}
|
|
eventHandler.endNonterminal("ComputedConstructor", e0);
|
|
}
|
|
|
|
function try_ComputedConstructor()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 119: // 'document'
|
|
try_CompDocConstructor();
|
|
break;
|
|
case 121: // 'element'
|
|
try_CompElemConstructor();
|
|
break;
|
|
case 82: // 'attribute'
|
|
try_CompAttrConstructor();
|
|
break;
|
|
case 184: // 'namespace'
|
|
try_CompNamespaceConstructor();
|
|
break;
|
|
case 244: // 'text'
|
|
try_CompTextConstructor();
|
|
break;
|
|
case 96: // 'comment'
|
|
try_CompCommentConstructor();
|
|
break;
|
|
default:
|
|
try_CompPIConstructor();
|
|
}
|
|
}
|
|
|
|
function parse_CompElemConstructor()
|
|
{
|
|
eventHandler.startNonterminal("CompElemConstructor", e0);
|
|
shift(121); // 'element'
|
|
lookahead1W(256); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(282); // '}'
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_EQName();
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shift(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
if (l1 != 282) // '}'
|
|
{
|
|
whitespace();
|
|
parse_ContentExpr();
|
|
}
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("CompElemConstructor", e0);
|
|
}
|
|
|
|
function try_CompElemConstructor()
|
|
{
|
|
shiftT(121); // 'element'
|
|
lookahead1W(256); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(282); // '}'
|
|
break;
|
|
default:
|
|
try_EQName();
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
if (l1 != 282) // '}'
|
|
{
|
|
try_ContentExpr();
|
|
}
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_CompNamespaceConstructor()
|
|
{
|
|
eventHandler.startNonterminal("CompNamespaceConstructor", e0);
|
|
shift(184); // 'namespace'
|
|
lookahead1W(249); // NCName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_PrefixExpr();
|
|
shift(282); // '}'
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_Prefix();
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_URIExpr();
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("CompNamespaceConstructor", e0);
|
|
}
|
|
|
|
function try_CompNamespaceConstructor()
|
|
{
|
|
shiftT(184); // 'namespace'
|
|
lookahead1W(249); // NCName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_PrefixExpr();
|
|
shiftT(282); // '}'
|
|
break;
|
|
default:
|
|
try_Prefix();
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_URIExpr();
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_Prefix()
|
|
{
|
|
eventHandler.startNonterminal("Prefix", e0);
|
|
parse_NCName();
|
|
eventHandler.endNonterminal("Prefix", e0);
|
|
}
|
|
|
|
function try_Prefix()
|
|
{
|
|
try_NCName();
|
|
}
|
|
|
|
function parse_PrefixExpr()
|
|
{
|
|
eventHandler.startNonterminal("PrefixExpr", e0);
|
|
parse_Expr();
|
|
eventHandler.endNonterminal("PrefixExpr", e0);
|
|
}
|
|
|
|
function try_PrefixExpr()
|
|
{
|
|
try_Expr();
|
|
}
|
|
|
|
function parse_URIExpr()
|
|
{
|
|
eventHandler.startNonterminal("URIExpr", e0);
|
|
parse_Expr();
|
|
eventHandler.endNonterminal("URIExpr", e0);
|
|
}
|
|
|
|
function try_URIExpr()
|
|
{
|
|
try_Expr();
|
|
}
|
|
|
|
function parse_FunctionItemExpr()
|
|
{
|
|
eventHandler.startNonterminal("FunctionItemExpr", e0);
|
|
switch (l1)
|
|
{
|
|
case 145: // 'function'
|
|
lookahead2W(92); // S^WS | '#' | '(' | '(:'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 32: // '%'
|
|
case 17553: // 'function' '('
|
|
parse_InlineFunctionExpr();
|
|
break;
|
|
default:
|
|
parse_NamedFunctionRef();
|
|
}
|
|
eventHandler.endNonterminal("FunctionItemExpr", e0);
|
|
}
|
|
|
|
function try_FunctionItemExpr()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 145: // 'function'
|
|
lookahead2W(92); // S^WS | '#' | '(' | '(:'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 32: // '%'
|
|
case 17553: // 'function' '('
|
|
try_InlineFunctionExpr();
|
|
break;
|
|
default:
|
|
try_NamedFunctionRef();
|
|
}
|
|
}
|
|
|
|
function parse_NamedFunctionRef()
|
|
{
|
|
eventHandler.startNonterminal("NamedFunctionRef", e0);
|
|
parse_EQName();
|
|
lookahead1W(20); // S^WS | '#' | '(:'
|
|
shift(29); // '#'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shift(8); // IntegerLiteral
|
|
eventHandler.endNonterminal("NamedFunctionRef", e0);
|
|
}
|
|
|
|
function try_NamedFunctionRef()
|
|
{
|
|
try_EQName();
|
|
lookahead1W(20); // S^WS | '#' | '(:'
|
|
shiftT(29); // '#'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shiftT(8); // IntegerLiteral
|
|
}
|
|
|
|
function parse_InlineFunctionExpr()
|
|
{
|
|
eventHandler.startNonterminal("InlineFunctionExpr", e0);
|
|
for (;;)
|
|
{
|
|
lookahead1W(97); // S^WS | '%' | '(:' | 'function'
|
|
if (l1 != 32) // '%'
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_Annotation();
|
|
}
|
|
shift(145); // 'function'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(94); // S^WS | '$' | '(:' | ')'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
whitespace();
|
|
parse_ParamList();
|
|
}
|
|
shift(37); // ')'
|
|
lookahead1W(111); // S^WS | '(:' | 'as' | '{'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
shift(79); // 'as'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_SequenceType();
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
whitespace();
|
|
parse_FunctionBody();
|
|
eventHandler.endNonterminal("InlineFunctionExpr", e0);
|
|
}
|
|
|
|
function try_InlineFunctionExpr()
|
|
{
|
|
for (;;)
|
|
{
|
|
lookahead1W(97); // S^WS | '%' | '(:' | 'function'
|
|
if (l1 != 32) // '%'
|
|
{
|
|
break;
|
|
}
|
|
try_Annotation();
|
|
}
|
|
shiftT(145); // 'function'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(94); // S^WS | '$' | '(:' | ')'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
try_ParamList();
|
|
}
|
|
shiftT(37); // ')'
|
|
lookahead1W(111); // S^WS | '(:' | 'as' | '{'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
shiftT(79); // 'as'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
try_SequenceType();
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
try_FunctionBody();
|
|
}
|
|
|
|
function parse_SingleType()
|
|
{
|
|
eventHandler.startNonterminal("SingleType", e0);
|
|
parse_SimpleTypeName();
|
|
lookahead1W(226); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | '?' | ']' | 'after' | 'and' | 'as' |
|
|
// 'ascending' | 'at' | 'before' | 'case' | 'castable' | 'collation' | 'contains' |
|
|
// 'count' | 'default' | 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' |
|
|
// 'except' | 'for' | 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' |
|
|
// 'into' | 'is' | 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' |
|
|
// 'order' | 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' |
|
|
// 'start' | 'times' | 'to' | 'treat' | 'union' | 'where' | 'with' | 'words' | '|' |
|
|
// '||' | '|}' | '}'
|
|
if (l1 == 64) // '?'
|
|
{
|
|
shift(64); // '?'
|
|
}
|
|
eventHandler.endNonterminal("SingleType", e0);
|
|
}
|
|
|
|
function try_SingleType()
|
|
{
|
|
try_SimpleTypeName();
|
|
lookahead1W(226); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '+' | ',' | '-' | ':' | ';' | '<' | '<<' |
|
|
// '<=' | '=' | '>' | '>=' | '>>' | '?' | ']' | 'after' | 'and' | 'as' |
|
|
// 'ascending' | 'at' | 'before' | 'case' | 'castable' | 'collation' | 'contains' |
|
|
// 'count' | 'default' | 'descending' | 'div' | 'else' | 'empty' | 'end' | 'eq' |
|
|
// 'except' | 'for' | 'ge' | 'group' | 'gt' | 'idiv' | 'instance' | 'intersect' |
|
|
// 'into' | 'is' | 'le' | 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'only' | 'or' |
|
|
// 'order' | 'paragraphs' | 'return' | 'satisfies' | 'sentences' | 'stable' |
|
|
// 'start' | 'times' | 'to' | 'treat' | 'union' | 'where' | 'with' | 'words' | '|' |
|
|
// '||' | '|}' | '}'
|
|
if (l1 == 64) // '?'
|
|
{
|
|
shiftT(64); // '?'
|
|
}
|
|
}
|
|
|
|
function parse_TypeDeclaration()
|
|
{
|
|
eventHandler.startNonterminal("TypeDeclaration", e0);
|
|
shift(79); // 'as'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_SequenceType();
|
|
eventHandler.endNonterminal("TypeDeclaration", e0);
|
|
}
|
|
|
|
function try_TypeDeclaration()
|
|
{
|
|
shiftT(79); // 'as'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
try_SequenceType();
|
|
}
|
|
|
|
function parse_SequenceType()
|
|
{
|
|
eventHandler.startNonterminal("SequenceType", e0);
|
|
switch (l1)
|
|
{
|
|
case 124: // 'empty-sequence'
|
|
lookahead2W(241); // S^WS | EOF | '!=' | '(' | '(:' | ')' | '*' | '*' | '+' | ',' | '-' | ':' | ':=' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '?' | ']' | 'after' |
|
|
// 'allowing' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' |
|
|
// 'collation' | 'contains' | 'count' | 'default' | 'descending' | 'div' | 'else' |
|
|
// 'empty' | 'end' | 'eq' | 'except' | 'external' | 'for' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'in' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'score' | 'sentences' | 'stable' | 'start' | 'times' | 'to' |
|
|
// 'union' | 'where' | 'with' | 'words' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 17532: // 'empty-sequence' '('
|
|
shift(124); // 'empty-sequence'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
break;
|
|
default:
|
|
parse_ItemType();
|
|
lookahead1W(237); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '*' | '+' | ',' | '-' | ':' | ':=' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '?' | ']' | 'after' | 'allowing' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'collation' |
|
|
// 'contains' | 'count' | 'default' | 'descending' | 'div' | 'else' | 'empty' |
|
|
// 'end' | 'eq' | 'except' | 'external' | 'for' | 'ge' | 'group' | 'gt' | 'idiv' |
|
|
// 'in' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' | 'mod' |
|
|
// 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'score' | 'sentences' | 'stable' | 'start' | 'times' | 'to' |
|
|
// 'union' | 'where' | 'with' | 'words' | '{' | '|' | '||' | '|}' | '}'
|
|
switch (l1)
|
|
{
|
|
case 39: // '*'
|
|
case 40: // '+'
|
|
case 64: // '?'
|
|
whitespace();
|
|
parse_OccurrenceIndicator();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("SequenceType", e0);
|
|
}
|
|
|
|
function try_SequenceType()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 124: // 'empty-sequence'
|
|
lookahead2W(241); // S^WS | EOF | '!=' | '(' | '(:' | ')' | '*' | '*' | '+' | ',' | '-' | ':' | ':=' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '?' | ']' | 'after' |
|
|
// 'allowing' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' |
|
|
// 'collation' | 'contains' | 'count' | 'default' | 'descending' | 'div' | 'else' |
|
|
// 'empty' | 'end' | 'eq' | 'except' | 'external' | 'for' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'in' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'score' | 'sentences' | 'stable' | 'start' | 'times' | 'to' |
|
|
// 'union' | 'where' | 'with' | 'words' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 17532: // 'empty-sequence' '('
|
|
shiftT(124); // 'empty-sequence'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
break;
|
|
default:
|
|
try_ItemType();
|
|
lookahead1W(237); // S^WS | EOF | '!=' | '(:' | ')' | '*' | '*' | '+' | ',' | '-' | ':' | ':=' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '?' | ']' | 'after' | 'allowing' |
|
|
// 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'collation' |
|
|
// 'contains' | 'count' | 'default' | 'descending' | 'div' | 'else' | 'empty' |
|
|
// 'end' | 'eq' | 'except' | 'external' | 'for' | 'ge' | 'group' | 'gt' | 'idiv' |
|
|
// 'in' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' | 'mod' |
|
|
// 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'score' | 'sentences' | 'stable' | 'start' | 'times' | 'to' |
|
|
// 'union' | 'where' | 'with' | 'words' | '{' | '|' | '||' | '|}' | '}'
|
|
switch (l1)
|
|
{
|
|
case 39: // '*'
|
|
case 40: // '+'
|
|
case 64: // '?'
|
|
try_OccurrenceIndicator();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
function parse_OccurrenceIndicator()
|
|
{
|
|
eventHandler.startNonterminal("OccurrenceIndicator", e0);
|
|
switch (l1)
|
|
{
|
|
case 64: // '?'
|
|
shift(64); // '?'
|
|
break;
|
|
case 39: // '*'
|
|
shift(39); // '*'
|
|
break;
|
|
default:
|
|
shift(40); // '+'
|
|
}
|
|
eventHandler.endNonterminal("OccurrenceIndicator", e0);
|
|
}
|
|
|
|
function try_OccurrenceIndicator()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 64: // '?'
|
|
shiftT(64); // '?'
|
|
break;
|
|
case 39: // '*'
|
|
shiftT(39); // '*'
|
|
break;
|
|
default:
|
|
shiftT(40); // '+'
|
|
}
|
|
}
|
|
|
|
function parse_ItemType()
|
|
{
|
|
eventHandler.startNonterminal("ItemType", e0);
|
|
switch (l1)
|
|
{
|
|
case 78: // 'array'
|
|
case 82: // 'attribute'
|
|
case 96: // 'comment'
|
|
case 120: // 'document-node'
|
|
case 121: // 'element'
|
|
case 145: // 'function'
|
|
case 165: // 'item'
|
|
case 167: // 'json-item'
|
|
case 185: // 'namespace-node'
|
|
case 191: // 'node'
|
|
case 194: // 'object'
|
|
case 216: // 'processing-instruction'
|
|
case 226: // 'schema-attribute'
|
|
case 227: // 'schema-element'
|
|
case 244: // 'text'
|
|
lookahead2W(241); // S^WS | EOF | '!=' | '(' | '(:' | ')' | '*' | '*' | '+' | ',' | '-' | ':' | ':=' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '?' | ']' | 'after' |
|
|
// 'allowing' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' |
|
|
// 'collation' | 'contains' | 'count' | 'default' | 'descending' | 'div' | 'else' |
|
|
// 'empty' | 'end' | 'eq' | 'except' | 'external' | 'for' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'in' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'score' | 'sentences' | 'stable' | 'start' | 'times' | 'to' |
|
|
// 'union' | 'where' | 'with' | 'words' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 17486 // 'array' '('
|
|
|| lk == 17575 // 'json-item' '('
|
|
|| lk == 17602) // 'object' '('
|
|
{
|
|
lk = memoized(4, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_KindTest();
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -6;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(4, e0, lk);
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
case 17490: // 'attribute' '('
|
|
case 17504: // 'comment' '('
|
|
case 17528: // 'document-node' '('
|
|
case 17529: // 'element' '('
|
|
case 17593: // 'namespace-node' '('
|
|
case 17599: // 'node' '('
|
|
case 17624: // 'processing-instruction' '('
|
|
case 17634: // 'schema-attribute' '('
|
|
case 17635: // 'schema-element' '('
|
|
case 17652: // 'text' '('
|
|
parse_KindTest();
|
|
break;
|
|
case 17573: // 'item' '('
|
|
shift(165); // 'item'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
break;
|
|
case 32: // '%'
|
|
case 17553: // 'function' '('
|
|
parse_FunctionTest();
|
|
break;
|
|
case 34: // '('
|
|
parse_ParenthesizedItemType();
|
|
break;
|
|
case -6:
|
|
parse_JSONTest();
|
|
break;
|
|
case 242: // 'structured-item'
|
|
parse_StructuredItemTest();
|
|
break;
|
|
default:
|
|
parse_AtomicOrUnionType();
|
|
}
|
|
eventHandler.endNonterminal("ItemType", e0);
|
|
}
|
|
|
|
function try_ItemType()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 78: // 'array'
|
|
case 82: // 'attribute'
|
|
case 96: // 'comment'
|
|
case 120: // 'document-node'
|
|
case 121: // 'element'
|
|
case 145: // 'function'
|
|
case 165: // 'item'
|
|
case 167: // 'json-item'
|
|
case 185: // 'namespace-node'
|
|
case 191: // 'node'
|
|
case 194: // 'object'
|
|
case 216: // 'processing-instruction'
|
|
case 226: // 'schema-attribute'
|
|
case 227: // 'schema-element'
|
|
case 244: // 'text'
|
|
lookahead2W(241); // S^WS | EOF | '!=' | '(' | '(:' | ')' | '*' | '*' | '+' | ',' | '-' | ':' | ':=' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '?' | ']' | 'after' |
|
|
// 'allowing' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' |
|
|
// 'collation' | 'contains' | 'count' | 'default' | 'descending' | 'div' | 'else' |
|
|
// 'empty' | 'end' | 'eq' | 'except' | 'external' | 'for' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'in' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'paragraphs' | 'return' |
|
|
// 'satisfies' | 'score' | 'sentences' | 'stable' | 'start' | 'times' | 'to' |
|
|
// 'union' | 'where' | 'with' | 'words' | '{' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 17486 // 'array' '('
|
|
|| lk == 17575 // 'json-item' '('
|
|
|| lk == 17602) // 'object' '('
|
|
{
|
|
lk = memoized(4, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_KindTest();
|
|
memoize(4, e0A, -1);
|
|
lk = -8;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -6;
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(4, e0A, -6);
|
|
}
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
case 17490: // 'attribute' '('
|
|
case 17504: // 'comment' '('
|
|
case 17528: // 'document-node' '('
|
|
case 17529: // 'element' '('
|
|
case 17593: // 'namespace-node' '('
|
|
case 17599: // 'node' '('
|
|
case 17624: // 'processing-instruction' '('
|
|
case 17634: // 'schema-attribute' '('
|
|
case 17635: // 'schema-element' '('
|
|
case 17652: // 'text' '('
|
|
try_KindTest();
|
|
break;
|
|
case 17573: // 'item' '('
|
|
shiftT(165); // 'item'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
break;
|
|
case 32: // '%'
|
|
case 17553: // 'function' '('
|
|
try_FunctionTest();
|
|
break;
|
|
case 34: // '('
|
|
try_ParenthesizedItemType();
|
|
break;
|
|
case -6:
|
|
try_JSONTest();
|
|
break;
|
|
case 242: // 'structured-item'
|
|
try_StructuredItemTest();
|
|
break;
|
|
case -8:
|
|
break;
|
|
default:
|
|
try_AtomicOrUnionType();
|
|
}
|
|
}
|
|
|
|
function parse_JSONTest()
|
|
{
|
|
eventHandler.startNonterminal("JSONTest", e0);
|
|
switch (l1)
|
|
{
|
|
case 167: // 'json-item'
|
|
parse_JSONItemTest();
|
|
break;
|
|
case 194: // 'object'
|
|
parse_JSONObjectTest();
|
|
break;
|
|
default:
|
|
parse_JSONArrayTest();
|
|
}
|
|
eventHandler.endNonterminal("JSONTest", e0);
|
|
}
|
|
|
|
function try_JSONTest()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 167: // 'json-item'
|
|
try_JSONItemTest();
|
|
break;
|
|
case 194: // 'object'
|
|
try_JSONObjectTest();
|
|
break;
|
|
default:
|
|
try_JSONArrayTest();
|
|
}
|
|
}
|
|
|
|
function parse_StructuredItemTest()
|
|
{
|
|
eventHandler.startNonterminal("StructuredItemTest", e0);
|
|
shift(242); // 'structured-item'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("StructuredItemTest", e0);
|
|
}
|
|
|
|
function try_StructuredItemTest()
|
|
{
|
|
shiftT(242); // 'structured-item'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_JSONItemTest()
|
|
{
|
|
eventHandler.startNonterminal("JSONItemTest", e0);
|
|
shift(167); // 'json-item'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("JSONItemTest", e0);
|
|
}
|
|
|
|
function try_JSONItemTest()
|
|
{
|
|
shiftT(167); // 'json-item'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_JSONObjectTest()
|
|
{
|
|
eventHandler.startNonterminal("JSONObjectTest", e0);
|
|
shift(194); // 'object'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("JSONObjectTest", e0);
|
|
}
|
|
|
|
function try_JSONObjectTest()
|
|
{
|
|
shiftT(194); // 'object'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_JSONArrayTest()
|
|
{
|
|
eventHandler.startNonterminal("JSONArrayTest", e0);
|
|
shift(78); // 'array'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("JSONArrayTest", e0);
|
|
}
|
|
|
|
function try_JSONArrayTest()
|
|
{
|
|
shiftT(78); // 'array'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_AtomicOrUnionType()
|
|
{
|
|
eventHandler.startNonterminal("AtomicOrUnionType", e0);
|
|
parse_EQName();
|
|
eventHandler.endNonterminal("AtomicOrUnionType", e0);
|
|
}
|
|
|
|
function try_AtomicOrUnionType()
|
|
{
|
|
try_EQName();
|
|
}
|
|
|
|
function parse_KindTest()
|
|
{
|
|
eventHandler.startNonterminal("KindTest", e0);
|
|
switch (l1)
|
|
{
|
|
case 120: // 'document-node'
|
|
parse_DocumentTest();
|
|
break;
|
|
case 121: // 'element'
|
|
parse_ElementTest();
|
|
break;
|
|
case 82: // 'attribute'
|
|
parse_AttributeTest();
|
|
break;
|
|
case 227: // 'schema-element'
|
|
parse_SchemaElementTest();
|
|
break;
|
|
case 226: // 'schema-attribute'
|
|
parse_SchemaAttributeTest();
|
|
break;
|
|
case 216: // 'processing-instruction'
|
|
parse_PITest();
|
|
break;
|
|
case 96: // 'comment'
|
|
parse_CommentTest();
|
|
break;
|
|
case 244: // 'text'
|
|
parse_TextTest();
|
|
break;
|
|
case 185: // 'namespace-node'
|
|
parse_NamespaceNodeTest();
|
|
break;
|
|
case 191: // 'node'
|
|
parse_AnyKindTest();
|
|
break;
|
|
default:
|
|
parse_JSONTest();
|
|
}
|
|
eventHandler.endNonterminal("KindTest", e0);
|
|
}
|
|
|
|
function try_KindTest()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 120: // 'document-node'
|
|
try_DocumentTest();
|
|
break;
|
|
case 121: // 'element'
|
|
try_ElementTest();
|
|
break;
|
|
case 82: // 'attribute'
|
|
try_AttributeTest();
|
|
break;
|
|
case 227: // 'schema-element'
|
|
try_SchemaElementTest();
|
|
break;
|
|
case 226: // 'schema-attribute'
|
|
try_SchemaAttributeTest();
|
|
break;
|
|
case 216: // 'processing-instruction'
|
|
try_PITest();
|
|
break;
|
|
case 96: // 'comment'
|
|
try_CommentTest();
|
|
break;
|
|
case 244: // 'text'
|
|
try_TextTest();
|
|
break;
|
|
case 185: // 'namespace-node'
|
|
try_NamespaceNodeTest();
|
|
break;
|
|
case 191: // 'node'
|
|
try_AnyKindTest();
|
|
break;
|
|
default:
|
|
try_JSONTest();
|
|
}
|
|
}
|
|
|
|
function parse_AnyKindTest()
|
|
{
|
|
eventHandler.startNonterminal("AnyKindTest", e0);
|
|
shift(191); // 'node'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("AnyKindTest", e0);
|
|
}
|
|
|
|
function try_AnyKindTest()
|
|
{
|
|
shiftT(191); // 'node'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_DocumentTest()
|
|
{
|
|
eventHandler.startNonterminal("DocumentTest", e0);
|
|
shift(120); // 'document-node'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(144); // S^WS | '(:' | ')' | 'element' | 'schema-element'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 121: // 'element'
|
|
whitespace();
|
|
parse_ElementTest();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_SchemaElementTest();
|
|
}
|
|
}
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("DocumentTest", e0);
|
|
}
|
|
|
|
function try_DocumentTest()
|
|
{
|
|
shiftT(120); // 'document-node'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(144); // S^WS | '(:' | ')' | 'element' | 'schema-element'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 121: // 'element'
|
|
try_ElementTest();
|
|
break;
|
|
default:
|
|
try_SchemaElementTest();
|
|
}
|
|
}
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_TextTest()
|
|
{
|
|
eventHandler.startNonterminal("TextTest", e0);
|
|
shift(244); // 'text'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("TextTest", e0);
|
|
}
|
|
|
|
function try_TextTest()
|
|
{
|
|
shiftT(244); // 'text'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_CommentTest()
|
|
{
|
|
eventHandler.startNonterminal("CommentTest", e0);
|
|
shift(96); // 'comment'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("CommentTest", e0);
|
|
}
|
|
|
|
function try_CommentTest()
|
|
{
|
|
shiftT(96); // 'comment'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_NamespaceNodeTest()
|
|
{
|
|
eventHandler.startNonterminal("NamespaceNodeTest", e0);
|
|
shift(185); // 'namespace-node'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("NamespaceNodeTest", e0);
|
|
}
|
|
|
|
function try_NamespaceNodeTest()
|
|
{
|
|
shiftT(185); // 'namespace-node'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_PITest()
|
|
{
|
|
eventHandler.startNonterminal("PITest", e0);
|
|
shift(216); // 'processing-instruction'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(251); // StringLiteral | NCName^Token | S^WS | '(:' | ')' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'last' |
|
|
// 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 11: // StringLiteral
|
|
shift(11); // StringLiteral
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_NCName();
|
|
}
|
|
}
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("PITest", e0);
|
|
}
|
|
|
|
function try_PITest()
|
|
{
|
|
shiftT(216); // 'processing-instruction'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(251); // StringLiteral | NCName^Token | S^WS | '(:' | ')' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'last' |
|
|
// 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 11: // StringLiteral
|
|
shiftT(11); // StringLiteral
|
|
break;
|
|
default:
|
|
try_NCName();
|
|
}
|
|
}
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_AttributeTest()
|
|
{
|
|
eventHandler.startNonterminal("AttributeTest", e0);
|
|
shift(82); // 'attribute'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(258); // EQName^Token | S^WS | '(:' | ')' | '*' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
whitespace();
|
|
parse_AttribNameOrWildcard();
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 == 41) // ','
|
|
{
|
|
shift(41); // ','
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_TypeName();
|
|
}
|
|
}
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("AttributeTest", e0);
|
|
}
|
|
|
|
function try_AttributeTest()
|
|
{
|
|
shiftT(82); // 'attribute'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(258); // EQName^Token | S^WS | '(:' | ')' | '*' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
try_AttribNameOrWildcard();
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 == 41) // ','
|
|
{
|
|
shiftT(41); // ','
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_TypeName();
|
|
}
|
|
}
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_AttribNameOrWildcard()
|
|
{
|
|
eventHandler.startNonterminal("AttribNameOrWildcard", e0);
|
|
switch (l1)
|
|
{
|
|
case 38: // '*'
|
|
shift(38); // '*'
|
|
break;
|
|
default:
|
|
parse_AttributeName();
|
|
}
|
|
eventHandler.endNonterminal("AttribNameOrWildcard", e0);
|
|
}
|
|
|
|
function try_AttribNameOrWildcard()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 38: // '*'
|
|
shiftT(38); // '*'
|
|
break;
|
|
default:
|
|
try_AttributeName();
|
|
}
|
|
}
|
|
|
|
function parse_SchemaAttributeTest()
|
|
{
|
|
eventHandler.startNonterminal("SchemaAttributeTest", e0);
|
|
shift(226); // 'schema-attribute'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_AttributeDeclaration();
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("SchemaAttributeTest", e0);
|
|
}
|
|
|
|
function try_SchemaAttributeTest()
|
|
{
|
|
shiftT(226); // 'schema-attribute'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_AttributeDeclaration();
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_AttributeDeclaration()
|
|
{
|
|
eventHandler.startNonterminal("AttributeDeclaration", e0);
|
|
parse_AttributeName();
|
|
eventHandler.endNonterminal("AttributeDeclaration", e0);
|
|
}
|
|
|
|
function try_AttributeDeclaration()
|
|
{
|
|
try_AttributeName();
|
|
}
|
|
|
|
function parse_ElementTest()
|
|
{
|
|
eventHandler.startNonterminal("ElementTest", e0);
|
|
shift(121); // 'element'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(258); // EQName^Token | S^WS | '(:' | ')' | '*' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
whitespace();
|
|
parse_ElementNameOrWildcard();
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 == 41) // ','
|
|
{
|
|
shift(41); // ','
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_TypeName();
|
|
lookahead1W(102); // S^WS | '(:' | ')' | '?'
|
|
if (l1 == 64) // '?'
|
|
{
|
|
shift(64); // '?'
|
|
}
|
|
}
|
|
}
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("ElementTest", e0);
|
|
}
|
|
|
|
function try_ElementTest()
|
|
{
|
|
shiftT(121); // 'element'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(258); // EQName^Token | S^WS | '(:' | ')' | '*' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
try_ElementNameOrWildcard();
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 == 41) // ','
|
|
{
|
|
shiftT(41); // ','
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_TypeName();
|
|
lookahead1W(102); // S^WS | '(:' | ')' | '?'
|
|
if (l1 == 64) // '?'
|
|
{
|
|
shiftT(64); // '?'
|
|
}
|
|
}
|
|
}
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_ElementNameOrWildcard()
|
|
{
|
|
eventHandler.startNonterminal("ElementNameOrWildcard", e0);
|
|
switch (l1)
|
|
{
|
|
case 38: // '*'
|
|
shift(38); // '*'
|
|
break;
|
|
default:
|
|
parse_ElementName();
|
|
}
|
|
eventHandler.endNonterminal("ElementNameOrWildcard", e0);
|
|
}
|
|
|
|
function try_ElementNameOrWildcard()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 38: // '*'
|
|
shiftT(38); // '*'
|
|
break;
|
|
default:
|
|
try_ElementName();
|
|
}
|
|
}
|
|
|
|
function parse_SchemaElementTest()
|
|
{
|
|
eventHandler.startNonterminal("SchemaElementTest", e0);
|
|
shift(227); // 'schema-element'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_ElementDeclaration();
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("SchemaElementTest", e0);
|
|
}
|
|
|
|
function try_SchemaElementTest()
|
|
{
|
|
shiftT(227); // 'schema-element'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_ElementDeclaration();
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_ElementDeclaration()
|
|
{
|
|
eventHandler.startNonterminal("ElementDeclaration", e0);
|
|
parse_ElementName();
|
|
eventHandler.endNonterminal("ElementDeclaration", e0);
|
|
}
|
|
|
|
function try_ElementDeclaration()
|
|
{
|
|
try_ElementName();
|
|
}
|
|
|
|
function parse_AttributeName()
|
|
{
|
|
eventHandler.startNonterminal("AttributeName", e0);
|
|
parse_EQName();
|
|
eventHandler.endNonterminal("AttributeName", e0);
|
|
}
|
|
|
|
function try_AttributeName()
|
|
{
|
|
try_EQName();
|
|
}
|
|
|
|
function parse_ElementName()
|
|
{
|
|
eventHandler.startNonterminal("ElementName", e0);
|
|
parse_EQName();
|
|
eventHandler.endNonterminal("ElementName", e0);
|
|
}
|
|
|
|
function try_ElementName()
|
|
{
|
|
try_EQName();
|
|
}
|
|
|
|
function parse_SimpleTypeName()
|
|
{
|
|
eventHandler.startNonterminal("SimpleTypeName", e0);
|
|
parse_TypeName();
|
|
eventHandler.endNonterminal("SimpleTypeName", e0);
|
|
}
|
|
|
|
function try_SimpleTypeName()
|
|
{
|
|
try_TypeName();
|
|
}
|
|
|
|
function parse_TypeName()
|
|
{
|
|
eventHandler.startNonterminal("TypeName", e0);
|
|
parse_EQName();
|
|
eventHandler.endNonterminal("TypeName", e0);
|
|
}
|
|
|
|
function try_TypeName()
|
|
{
|
|
try_EQName();
|
|
}
|
|
|
|
function parse_FunctionTest()
|
|
{
|
|
eventHandler.startNonterminal("FunctionTest", e0);
|
|
for (;;)
|
|
{
|
|
lookahead1W(97); // S^WS | '%' | '(:' | 'function'
|
|
if (l1 != 32) // '%'
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_Annotation();
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 145: // 'function'
|
|
lookahead2W(22); // S^WS | '(' | '(:'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
lk = memoized(5, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_AnyFunctionTest();
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(5, e0, lk);
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
whitespace();
|
|
parse_AnyFunctionTest();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_TypedFunctionTest();
|
|
}
|
|
eventHandler.endNonterminal("FunctionTest", e0);
|
|
}
|
|
|
|
function try_FunctionTest()
|
|
{
|
|
for (;;)
|
|
{
|
|
lookahead1W(97); // S^WS | '%' | '(:' | 'function'
|
|
if (l1 != 32) // '%'
|
|
{
|
|
break;
|
|
}
|
|
try_Annotation();
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 145: // 'function'
|
|
lookahead2W(22); // S^WS | '(' | '(:'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
lk = memoized(5, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_AnyFunctionTest();
|
|
memoize(5, e0A, -1);
|
|
lk = -3;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(5, e0A, -2);
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
try_AnyFunctionTest();
|
|
break;
|
|
case -3:
|
|
break;
|
|
default:
|
|
try_TypedFunctionTest();
|
|
}
|
|
}
|
|
|
|
function parse_AnyFunctionTest()
|
|
{
|
|
eventHandler.startNonterminal("AnyFunctionTest", e0);
|
|
shift(145); // 'function'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(24); // S^WS | '(:' | '*'
|
|
shift(38); // '*'
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("AnyFunctionTest", e0);
|
|
}
|
|
|
|
function try_AnyFunctionTest()
|
|
{
|
|
shiftT(145); // 'function'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(24); // S^WS | '(:' | '*'
|
|
shiftT(38); // '*'
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_TypedFunctionTest()
|
|
{
|
|
eventHandler.startNonterminal("TypedFunctionTest", e0);
|
|
shift(145); // 'function'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(261); // EQName^Token | S^WS | '%' | '(' | '(:' | ')' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
whitespace();
|
|
parse_SequenceType();
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_SequenceType();
|
|
}
|
|
}
|
|
shift(37); // ')'
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shift(79); // 'as'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_SequenceType();
|
|
eventHandler.endNonterminal("TypedFunctionTest", e0);
|
|
}
|
|
|
|
function try_TypedFunctionTest()
|
|
{
|
|
shiftT(145); // 'function'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(261); // EQName^Token | S^WS | '%' | '(' | '(:' | ')' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
if (l1 != 37) // ')'
|
|
{
|
|
try_SequenceType();
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
try_SequenceType();
|
|
}
|
|
}
|
|
shiftT(37); // ')'
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shiftT(79); // 'as'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
try_SequenceType();
|
|
}
|
|
|
|
function parse_ParenthesizedItemType()
|
|
{
|
|
eventHandler.startNonterminal("ParenthesizedItemType", e0);
|
|
shift(34); // '('
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_ItemType();
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shift(37); // ')'
|
|
eventHandler.endNonterminal("ParenthesizedItemType", e0);
|
|
}
|
|
|
|
function try_ParenthesizedItemType()
|
|
{
|
|
shiftT(34); // '('
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
try_ItemType();
|
|
lookahead1W(23); // S^WS | '(:' | ')'
|
|
shiftT(37); // ')'
|
|
}
|
|
|
|
function parse_RevalidationDecl()
|
|
{
|
|
eventHandler.startNonterminal("RevalidationDecl", e0);
|
|
shift(108); // 'declare'
|
|
lookahead1W(72); // S^WS | '(:' | 'revalidation'
|
|
shift(222); // 'revalidation'
|
|
lookahead1W(152); // S^WS | '(:' | 'lax' | 'skip' | 'strict'
|
|
switch (l1)
|
|
{
|
|
case 240: // 'strict'
|
|
shift(240); // 'strict'
|
|
break;
|
|
case 171: // 'lax'
|
|
shift(171); // 'lax'
|
|
break;
|
|
default:
|
|
shift(233); // 'skip'
|
|
}
|
|
eventHandler.endNonterminal("RevalidationDecl", e0);
|
|
}
|
|
|
|
function parse_InsertExprTargetChoice()
|
|
{
|
|
eventHandler.startNonterminal("InsertExprTargetChoice", e0);
|
|
switch (l1)
|
|
{
|
|
case 70: // 'after'
|
|
shift(70); // 'after'
|
|
break;
|
|
case 84: // 'before'
|
|
shift(84); // 'before'
|
|
break;
|
|
default:
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
shift(79); // 'as'
|
|
lookahead1W(119); // S^WS | '(:' | 'first' | 'last'
|
|
switch (l1)
|
|
{
|
|
case 134: // 'first'
|
|
shift(134); // 'first'
|
|
break;
|
|
default:
|
|
shift(170); // 'last'
|
|
}
|
|
}
|
|
lookahead1W(54); // S^WS | '(:' | 'into'
|
|
shift(163); // 'into'
|
|
}
|
|
eventHandler.endNonterminal("InsertExprTargetChoice", e0);
|
|
}
|
|
|
|
function try_InsertExprTargetChoice()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 70: // 'after'
|
|
shiftT(70); // 'after'
|
|
break;
|
|
case 84: // 'before'
|
|
shiftT(84); // 'before'
|
|
break;
|
|
default:
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
shiftT(79); // 'as'
|
|
lookahead1W(119); // S^WS | '(:' | 'first' | 'last'
|
|
switch (l1)
|
|
{
|
|
case 134: // 'first'
|
|
shiftT(134); // 'first'
|
|
break;
|
|
default:
|
|
shiftT(170); // 'last'
|
|
}
|
|
}
|
|
lookahead1W(54); // S^WS | '(:' | 'into'
|
|
shiftT(163); // 'into'
|
|
}
|
|
}
|
|
|
|
function parse_InsertExpr()
|
|
{
|
|
eventHandler.startNonterminal("InsertExpr", e0);
|
|
shift(159); // 'insert'
|
|
lookahead1W(129); // S^WS | '(:' | 'node' | 'nodes'
|
|
switch (l1)
|
|
{
|
|
case 191: // 'node'
|
|
shift(191); // 'node'
|
|
break;
|
|
default:
|
|
shift(192); // 'nodes'
|
|
}
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_SourceExpr();
|
|
whitespace();
|
|
parse_InsertExprTargetChoice();
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_TargetExpr();
|
|
eventHandler.endNonterminal("InsertExpr", e0);
|
|
}
|
|
|
|
function try_InsertExpr()
|
|
{
|
|
shiftT(159); // 'insert'
|
|
lookahead1W(129); // S^WS | '(:' | 'node' | 'nodes'
|
|
switch (l1)
|
|
{
|
|
case 191: // 'node'
|
|
shiftT(191); // 'node'
|
|
break;
|
|
default:
|
|
shiftT(192); // 'nodes'
|
|
}
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_SourceExpr();
|
|
try_InsertExprTargetChoice();
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_TargetExpr();
|
|
}
|
|
|
|
function parse_DeleteExpr()
|
|
{
|
|
eventHandler.startNonterminal("DeleteExpr", e0);
|
|
shift(110); // 'delete'
|
|
lookahead1W(129); // S^WS | '(:' | 'node' | 'nodes'
|
|
switch (l1)
|
|
{
|
|
case 191: // 'node'
|
|
shift(191); // 'node'
|
|
break;
|
|
default:
|
|
shift(192); // 'nodes'
|
|
}
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_TargetExpr();
|
|
eventHandler.endNonterminal("DeleteExpr", e0);
|
|
}
|
|
|
|
function try_DeleteExpr()
|
|
{
|
|
shiftT(110); // 'delete'
|
|
lookahead1W(129); // S^WS | '(:' | 'node' | 'nodes'
|
|
switch (l1)
|
|
{
|
|
case 191: // 'node'
|
|
shiftT(191); // 'node'
|
|
break;
|
|
default:
|
|
shiftT(192); // 'nodes'
|
|
}
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_TargetExpr();
|
|
}
|
|
|
|
function parse_ReplaceExpr()
|
|
{
|
|
eventHandler.startNonterminal("ReplaceExpr", e0);
|
|
shift(219); // 'replace'
|
|
lookahead1W(130); // S^WS | '(:' | 'node' | 'value'
|
|
if (l1 == 261) // 'value'
|
|
{
|
|
shift(261); // 'value'
|
|
lookahead1W(64); // S^WS | '(:' | 'of'
|
|
shift(196); // 'of'
|
|
}
|
|
lookahead1W(62); // S^WS | '(:' | 'node'
|
|
shift(191); // 'node'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_TargetExpr();
|
|
shift(270); // 'with'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("ReplaceExpr", e0);
|
|
}
|
|
|
|
function try_ReplaceExpr()
|
|
{
|
|
shiftT(219); // 'replace'
|
|
lookahead1W(130); // S^WS | '(:' | 'node' | 'value'
|
|
if (l1 == 261) // 'value'
|
|
{
|
|
shiftT(261); // 'value'
|
|
lookahead1W(64); // S^WS | '(:' | 'of'
|
|
shiftT(196); // 'of'
|
|
}
|
|
lookahead1W(62); // S^WS | '(:' | 'node'
|
|
shiftT(191); // 'node'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_TargetExpr();
|
|
shiftT(270); // 'with'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_RenameExpr()
|
|
{
|
|
eventHandler.startNonterminal("RenameExpr", e0);
|
|
shift(218); // 'rename'
|
|
lookahead1W(62); // S^WS | '(:' | 'node'
|
|
shift(191); // 'node'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_TargetExpr();
|
|
shift(79); // 'as'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_NewNameExpr();
|
|
eventHandler.endNonterminal("RenameExpr", e0);
|
|
}
|
|
|
|
function try_RenameExpr()
|
|
{
|
|
shiftT(218); // 'rename'
|
|
lookahead1W(62); // S^WS | '(:' | 'node'
|
|
shiftT(191); // 'node'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_TargetExpr();
|
|
shiftT(79); // 'as'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_NewNameExpr();
|
|
}
|
|
|
|
function parse_SourceExpr()
|
|
{
|
|
eventHandler.startNonterminal("SourceExpr", e0);
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("SourceExpr", e0);
|
|
}
|
|
|
|
function try_SourceExpr()
|
|
{
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_TargetExpr()
|
|
{
|
|
eventHandler.startNonterminal("TargetExpr", e0);
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("TargetExpr", e0);
|
|
}
|
|
|
|
function try_TargetExpr()
|
|
{
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_NewNameExpr()
|
|
{
|
|
eventHandler.startNonterminal("NewNameExpr", e0);
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("NewNameExpr", e0);
|
|
}
|
|
|
|
function try_NewNameExpr()
|
|
{
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_TransformExpr()
|
|
{
|
|
eventHandler.startNonterminal("TransformExpr", e0);
|
|
shift(103); // 'copy'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(27); // S^WS | '(:' | ':='
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(27); // S^WS | '(:' | ':='
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
}
|
|
shift(181); // 'modify'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("TransformExpr", e0);
|
|
}
|
|
|
|
function try_TransformExpr()
|
|
{
|
|
shiftT(103); // 'copy'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(27); // S^WS | '(:' | ':='
|
|
shiftT(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(27); // S^WS | '(:' | ':='
|
|
shiftT(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
shiftT(181); // 'modify'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_FTSelection()
|
|
{
|
|
eventHandler.startNonterminal("FTSelection", e0);
|
|
parse_FTOr();
|
|
for (;;)
|
|
{
|
|
lookahead1W(211); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' | 'modify' | 'ne' |
|
|
// 'only' | 'or' | 'order' | 'ordered' | 'return' | 'same' | 'satisfies' |
|
|
// 'stable' | 'start' | 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
lookahead2W(151); // S^WS | '(:' | 'end' | 'position' | 'start'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk != 115 // 'different'
|
|
&& lk != 117 // 'distance'
|
|
&& lk != 127 // 'entire'
|
|
&& lk != 202 // 'ordered'
|
|
&& lk != 223 // 'same'
|
|
&& lk != 269 // 'window'
|
|
&& lk != 64593 // 'at' 'end'
|
|
&& lk != 121425) // 'at' 'start'
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_FTPosFilter();
|
|
}
|
|
eventHandler.endNonterminal("FTSelection", e0);
|
|
}
|
|
|
|
function try_FTSelection()
|
|
{
|
|
try_FTOr();
|
|
for (;;)
|
|
{
|
|
lookahead1W(211); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' | 'modify' | 'ne' |
|
|
// 'only' | 'or' | 'order' | 'ordered' | 'return' | 'same' | 'satisfies' |
|
|
// 'stable' | 'start' | 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
lookahead2W(151); // S^WS | '(:' | 'end' | 'position' | 'start'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk != 115 // 'different'
|
|
&& lk != 117 // 'distance'
|
|
&& lk != 127 // 'entire'
|
|
&& lk != 202 // 'ordered'
|
|
&& lk != 223 // 'same'
|
|
&& lk != 269 // 'window'
|
|
&& lk != 64593 // 'at' 'end'
|
|
&& lk != 121425) // 'at' 'start'
|
|
{
|
|
break;
|
|
}
|
|
try_FTPosFilter();
|
|
}
|
|
}
|
|
|
|
function parse_FTWeight()
|
|
{
|
|
eventHandler.startNonterminal("FTWeight", e0);
|
|
shift(264); // 'weight'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("FTWeight", e0);
|
|
}
|
|
|
|
function try_FTWeight()
|
|
{
|
|
shiftT(264); // 'weight'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_FTOr()
|
|
{
|
|
eventHandler.startNonterminal("FTOr", e0);
|
|
parse_FTAnd();
|
|
for (;;)
|
|
{
|
|
if (l1 != 144) // 'ftor'
|
|
{
|
|
break;
|
|
}
|
|
shift(144); // 'ftor'
|
|
lookahead1W(162); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{'
|
|
whitespace();
|
|
parse_FTAnd();
|
|
}
|
|
eventHandler.endNonterminal("FTOr", e0);
|
|
}
|
|
|
|
function try_FTOr()
|
|
{
|
|
try_FTAnd();
|
|
for (;;)
|
|
{
|
|
if (l1 != 144) // 'ftor'
|
|
{
|
|
break;
|
|
}
|
|
shiftT(144); // 'ftor'
|
|
lookahead1W(162); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{'
|
|
try_FTAnd();
|
|
}
|
|
}
|
|
|
|
function parse_FTAnd()
|
|
{
|
|
eventHandler.startNonterminal("FTAnd", e0);
|
|
parse_FTMildNot();
|
|
for (;;)
|
|
{
|
|
if (l1 != 142) // 'ftand'
|
|
{
|
|
break;
|
|
}
|
|
shift(142); // 'ftand'
|
|
lookahead1W(162); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{'
|
|
whitespace();
|
|
parse_FTMildNot();
|
|
}
|
|
eventHandler.endNonterminal("FTAnd", e0);
|
|
}
|
|
|
|
function try_FTAnd()
|
|
{
|
|
try_FTMildNot();
|
|
for (;;)
|
|
{
|
|
if (l1 != 142) // 'ftand'
|
|
{
|
|
break;
|
|
}
|
|
shiftT(142); // 'ftand'
|
|
lookahead1W(162); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{'
|
|
try_FTMildNot();
|
|
}
|
|
}
|
|
|
|
function parse_FTMildNot()
|
|
{
|
|
eventHandler.startNonterminal("FTMildNot", e0);
|
|
parse_FTUnaryNot();
|
|
for (;;)
|
|
{
|
|
lookahead1W(212); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' | 'ordered' | 'return' |
|
|
// 'same' | 'satisfies' | 'stable' | 'start' | 'where' | 'window' | 'with' |
|
|
// 'without' | '|}' | '}'
|
|
if (l1 != 193) // 'not'
|
|
{
|
|
break;
|
|
}
|
|
shift(193); // 'not'
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shift(154); // 'in'
|
|
lookahead1W(162); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{'
|
|
whitespace();
|
|
parse_FTUnaryNot();
|
|
}
|
|
eventHandler.endNonterminal("FTMildNot", e0);
|
|
}
|
|
|
|
function try_FTMildNot()
|
|
{
|
|
try_FTUnaryNot();
|
|
for (;;)
|
|
{
|
|
lookahead1W(212); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' | 'ordered' | 'return' |
|
|
// 'same' | 'satisfies' | 'stable' | 'start' | 'where' | 'window' | 'with' |
|
|
// 'without' | '|}' | '}'
|
|
if (l1 != 193) // 'not'
|
|
{
|
|
break;
|
|
}
|
|
shiftT(193); // 'not'
|
|
lookahead1W(53); // S^WS | '(:' | 'in'
|
|
shiftT(154); // 'in'
|
|
lookahead1W(162); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{'
|
|
try_FTUnaryNot();
|
|
}
|
|
}
|
|
|
|
function parse_FTUnaryNot()
|
|
{
|
|
eventHandler.startNonterminal("FTUnaryNot", e0);
|
|
if (l1 == 143) // 'ftnot'
|
|
{
|
|
shift(143); // 'ftnot'
|
|
}
|
|
lookahead1W(155); // StringLiteral | S^WS | '(' | '(#' | '(:' | '{'
|
|
whitespace();
|
|
parse_FTPrimaryWithOptions();
|
|
eventHandler.endNonterminal("FTUnaryNot", e0);
|
|
}
|
|
|
|
function try_FTUnaryNot()
|
|
{
|
|
if (l1 == 143) // 'ftnot'
|
|
{
|
|
shiftT(143); // 'ftnot'
|
|
}
|
|
lookahead1W(155); // StringLiteral | S^WS | '(' | '(#' | '(:' | '{'
|
|
try_FTPrimaryWithOptions();
|
|
}
|
|
|
|
function parse_FTPrimaryWithOptions()
|
|
{
|
|
eventHandler.startNonterminal("FTPrimaryWithOptions", e0);
|
|
parse_FTPrimary();
|
|
lookahead1W(214); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' | 'ordered' | 'return' |
|
|
// 'same' | 'satisfies' | 'stable' | 'start' | 'using' | 'weight' | 'where' |
|
|
// 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 == 259) // 'using'
|
|
{
|
|
whitespace();
|
|
parse_FTMatchOptions();
|
|
}
|
|
if (l1 == 264) // 'weight'
|
|
{
|
|
whitespace();
|
|
parse_FTWeight();
|
|
}
|
|
eventHandler.endNonterminal("FTPrimaryWithOptions", e0);
|
|
}
|
|
|
|
function try_FTPrimaryWithOptions()
|
|
{
|
|
try_FTPrimary();
|
|
lookahead1W(214); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' | 'ordered' | 'return' |
|
|
// 'same' | 'satisfies' | 'stable' | 'start' | 'using' | 'weight' | 'where' |
|
|
// 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 == 259) // 'using'
|
|
{
|
|
try_FTMatchOptions();
|
|
}
|
|
if (l1 == 264) // 'weight'
|
|
{
|
|
try_FTWeight();
|
|
}
|
|
}
|
|
|
|
function parse_FTPrimary()
|
|
{
|
|
eventHandler.startNonterminal("FTPrimary", e0);
|
|
switch (l1)
|
|
{
|
|
case 34: // '('
|
|
shift(34); // '('
|
|
lookahead1W(162); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{'
|
|
whitespace();
|
|
parse_FTSelection();
|
|
shift(37); // ')'
|
|
break;
|
|
case 35: // '(#'
|
|
parse_FTExtensionSelection();
|
|
break;
|
|
default:
|
|
parse_FTWords();
|
|
lookahead1W(215); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'occurs' | 'only' | 'or' | 'order' | 'ordered' |
|
|
// 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'using' | 'weight' |
|
|
// 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 == 195) // 'occurs'
|
|
{
|
|
whitespace();
|
|
parse_FTTimes();
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("FTPrimary", e0);
|
|
}
|
|
|
|
function try_FTPrimary()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 34: // '('
|
|
shiftT(34); // '('
|
|
lookahead1W(162); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{'
|
|
try_FTSelection();
|
|
shiftT(37); // ')'
|
|
break;
|
|
case 35: // '(#'
|
|
try_FTExtensionSelection();
|
|
break;
|
|
default:
|
|
try_FTWords();
|
|
lookahead1W(215); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'occurs' | 'only' | 'or' | 'order' | 'ordered' |
|
|
// 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'using' | 'weight' |
|
|
// 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 == 195) // 'occurs'
|
|
{
|
|
try_FTTimes();
|
|
}
|
|
}
|
|
}
|
|
|
|
function parse_FTWords()
|
|
{
|
|
eventHandler.startNonterminal("FTWords", e0);
|
|
parse_FTWordsValue();
|
|
lookahead1W(221); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'all' | 'and' | 'any' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'occurs' | 'only' | 'or' | 'order' | 'ordered' |
|
|
// 'phrase' | 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'using' |
|
|
// 'weight' | 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 == 71 // 'all'
|
|
|| l1 == 76 // 'any'
|
|
|| l1 == 210) // 'phrase'
|
|
{
|
|
whitespace();
|
|
parse_FTAnyallOption();
|
|
}
|
|
eventHandler.endNonterminal("FTWords", e0);
|
|
}
|
|
|
|
function try_FTWords()
|
|
{
|
|
try_FTWordsValue();
|
|
lookahead1W(221); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'all' | 'and' | 'any' | 'as' | 'ascending' |
|
|
// 'at' | 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'occurs' | 'only' | 'or' | 'order' | 'ordered' |
|
|
// 'phrase' | 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'using' |
|
|
// 'weight' | 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 == 71 // 'all'
|
|
|| l1 == 76 // 'any'
|
|
|| l1 == 210) // 'phrase'
|
|
{
|
|
try_FTAnyallOption();
|
|
}
|
|
}
|
|
|
|
function parse_FTWordsValue()
|
|
{
|
|
eventHandler.startNonterminal("FTWordsValue", e0);
|
|
switch (l1)
|
|
{
|
|
case 11: // StringLiteral
|
|
shift(11); // StringLiteral
|
|
break;
|
|
default:
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(282); // '}'
|
|
}
|
|
eventHandler.endNonterminal("FTWordsValue", e0);
|
|
}
|
|
|
|
function try_FTWordsValue()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 11: // StringLiteral
|
|
shiftT(11); // StringLiteral
|
|
break;
|
|
default:
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(282); // '}'
|
|
}
|
|
}
|
|
|
|
function parse_FTExtensionSelection()
|
|
{
|
|
eventHandler.startNonterminal("FTExtensionSelection", e0);
|
|
for (;;)
|
|
{
|
|
whitespace();
|
|
parse_Pragma();
|
|
lookahead1W(100); // S^WS | '(#' | '(:' | '{'
|
|
if (l1 != 35) // '(#'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shift(276); // '{'
|
|
lookahead1W(166); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{' | '}'
|
|
if (l1 != 282) // '}'
|
|
{
|
|
whitespace();
|
|
parse_FTSelection();
|
|
}
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("FTExtensionSelection", e0);
|
|
}
|
|
|
|
function try_FTExtensionSelection()
|
|
{
|
|
for (;;)
|
|
{
|
|
try_Pragma();
|
|
lookahead1W(100); // S^WS | '(#' | '(:' | '{'
|
|
if (l1 != 35) // '(#'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shiftT(276); // '{'
|
|
lookahead1W(166); // StringLiteral | S^WS | '(' | '(#' | '(:' | 'ftnot' | '{' | '}'
|
|
if (l1 != 282) // '}'
|
|
{
|
|
try_FTSelection();
|
|
}
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_FTAnyallOption()
|
|
{
|
|
eventHandler.startNonterminal("FTAnyallOption", e0);
|
|
switch (l1)
|
|
{
|
|
case 76: // 'any'
|
|
shift(76); // 'any'
|
|
lookahead1W(218); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'occurs' | 'only' | 'or' | 'order' | 'ordered' |
|
|
// 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'using' | 'weight' |
|
|
// 'where' | 'window' | 'with' | 'without' | 'word' | '|}' | '}'
|
|
if (l1 == 272) // 'word'
|
|
{
|
|
shift(272); // 'word'
|
|
}
|
|
break;
|
|
case 71: // 'all'
|
|
shift(71); // 'all'
|
|
lookahead1W(219); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'occurs' | 'only' | 'or' | 'order' | 'ordered' |
|
|
// 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'using' | 'weight' |
|
|
// 'where' | 'window' | 'with' | 'without' | 'words' | '|}' | '}'
|
|
if (l1 == 273) // 'words'
|
|
{
|
|
shift(273); // 'words'
|
|
}
|
|
break;
|
|
default:
|
|
shift(210); // 'phrase'
|
|
}
|
|
eventHandler.endNonterminal("FTAnyallOption", e0);
|
|
}
|
|
|
|
function try_FTAnyallOption()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 76: // 'any'
|
|
shiftT(76); // 'any'
|
|
lookahead1W(218); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'occurs' | 'only' | 'or' | 'order' | 'ordered' |
|
|
// 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'using' | 'weight' |
|
|
// 'where' | 'window' | 'with' | 'without' | 'word' | '|}' | '}'
|
|
if (l1 == 272) // 'word'
|
|
{
|
|
shiftT(272); // 'word'
|
|
}
|
|
break;
|
|
case 71: // 'all'
|
|
shiftT(71); // 'all'
|
|
lookahead1W(219); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'occurs' | 'only' | 'or' | 'order' | 'ordered' |
|
|
// 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'using' | 'weight' |
|
|
// 'where' | 'window' | 'with' | 'without' | 'words' | '|}' | '}'
|
|
if (l1 == 273) // 'words'
|
|
{
|
|
shiftT(273); // 'words'
|
|
}
|
|
break;
|
|
default:
|
|
shiftT(210); // 'phrase'
|
|
}
|
|
}
|
|
|
|
function parse_FTTimes()
|
|
{
|
|
eventHandler.startNonterminal("FTTimes", e0);
|
|
shift(195); // 'occurs'
|
|
lookahead1W(149); // S^WS | '(:' | 'at' | 'exactly' | 'from'
|
|
whitespace();
|
|
parse_FTRange();
|
|
shift(247); // 'times'
|
|
eventHandler.endNonterminal("FTTimes", e0);
|
|
}
|
|
|
|
function try_FTTimes()
|
|
{
|
|
shiftT(195); // 'occurs'
|
|
lookahead1W(149); // S^WS | '(:' | 'at' | 'exactly' | 'from'
|
|
try_FTRange();
|
|
shiftT(247); // 'times'
|
|
}
|
|
|
|
function parse_FTRange()
|
|
{
|
|
eventHandler.startNonterminal("FTRange", e0);
|
|
switch (l1)
|
|
{
|
|
case 130: // 'exactly'
|
|
shift(130); // 'exactly'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_AdditiveExpr();
|
|
break;
|
|
case 81: // 'at'
|
|
shift(81); // 'at'
|
|
lookahead1W(125); // S^WS | '(:' | 'least' | 'most'
|
|
switch (l1)
|
|
{
|
|
case 173: // 'least'
|
|
shift(173); // 'least'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_AdditiveExpr();
|
|
break;
|
|
default:
|
|
shift(183); // 'most'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_AdditiveExpr();
|
|
}
|
|
break;
|
|
default:
|
|
shift(140); // 'from'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_AdditiveExpr();
|
|
shift(248); // 'to'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_AdditiveExpr();
|
|
}
|
|
eventHandler.endNonterminal("FTRange", e0);
|
|
}
|
|
|
|
function try_FTRange()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 130: // 'exactly'
|
|
shiftT(130); // 'exactly'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_AdditiveExpr();
|
|
break;
|
|
case 81: // 'at'
|
|
shiftT(81); // 'at'
|
|
lookahead1W(125); // S^WS | '(:' | 'least' | 'most'
|
|
switch (l1)
|
|
{
|
|
case 173: // 'least'
|
|
shiftT(173); // 'least'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_AdditiveExpr();
|
|
break;
|
|
default:
|
|
shiftT(183); // 'most'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_AdditiveExpr();
|
|
}
|
|
break;
|
|
default:
|
|
shiftT(140); // 'from'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_AdditiveExpr();
|
|
shiftT(248); // 'to'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_AdditiveExpr();
|
|
}
|
|
}
|
|
|
|
function parse_FTPosFilter()
|
|
{
|
|
eventHandler.startNonterminal("FTPosFilter", e0);
|
|
switch (l1)
|
|
{
|
|
case 202: // 'ordered'
|
|
parse_FTOrder();
|
|
break;
|
|
case 269: // 'window'
|
|
parse_FTWindow();
|
|
break;
|
|
case 117: // 'distance'
|
|
parse_FTDistance();
|
|
break;
|
|
case 115: // 'different'
|
|
case 223: // 'same'
|
|
parse_FTScope();
|
|
break;
|
|
default:
|
|
parse_FTContent();
|
|
}
|
|
eventHandler.endNonterminal("FTPosFilter", e0);
|
|
}
|
|
|
|
function try_FTPosFilter()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 202: // 'ordered'
|
|
try_FTOrder();
|
|
break;
|
|
case 269: // 'window'
|
|
try_FTWindow();
|
|
break;
|
|
case 117: // 'distance'
|
|
try_FTDistance();
|
|
break;
|
|
case 115: // 'different'
|
|
case 223: // 'same'
|
|
try_FTScope();
|
|
break;
|
|
default:
|
|
try_FTContent();
|
|
}
|
|
}
|
|
|
|
function parse_FTOrder()
|
|
{
|
|
eventHandler.startNonterminal("FTOrder", e0);
|
|
shift(202); // 'ordered'
|
|
eventHandler.endNonterminal("FTOrder", e0);
|
|
}
|
|
|
|
function try_FTOrder()
|
|
{
|
|
shiftT(202); // 'ordered'
|
|
}
|
|
|
|
function parse_FTWindow()
|
|
{
|
|
eventHandler.startNonterminal("FTWindow", e0);
|
|
shift(269); // 'window'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_AdditiveExpr();
|
|
whitespace();
|
|
parse_FTUnit();
|
|
eventHandler.endNonterminal("FTWindow", e0);
|
|
}
|
|
|
|
function try_FTWindow()
|
|
{
|
|
shiftT(269); // 'window'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_AdditiveExpr();
|
|
try_FTUnit();
|
|
}
|
|
|
|
function parse_FTDistance()
|
|
{
|
|
eventHandler.startNonterminal("FTDistance", e0);
|
|
shift(117); // 'distance'
|
|
lookahead1W(149); // S^WS | '(:' | 'at' | 'exactly' | 'from'
|
|
whitespace();
|
|
parse_FTRange();
|
|
whitespace();
|
|
parse_FTUnit();
|
|
eventHandler.endNonterminal("FTDistance", e0);
|
|
}
|
|
|
|
function try_FTDistance()
|
|
{
|
|
shiftT(117); // 'distance'
|
|
lookahead1W(149); // S^WS | '(:' | 'at' | 'exactly' | 'from'
|
|
try_FTRange();
|
|
try_FTUnit();
|
|
}
|
|
|
|
function parse_FTUnit()
|
|
{
|
|
eventHandler.startNonterminal("FTUnit", e0);
|
|
switch (l1)
|
|
{
|
|
case 273: // 'words'
|
|
shift(273); // 'words'
|
|
break;
|
|
case 232: // 'sentences'
|
|
shift(232); // 'sentences'
|
|
break;
|
|
default:
|
|
shift(205); // 'paragraphs'
|
|
}
|
|
eventHandler.endNonterminal("FTUnit", e0);
|
|
}
|
|
|
|
function try_FTUnit()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 273: // 'words'
|
|
shiftT(273); // 'words'
|
|
break;
|
|
case 232: // 'sentences'
|
|
shiftT(232); // 'sentences'
|
|
break;
|
|
default:
|
|
shiftT(205); // 'paragraphs'
|
|
}
|
|
}
|
|
|
|
function parse_FTScope()
|
|
{
|
|
eventHandler.startNonterminal("FTScope", e0);
|
|
switch (l1)
|
|
{
|
|
case 223: // 'same'
|
|
shift(223); // 'same'
|
|
break;
|
|
default:
|
|
shift(115); // 'different'
|
|
}
|
|
lookahead1W(132); // S^WS | '(:' | 'paragraph' | 'sentence'
|
|
whitespace();
|
|
parse_FTBigUnit();
|
|
eventHandler.endNonterminal("FTScope", e0);
|
|
}
|
|
|
|
function try_FTScope()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 223: // 'same'
|
|
shiftT(223); // 'same'
|
|
break;
|
|
default:
|
|
shiftT(115); // 'different'
|
|
}
|
|
lookahead1W(132); // S^WS | '(:' | 'paragraph' | 'sentence'
|
|
try_FTBigUnit();
|
|
}
|
|
|
|
function parse_FTBigUnit()
|
|
{
|
|
eventHandler.startNonterminal("FTBigUnit", e0);
|
|
switch (l1)
|
|
{
|
|
case 231: // 'sentence'
|
|
shift(231); // 'sentence'
|
|
break;
|
|
default:
|
|
shift(204); // 'paragraph'
|
|
}
|
|
eventHandler.endNonterminal("FTBigUnit", e0);
|
|
}
|
|
|
|
function try_FTBigUnit()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 231: // 'sentence'
|
|
shiftT(231); // 'sentence'
|
|
break;
|
|
default:
|
|
shiftT(204); // 'paragraph'
|
|
}
|
|
}
|
|
|
|
function parse_FTContent()
|
|
{
|
|
eventHandler.startNonterminal("FTContent", e0);
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
shift(81); // 'at'
|
|
lookahead1W(117); // S^WS | '(:' | 'end' | 'start'
|
|
switch (l1)
|
|
{
|
|
case 237: // 'start'
|
|
shift(237); // 'start'
|
|
break;
|
|
default:
|
|
shift(126); // 'end'
|
|
}
|
|
break;
|
|
default:
|
|
shift(127); // 'entire'
|
|
lookahead1W(42); // S^WS | '(:' | 'content'
|
|
shift(100); // 'content'
|
|
}
|
|
eventHandler.endNonterminal("FTContent", e0);
|
|
}
|
|
|
|
function try_FTContent()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
shiftT(81); // 'at'
|
|
lookahead1W(117); // S^WS | '(:' | 'end' | 'start'
|
|
switch (l1)
|
|
{
|
|
case 237: // 'start'
|
|
shiftT(237); // 'start'
|
|
break;
|
|
default:
|
|
shiftT(126); // 'end'
|
|
}
|
|
break;
|
|
default:
|
|
shiftT(127); // 'entire'
|
|
lookahead1W(42); // S^WS | '(:' | 'content'
|
|
shiftT(100); // 'content'
|
|
}
|
|
}
|
|
|
|
function parse_FTMatchOptions()
|
|
{
|
|
eventHandler.startNonterminal("FTMatchOptions", e0);
|
|
for (;;)
|
|
{
|
|
shift(259); // 'using'
|
|
lookahead1W(181); // S^WS | '(:' | 'case' | 'diacritics' | 'language' | 'lowercase' | 'no' |
|
|
// 'option' | 'stemming' | 'stop' | 'thesaurus' | 'uppercase' | 'wildcards'
|
|
whitespace();
|
|
parse_FTMatchOption();
|
|
lookahead1W(214); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' | 'ordered' | 'return' |
|
|
// 'same' | 'satisfies' | 'stable' | 'start' | 'using' | 'weight' | 'where' |
|
|
// 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 != 259) // 'using'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("FTMatchOptions", e0);
|
|
}
|
|
|
|
function try_FTMatchOptions()
|
|
{
|
|
for (;;)
|
|
{
|
|
shiftT(259); // 'using'
|
|
lookahead1W(181); // S^WS | '(:' | 'case' | 'diacritics' | 'language' | 'lowercase' | 'no' |
|
|
// 'option' | 'stemming' | 'stop' | 'thesaurus' | 'uppercase' | 'wildcards'
|
|
try_FTMatchOption();
|
|
lookahead1W(214); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' | 'for' |
|
|
// 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' | 'ordered' | 'return' |
|
|
// 'same' | 'satisfies' | 'stable' | 'start' | 'using' | 'weight' | 'where' |
|
|
// 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 != 259) // 'using'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
function parse_FTMatchOption()
|
|
{
|
|
eventHandler.startNonterminal("FTMatchOption", e0);
|
|
switch (l1)
|
|
{
|
|
case 188: // 'no'
|
|
lookahead2W(161); // S^WS | '(:' | 'stemming' | 'stop' | 'thesaurus' | 'wildcards'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 169: // 'language'
|
|
parse_FTLanguageOption();
|
|
break;
|
|
case 268: // 'wildcards'
|
|
case 137404: // 'no' 'wildcards'
|
|
parse_FTWildCardOption();
|
|
break;
|
|
case 246: // 'thesaurus'
|
|
case 126140: // 'no' 'thesaurus'
|
|
parse_FTThesaurusOption();
|
|
break;
|
|
case 238: // 'stemming'
|
|
case 122044: // 'no' 'stemming'
|
|
parse_FTStemOption();
|
|
break;
|
|
case 114: // 'diacritics'
|
|
parse_FTDiacriticsOption();
|
|
break;
|
|
case 239: // 'stop'
|
|
case 122556: // 'no' 'stop'
|
|
parse_FTStopWordOption();
|
|
break;
|
|
case 199: // 'option'
|
|
parse_FTExtensionOption();
|
|
break;
|
|
default:
|
|
parse_FTCaseOption();
|
|
}
|
|
eventHandler.endNonterminal("FTMatchOption", e0);
|
|
}
|
|
|
|
function try_FTMatchOption()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 188: // 'no'
|
|
lookahead2W(161); // S^WS | '(:' | 'stemming' | 'stop' | 'thesaurus' | 'wildcards'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 169: // 'language'
|
|
try_FTLanguageOption();
|
|
break;
|
|
case 268: // 'wildcards'
|
|
case 137404: // 'no' 'wildcards'
|
|
try_FTWildCardOption();
|
|
break;
|
|
case 246: // 'thesaurus'
|
|
case 126140: // 'no' 'thesaurus'
|
|
try_FTThesaurusOption();
|
|
break;
|
|
case 238: // 'stemming'
|
|
case 122044: // 'no' 'stemming'
|
|
try_FTStemOption();
|
|
break;
|
|
case 114: // 'diacritics'
|
|
try_FTDiacriticsOption();
|
|
break;
|
|
case 239: // 'stop'
|
|
case 122556: // 'no' 'stop'
|
|
try_FTStopWordOption();
|
|
break;
|
|
case 199: // 'option'
|
|
try_FTExtensionOption();
|
|
break;
|
|
default:
|
|
try_FTCaseOption();
|
|
}
|
|
}
|
|
|
|
function parse_FTCaseOption()
|
|
{
|
|
eventHandler.startNonterminal("FTCaseOption", e0);
|
|
switch (l1)
|
|
{
|
|
case 88: // 'case'
|
|
shift(88); // 'case'
|
|
lookahead1W(124); // S^WS | '(:' | 'insensitive' | 'sensitive'
|
|
switch (l1)
|
|
{
|
|
case 158: // 'insensitive'
|
|
shift(158); // 'insensitive'
|
|
break;
|
|
default:
|
|
shift(230); // 'sensitive'
|
|
}
|
|
break;
|
|
case 177: // 'lowercase'
|
|
shift(177); // 'lowercase'
|
|
break;
|
|
default:
|
|
shift(258); // 'uppercase'
|
|
}
|
|
eventHandler.endNonterminal("FTCaseOption", e0);
|
|
}
|
|
|
|
function try_FTCaseOption()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 88: // 'case'
|
|
shiftT(88); // 'case'
|
|
lookahead1W(124); // S^WS | '(:' | 'insensitive' | 'sensitive'
|
|
switch (l1)
|
|
{
|
|
case 158: // 'insensitive'
|
|
shiftT(158); // 'insensitive'
|
|
break;
|
|
default:
|
|
shiftT(230); // 'sensitive'
|
|
}
|
|
break;
|
|
case 177: // 'lowercase'
|
|
shiftT(177); // 'lowercase'
|
|
break;
|
|
default:
|
|
shiftT(258); // 'uppercase'
|
|
}
|
|
}
|
|
|
|
function parse_FTDiacriticsOption()
|
|
{
|
|
eventHandler.startNonterminal("FTDiacriticsOption", e0);
|
|
shift(114); // 'diacritics'
|
|
lookahead1W(124); // S^WS | '(:' | 'insensitive' | 'sensitive'
|
|
switch (l1)
|
|
{
|
|
case 158: // 'insensitive'
|
|
shift(158); // 'insensitive'
|
|
break;
|
|
default:
|
|
shift(230); // 'sensitive'
|
|
}
|
|
eventHandler.endNonterminal("FTDiacriticsOption", e0);
|
|
}
|
|
|
|
function try_FTDiacriticsOption()
|
|
{
|
|
shiftT(114); // 'diacritics'
|
|
lookahead1W(124); // S^WS | '(:' | 'insensitive' | 'sensitive'
|
|
switch (l1)
|
|
{
|
|
case 158: // 'insensitive'
|
|
shiftT(158); // 'insensitive'
|
|
break;
|
|
default:
|
|
shiftT(230); // 'sensitive'
|
|
}
|
|
}
|
|
|
|
function parse_FTStemOption()
|
|
{
|
|
eventHandler.startNonterminal("FTStemOption", e0);
|
|
switch (l1)
|
|
{
|
|
case 238: // 'stemming'
|
|
shift(238); // 'stemming'
|
|
break;
|
|
default:
|
|
shift(188); // 'no'
|
|
lookahead1W(74); // S^WS | '(:' | 'stemming'
|
|
shift(238); // 'stemming'
|
|
}
|
|
eventHandler.endNonterminal("FTStemOption", e0);
|
|
}
|
|
|
|
function try_FTStemOption()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 238: // 'stemming'
|
|
shiftT(238); // 'stemming'
|
|
break;
|
|
default:
|
|
shiftT(188); // 'no'
|
|
lookahead1W(74); // S^WS | '(:' | 'stemming'
|
|
shiftT(238); // 'stemming'
|
|
}
|
|
}
|
|
|
|
function parse_FTThesaurusOption()
|
|
{
|
|
eventHandler.startNonterminal("FTThesaurusOption", e0);
|
|
switch (l1)
|
|
{
|
|
case 246: // 'thesaurus'
|
|
shift(246); // 'thesaurus'
|
|
lookahead1W(142); // S^WS | '(' | '(:' | 'at' | 'default'
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
whitespace();
|
|
parse_FTThesaurusID();
|
|
break;
|
|
case 109: // 'default'
|
|
shift(109); // 'default'
|
|
break;
|
|
default:
|
|
shift(34); // '('
|
|
lookahead1W(112); // S^WS | '(:' | 'at' | 'default'
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
whitespace();
|
|
parse_FTThesaurusID();
|
|
break;
|
|
default:
|
|
shift(109); // 'default'
|
|
}
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(31); // S^WS | '(:' | 'at'
|
|
whitespace();
|
|
parse_FTThesaurusID();
|
|
}
|
|
shift(37); // ')'
|
|
}
|
|
break;
|
|
default:
|
|
shift(188); // 'no'
|
|
lookahead1W(78); // S^WS | '(:' | 'thesaurus'
|
|
shift(246); // 'thesaurus'
|
|
}
|
|
eventHandler.endNonterminal("FTThesaurusOption", e0);
|
|
}
|
|
|
|
function try_FTThesaurusOption()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 246: // 'thesaurus'
|
|
shiftT(246); // 'thesaurus'
|
|
lookahead1W(142); // S^WS | '(' | '(:' | 'at' | 'default'
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
try_FTThesaurusID();
|
|
break;
|
|
case 109: // 'default'
|
|
shiftT(109); // 'default'
|
|
break;
|
|
default:
|
|
shiftT(34); // '('
|
|
lookahead1W(112); // S^WS | '(:' | 'at' | 'default'
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
try_FTThesaurusID();
|
|
break;
|
|
default:
|
|
shiftT(109); // 'default'
|
|
}
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(31); // S^WS | '(:' | 'at'
|
|
try_FTThesaurusID();
|
|
}
|
|
shiftT(37); // ')'
|
|
}
|
|
break;
|
|
default:
|
|
shiftT(188); // 'no'
|
|
lookahead1W(78); // S^WS | '(:' | 'thesaurus'
|
|
shiftT(246); // 'thesaurus'
|
|
}
|
|
}
|
|
|
|
function parse_FTThesaurusID()
|
|
{
|
|
eventHandler.startNonterminal("FTThesaurusID", e0);
|
|
shift(81); // 'at'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
lookahead1W(220); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' |
|
|
// 'exactly' | 'for' | 'from' | 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' |
|
|
// 'is' | 'le' | 'let' | 'lt' | 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' |
|
|
// 'ordered' | 'relationship' | 'return' | 'same' | 'satisfies' | 'stable' |
|
|
// 'start' | 'using' | 'weight' | 'where' | 'window' | 'with' | 'without' | '|}' |
|
|
// '}'
|
|
if (l1 == 217) // 'relationship'
|
|
{
|
|
shift(217); // 'relationship'
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shift(11); // StringLiteral
|
|
}
|
|
lookahead1W(216); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' |
|
|
// 'exactly' | 'for' | 'from' | 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' |
|
|
// 'is' | 'le' | 'let' | 'lt' | 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' |
|
|
// 'ordered' | 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'using' |
|
|
// 'weight' | 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
lookahead2W(165); // S^WS | '(:' | 'end' | 'least' | 'most' | 'position' | 'start'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 130 // 'exactly'
|
|
|| lk == 140 // 'from'
|
|
|| lk == 88657 // 'at' 'least'
|
|
|| lk == 93777) // 'at' 'most'
|
|
{
|
|
whitespace();
|
|
parse_FTLiteralRange();
|
|
lookahead1W(58); // S^WS | '(:' | 'levels'
|
|
shift(175); // 'levels'
|
|
}
|
|
eventHandler.endNonterminal("FTThesaurusID", e0);
|
|
}
|
|
|
|
function try_FTThesaurusID()
|
|
{
|
|
shiftT(81); // 'at'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shiftT(7); // URILiteral
|
|
lookahead1W(220); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' |
|
|
// 'exactly' | 'for' | 'from' | 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' |
|
|
// 'is' | 'le' | 'let' | 'lt' | 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' |
|
|
// 'ordered' | 'relationship' | 'return' | 'same' | 'satisfies' | 'stable' |
|
|
// 'start' | 'using' | 'weight' | 'where' | 'window' | 'with' | 'without' | '|}' |
|
|
// '}'
|
|
if (l1 == 217) // 'relationship'
|
|
{
|
|
shiftT(217); // 'relationship'
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shiftT(11); // StringLiteral
|
|
}
|
|
lookahead1W(216); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' |
|
|
// 'exactly' | 'for' | 'from' | 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' |
|
|
// 'is' | 'le' | 'let' | 'lt' | 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' |
|
|
// 'ordered' | 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'using' |
|
|
// 'weight' | 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
lookahead2W(165); // S^WS | '(:' | 'end' | 'least' | 'most' | 'position' | 'start'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 130 // 'exactly'
|
|
|| lk == 140 // 'from'
|
|
|| lk == 88657 // 'at' 'least'
|
|
|| lk == 93777) // 'at' 'most'
|
|
{
|
|
try_FTLiteralRange();
|
|
lookahead1W(58); // S^WS | '(:' | 'levels'
|
|
shiftT(175); // 'levels'
|
|
}
|
|
}
|
|
|
|
function parse_FTLiteralRange()
|
|
{
|
|
eventHandler.startNonterminal("FTLiteralRange", e0);
|
|
switch (l1)
|
|
{
|
|
case 130: // 'exactly'
|
|
shift(130); // 'exactly'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shift(8); // IntegerLiteral
|
|
break;
|
|
case 81: // 'at'
|
|
shift(81); // 'at'
|
|
lookahead1W(125); // S^WS | '(:' | 'least' | 'most'
|
|
switch (l1)
|
|
{
|
|
case 173: // 'least'
|
|
shift(173); // 'least'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shift(8); // IntegerLiteral
|
|
break;
|
|
default:
|
|
shift(183); // 'most'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shift(8); // IntegerLiteral
|
|
}
|
|
break;
|
|
default:
|
|
shift(140); // 'from'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shift(8); // IntegerLiteral
|
|
lookahead1W(79); // S^WS | '(:' | 'to'
|
|
shift(248); // 'to'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shift(8); // IntegerLiteral
|
|
}
|
|
eventHandler.endNonterminal("FTLiteralRange", e0);
|
|
}
|
|
|
|
function try_FTLiteralRange()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 130: // 'exactly'
|
|
shiftT(130); // 'exactly'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shiftT(8); // IntegerLiteral
|
|
break;
|
|
case 81: // 'at'
|
|
shiftT(81); // 'at'
|
|
lookahead1W(125); // S^WS | '(:' | 'least' | 'most'
|
|
switch (l1)
|
|
{
|
|
case 173: // 'least'
|
|
shiftT(173); // 'least'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shiftT(8); // IntegerLiteral
|
|
break;
|
|
default:
|
|
shiftT(183); // 'most'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shiftT(8); // IntegerLiteral
|
|
}
|
|
break;
|
|
default:
|
|
shiftT(140); // 'from'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shiftT(8); // IntegerLiteral
|
|
lookahead1W(79); // S^WS | '(:' | 'to'
|
|
shiftT(248); // 'to'
|
|
lookahead1W(16); // IntegerLiteral | S^WS | '(:'
|
|
shiftT(8); // IntegerLiteral
|
|
}
|
|
}
|
|
|
|
function parse_FTStopWordOption()
|
|
{
|
|
eventHandler.startNonterminal("FTStopWordOption", e0);
|
|
switch (l1)
|
|
{
|
|
case 239: // 'stop'
|
|
shift(239); // 'stop'
|
|
lookahead1W(86); // S^WS | '(:' | 'words'
|
|
shift(273); // 'words'
|
|
lookahead1W(142); // S^WS | '(' | '(:' | 'at' | 'default'
|
|
switch (l1)
|
|
{
|
|
case 109: // 'default'
|
|
shift(109); // 'default'
|
|
for (;;)
|
|
{
|
|
lookahead1W(217); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' |
|
|
// 'except' | 'for' | 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' |
|
|
// 'le' | 'let' | 'lt' | 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' |
|
|
// 'ordered' | 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'union' |
|
|
// 'using' | 'weight' | 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 != 131 // 'except'
|
|
&& l1 != 254) // 'union'
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_FTStopWordsInclExcl();
|
|
}
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_FTStopWords();
|
|
for (;;)
|
|
{
|
|
lookahead1W(217); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' |
|
|
// 'except' | 'for' | 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' |
|
|
// 'le' | 'let' | 'lt' | 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' |
|
|
// 'ordered' | 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'union' |
|
|
// 'using' | 'weight' | 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 != 131 // 'except'
|
|
&& l1 != 254) // 'union'
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_FTStopWordsInclExcl();
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
shift(188); // 'no'
|
|
lookahead1W(75); // S^WS | '(:' | 'stop'
|
|
shift(239); // 'stop'
|
|
lookahead1W(86); // S^WS | '(:' | 'words'
|
|
shift(273); // 'words'
|
|
}
|
|
eventHandler.endNonterminal("FTStopWordOption", e0);
|
|
}
|
|
|
|
function try_FTStopWordOption()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 239: // 'stop'
|
|
shiftT(239); // 'stop'
|
|
lookahead1W(86); // S^WS | '(:' | 'words'
|
|
shiftT(273); // 'words'
|
|
lookahead1W(142); // S^WS | '(' | '(:' | 'at' | 'default'
|
|
switch (l1)
|
|
{
|
|
case 109: // 'default'
|
|
shiftT(109); // 'default'
|
|
for (;;)
|
|
{
|
|
lookahead1W(217); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' |
|
|
// 'except' | 'for' | 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' |
|
|
// 'le' | 'let' | 'lt' | 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' |
|
|
// 'ordered' | 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'union' |
|
|
// 'using' | 'weight' | 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 != 131 // 'except'
|
|
&& l1 != 254) // 'union'
|
|
{
|
|
break;
|
|
}
|
|
try_FTStopWordsInclExcl();
|
|
}
|
|
break;
|
|
default:
|
|
try_FTStopWords();
|
|
for (;;)
|
|
{
|
|
lookahead1W(217); // S^WS | EOF | '!=' | '(:' | ')' | ',' | ':' | ';' | '<' | '<<' | '<=' | '=' |
|
|
// '>' | '>=' | '>>' | ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' |
|
|
// 'before' | 'case' | 'collation' | 'count' | 'default' | 'descending' |
|
|
// 'different' | 'distance' | 'else' | 'empty' | 'end' | 'entire' | 'eq' |
|
|
// 'except' | 'for' | 'ftand' | 'ftor' | 'ge' | 'group' | 'gt' | 'into' | 'is' |
|
|
// 'le' | 'let' | 'lt' | 'modify' | 'ne' | 'not' | 'only' | 'or' | 'order' |
|
|
// 'ordered' | 'return' | 'same' | 'satisfies' | 'stable' | 'start' | 'union' |
|
|
// 'using' | 'weight' | 'where' | 'window' | 'with' | 'without' | '|}' | '}'
|
|
if (l1 != 131 // 'except'
|
|
&& l1 != 254) // 'union'
|
|
{
|
|
break;
|
|
}
|
|
try_FTStopWordsInclExcl();
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
shiftT(188); // 'no'
|
|
lookahead1W(75); // S^WS | '(:' | 'stop'
|
|
shiftT(239); // 'stop'
|
|
lookahead1W(86); // S^WS | '(:' | 'words'
|
|
shiftT(273); // 'words'
|
|
}
|
|
}
|
|
|
|
function parse_FTStopWords()
|
|
{
|
|
eventHandler.startNonterminal("FTStopWords", e0);
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
shift(81); // 'at'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
break;
|
|
default:
|
|
shift(34); // '('
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shift(11); // StringLiteral
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shift(11); // StringLiteral
|
|
}
|
|
shift(37); // ')'
|
|
}
|
|
eventHandler.endNonterminal("FTStopWords", e0);
|
|
}
|
|
|
|
function try_FTStopWords()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
shiftT(81); // 'at'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shiftT(7); // URILiteral
|
|
break;
|
|
default:
|
|
shiftT(34); // '('
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shiftT(11); // StringLiteral
|
|
for (;;)
|
|
{
|
|
lookahead1W(101); // S^WS | '(:' | ')' | ','
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shiftT(11); // StringLiteral
|
|
}
|
|
shiftT(37); // ')'
|
|
}
|
|
}
|
|
|
|
function parse_FTStopWordsInclExcl()
|
|
{
|
|
eventHandler.startNonterminal("FTStopWordsInclExcl", e0);
|
|
switch (l1)
|
|
{
|
|
case 254: // 'union'
|
|
shift(254); // 'union'
|
|
break;
|
|
default:
|
|
shift(131); // 'except'
|
|
}
|
|
lookahead1W(99); // S^WS | '(' | '(:' | 'at'
|
|
whitespace();
|
|
parse_FTStopWords();
|
|
eventHandler.endNonterminal("FTStopWordsInclExcl", e0);
|
|
}
|
|
|
|
function try_FTStopWordsInclExcl()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 254: // 'union'
|
|
shiftT(254); // 'union'
|
|
break;
|
|
default:
|
|
shiftT(131); // 'except'
|
|
}
|
|
lookahead1W(99); // S^WS | '(' | '(:' | 'at'
|
|
try_FTStopWords();
|
|
}
|
|
|
|
function parse_FTLanguageOption()
|
|
{
|
|
eventHandler.startNonterminal("FTLanguageOption", e0);
|
|
shift(169); // 'language'
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shift(11); // StringLiteral
|
|
eventHandler.endNonterminal("FTLanguageOption", e0);
|
|
}
|
|
|
|
function try_FTLanguageOption()
|
|
{
|
|
shiftT(169); // 'language'
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shiftT(11); // StringLiteral
|
|
}
|
|
|
|
function parse_FTWildCardOption()
|
|
{
|
|
eventHandler.startNonterminal("FTWildCardOption", e0);
|
|
switch (l1)
|
|
{
|
|
case 268: // 'wildcards'
|
|
shift(268); // 'wildcards'
|
|
break;
|
|
default:
|
|
shift(188); // 'no'
|
|
lookahead1W(84); // S^WS | '(:' | 'wildcards'
|
|
shift(268); // 'wildcards'
|
|
}
|
|
eventHandler.endNonterminal("FTWildCardOption", e0);
|
|
}
|
|
|
|
function try_FTWildCardOption()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 268: // 'wildcards'
|
|
shiftT(268); // 'wildcards'
|
|
break;
|
|
default:
|
|
shiftT(188); // 'no'
|
|
lookahead1W(84); // S^WS | '(:' | 'wildcards'
|
|
shiftT(268); // 'wildcards'
|
|
}
|
|
}
|
|
|
|
function parse_FTExtensionOption()
|
|
{
|
|
eventHandler.startNonterminal("FTExtensionOption", e0);
|
|
shift(199); // 'option'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_EQName();
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shift(11); // StringLiteral
|
|
eventHandler.endNonterminal("FTExtensionOption", e0);
|
|
}
|
|
|
|
function try_FTExtensionOption()
|
|
{
|
|
shiftT(199); // 'option'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_EQName();
|
|
lookahead1W(17); // StringLiteral | S^WS | '(:'
|
|
shiftT(11); // StringLiteral
|
|
}
|
|
|
|
function parse_FTIgnoreOption()
|
|
{
|
|
eventHandler.startNonterminal("FTIgnoreOption", e0);
|
|
shift(271); // 'without'
|
|
lookahead1W(42); // S^WS | '(:' | 'content'
|
|
shift(100); // 'content'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_UnionExpr();
|
|
eventHandler.endNonterminal("FTIgnoreOption", e0);
|
|
}
|
|
|
|
function try_FTIgnoreOption()
|
|
{
|
|
shiftT(271); // 'without'
|
|
lookahead1W(42); // S^WS | '(:' | 'content'
|
|
shiftT(100); // 'content'
|
|
lookahead1W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_UnionExpr();
|
|
}
|
|
|
|
function parse_CollectionDecl()
|
|
{
|
|
eventHandler.startNonterminal("CollectionDecl", e0);
|
|
shift(95); // 'collection'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_EQName();
|
|
lookahead1W(107); // S^WS | '(:' | ';' | 'as'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_CollectionTypeDecl();
|
|
}
|
|
eventHandler.endNonterminal("CollectionDecl", e0);
|
|
}
|
|
|
|
function parse_CollectionTypeDecl()
|
|
{
|
|
eventHandler.startNonterminal("CollectionTypeDecl", e0);
|
|
shift(79); // 'as'
|
|
lookahead1W(183); // S^WS | '(:' | 'array' | 'attribute' | 'comment' | 'document-node' | 'element' |
|
|
// 'json-item' | 'namespace-node' | 'node' | 'object' | 'processing-instruction' |
|
|
// 'schema-attribute' | 'schema-element' | 'text'
|
|
whitespace();
|
|
parse_KindTest();
|
|
lookahead1W(156); // S^WS | '(:' | '*' | '+' | ';' | '?'
|
|
if (l1 != 53) // ';'
|
|
{
|
|
whitespace();
|
|
parse_OccurrenceIndicator();
|
|
}
|
|
eventHandler.endNonterminal("CollectionTypeDecl", e0);
|
|
}
|
|
|
|
function parse_IndexName()
|
|
{
|
|
eventHandler.startNonterminal("IndexName", e0);
|
|
parse_EQName();
|
|
eventHandler.endNonterminal("IndexName", e0);
|
|
}
|
|
|
|
function parse_IndexDomainExpr()
|
|
{
|
|
eventHandler.startNonterminal("IndexDomainExpr", e0);
|
|
parse_PathExpr();
|
|
eventHandler.endNonterminal("IndexDomainExpr", e0);
|
|
}
|
|
|
|
function parse_IndexKeySpec()
|
|
{
|
|
eventHandler.startNonterminal("IndexKeySpec", e0);
|
|
parse_IndexKeyExpr();
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_IndexKeyTypeDecl();
|
|
}
|
|
lookahead1W(146); // S^WS | '(:' | ',' | ';' | 'collation'
|
|
if (l1 == 94) // 'collation'
|
|
{
|
|
whitespace();
|
|
parse_IndexKeyCollation();
|
|
}
|
|
eventHandler.endNonterminal("IndexKeySpec", e0);
|
|
}
|
|
|
|
function parse_IndexKeyExpr()
|
|
{
|
|
eventHandler.startNonterminal("IndexKeyExpr", e0);
|
|
parse_PathExpr();
|
|
eventHandler.endNonterminal("IndexKeyExpr", e0);
|
|
}
|
|
|
|
function parse_IndexKeyTypeDecl()
|
|
{
|
|
eventHandler.startNonterminal("IndexKeyTypeDecl", e0);
|
|
shift(79); // 'as'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_AtomicType();
|
|
lookahead1W(169); // S^WS | '(:' | '*' | '+' | ',' | ';' | '?' | 'collation'
|
|
if (l1 == 39 // '*'
|
|
|| l1 == 40 // '+'
|
|
|| l1 == 64) // '?'
|
|
{
|
|
whitespace();
|
|
parse_OccurrenceIndicator();
|
|
}
|
|
eventHandler.endNonterminal("IndexKeyTypeDecl", e0);
|
|
}
|
|
|
|
function parse_AtomicType()
|
|
{
|
|
eventHandler.startNonterminal("AtomicType", e0);
|
|
parse_EQName();
|
|
eventHandler.endNonterminal("AtomicType", e0);
|
|
}
|
|
|
|
function parse_IndexKeyCollation()
|
|
{
|
|
eventHandler.startNonterminal("IndexKeyCollation", e0);
|
|
shift(94); // 'collation'
|
|
lookahead1W(15); // URILiteral | S^WS | '(:'
|
|
shift(7); // URILiteral
|
|
eventHandler.endNonterminal("IndexKeyCollation", e0);
|
|
}
|
|
|
|
function parse_IndexDecl()
|
|
{
|
|
eventHandler.startNonterminal("IndexDecl", e0);
|
|
shift(155); // 'index'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_IndexName();
|
|
lookahead1W(65); // S^WS | '(:' | 'on'
|
|
shift(197); // 'on'
|
|
lookahead1W(63); // S^WS | '(:' | 'nodes'
|
|
shift(192); // 'nodes'
|
|
lookahead1W(264); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '/' | '//' | '<' |
|
|
// '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_IndexDomainExpr();
|
|
shift(87); // 'by'
|
|
lookahead1W(264); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '/' | '//' | '<' |
|
|
// '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_IndexKeySpec();
|
|
for (;;)
|
|
{
|
|
lookahead1W(103); // S^WS | '(:' | ',' | ';'
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(264); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '/' | '//' | '<' |
|
|
// '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_IndexKeySpec();
|
|
}
|
|
eventHandler.endNonterminal("IndexDecl", e0);
|
|
}
|
|
|
|
function parse_ICDecl()
|
|
{
|
|
eventHandler.startNonterminal("ICDecl", e0);
|
|
shift(161); // 'integrity'
|
|
lookahead1W(40); // S^WS | '(:' | 'constraint'
|
|
shift(97); // 'constraint'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_EQName();
|
|
lookahead1W(120); // S^WS | '(:' | 'foreign' | 'on'
|
|
switch (l1)
|
|
{
|
|
case 197: // 'on'
|
|
whitespace();
|
|
parse_ICCollection();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_ICForeignKey();
|
|
}
|
|
eventHandler.endNonterminal("ICDecl", e0);
|
|
}
|
|
|
|
function parse_ICCollection()
|
|
{
|
|
eventHandler.startNonterminal("ICCollection", e0);
|
|
shift(197); // 'on'
|
|
lookahead1W(39); // S^WS | '(:' | 'collection'
|
|
shift(95); // 'collection'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_EQName();
|
|
lookahead1W(140); // S^WS | '$' | '(:' | 'foreach' | 'node'
|
|
switch (l1)
|
|
{
|
|
case 31: // '$'
|
|
whitespace();
|
|
parse_ICCollSequence();
|
|
break;
|
|
case 191: // 'node'
|
|
whitespace();
|
|
parse_ICCollSequenceUnique();
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_ICCollNode();
|
|
}
|
|
eventHandler.endNonterminal("ICCollection", e0);
|
|
}
|
|
|
|
function parse_ICCollSequence()
|
|
{
|
|
eventHandler.startNonterminal("ICCollSequence", e0);
|
|
parse_VarRef();
|
|
lookahead1W(37); // S^WS | '(:' | 'check'
|
|
shift(92); // 'check'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("ICCollSequence", e0);
|
|
}
|
|
|
|
function parse_ICCollSequenceUnique()
|
|
{
|
|
eventHandler.startNonterminal("ICCollSequenceUnique", e0);
|
|
shift(191); // 'node'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
whitespace();
|
|
parse_VarRef();
|
|
lookahead1W(37); // S^WS | '(:' | 'check'
|
|
shift(92); // 'check'
|
|
lookahead1W(80); // S^WS | '(:' | 'unique'
|
|
shift(255); // 'unique'
|
|
lookahead1W(57); // S^WS | '(:' | 'key'
|
|
shift(168); // 'key'
|
|
lookahead1W(264); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '/' | '//' | '<' |
|
|
// '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_PathExpr();
|
|
eventHandler.endNonterminal("ICCollSequenceUnique", e0);
|
|
}
|
|
|
|
function parse_ICCollNode()
|
|
{
|
|
eventHandler.startNonterminal("ICCollNode", e0);
|
|
shift(138); // 'foreach'
|
|
lookahead1W(62); // S^WS | '(:' | 'node'
|
|
shift(191); // 'node'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
whitespace();
|
|
parse_VarRef();
|
|
lookahead1W(37); // S^WS | '(:' | 'check'
|
|
shift(92); // 'check'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("ICCollNode", e0);
|
|
}
|
|
|
|
function parse_ICForeignKey()
|
|
{
|
|
eventHandler.startNonterminal("ICForeignKey", e0);
|
|
shift(139); // 'foreign'
|
|
lookahead1W(57); // S^WS | '(:' | 'key'
|
|
shift(168); // 'key'
|
|
lookahead1W(51); // S^WS | '(:' | 'from'
|
|
whitespace();
|
|
parse_ICForeignKeySource();
|
|
whitespace();
|
|
parse_ICForeignKeyTarget();
|
|
eventHandler.endNonterminal("ICForeignKey", e0);
|
|
}
|
|
|
|
function parse_ICForeignKeySource()
|
|
{
|
|
eventHandler.startNonterminal("ICForeignKeySource", e0);
|
|
shift(140); // 'from'
|
|
lookahead1W(39); // S^WS | '(:' | 'collection'
|
|
whitespace();
|
|
parse_ICForeignKeyValues();
|
|
eventHandler.endNonterminal("ICForeignKeySource", e0);
|
|
}
|
|
|
|
function parse_ICForeignKeyTarget()
|
|
{
|
|
eventHandler.startNonterminal("ICForeignKeyTarget", e0);
|
|
shift(248); // 'to'
|
|
lookahead1W(39); // S^WS | '(:' | 'collection'
|
|
whitespace();
|
|
parse_ICForeignKeyValues();
|
|
eventHandler.endNonterminal("ICForeignKeyTarget", e0);
|
|
}
|
|
|
|
function parse_ICForeignKeyValues()
|
|
{
|
|
eventHandler.startNonterminal("ICForeignKeyValues", e0);
|
|
shift(95); // 'collection'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_EQName();
|
|
lookahead1W(62); // S^WS | '(:' | 'node'
|
|
shift(191); // 'node'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
whitespace();
|
|
parse_VarRef();
|
|
lookahead1W(57); // S^WS | '(:' | 'key'
|
|
shift(168); // 'key'
|
|
lookahead1W(264); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '/' | '//' | '<' |
|
|
// '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_PathExpr();
|
|
eventHandler.endNonterminal("ICForeignKeyValues", e0);
|
|
}
|
|
|
|
function try_Comment()
|
|
{
|
|
shiftT(36); // '(:'
|
|
for (;;)
|
|
{
|
|
lookahead1(89); // CommentContents | '(:' | ':)'
|
|
if (l1 == 50) // ':)'
|
|
{
|
|
break;
|
|
}
|
|
switch (l1)
|
|
{
|
|
case 24: // CommentContents
|
|
shiftT(24); // CommentContents
|
|
break;
|
|
default:
|
|
try_Comment();
|
|
}
|
|
}
|
|
shiftT(50); // ':)'
|
|
}
|
|
|
|
function try_Whitespace()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 22: // S^WS
|
|
shiftT(22); // S^WS
|
|
break;
|
|
default:
|
|
try_Comment();
|
|
}
|
|
}
|
|
|
|
function parse_EQName()
|
|
{
|
|
eventHandler.startNonterminal("EQName", e0);
|
|
lookahead1(248); // EQName^Token | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' |
|
|
// 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' |
|
|
// 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' |
|
|
// 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery'
|
|
switch (l1)
|
|
{
|
|
case 82: // 'attribute'
|
|
shift(82); // 'attribute'
|
|
break;
|
|
case 96: // 'comment'
|
|
shift(96); // 'comment'
|
|
break;
|
|
case 120: // 'document-node'
|
|
shift(120); // 'document-node'
|
|
break;
|
|
case 121: // 'element'
|
|
shift(121); // 'element'
|
|
break;
|
|
case 124: // 'empty-sequence'
|
|
shift(124); // 'empty-sequence'
|
|
break;
|
|
case 145: // 'function'
|
|
shift(145); // 'function'
|
|
break;
|
|
case 152: // 'if'
|
|
shift(152); // 'if'
|
|
break;
|
|
case 165: // 'item'
|
|
shift(165); // 'item'
|
|
break;
|
|
case 185: // 'namespace-node'
|
|
shift(185); // 'namespace-node'
|
|
break;
|
|
case 191: // 'node'
|
|
shift(191); // 'node'
|
|
break;
|
|
case 216: // 'processing-instruction'
|
|
shift(216); // 'processing-instruction'
|
|
break;
|
|
case 226: // 'schema-attribute'
|
|
shift(226); // 'schema-attribute'
|
|
break;
|
|
case 227: // 'schema-element'
|
|
shift(227); // 'schema-element'
|
|
break;
|
|
case 243: // 'switch'
|
|
shift(243); // 'switch'
|
|
break;
|
|
case 244: // 'text'
|
|
shift(244); // 'text'
|
|
break;
|
|
case 253: // 'typeswitch'
|
|
shift(253); // 'typeswitch'
|
|
break;
|
|
default:
|
|
parse_FunctionName();
|
|
}
|
|
eventHandler.endNonterminal("EQName", e0);
|
|
}
|
|
|
|
function try_EQName()
|
|
{
|
|
lookahead1(248); // EQName^Token | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' |
|
|
// 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' |
|
|
// 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' |
|
|
// 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery'
|
|
switch (l1)
|
|
{
|
|
case 82: // 'attribute'
|
|
shiftT(82); // 'attribute'
|
|
break;
|
|
case 96: // 'comment'
|
|
shiftT(96); // 'comment'
|
|
break;
|
|
case 120: // 'document-node'
|
|
shiftT(120); // 'document-node'
|
|
break;
|
|
case 121: // 'element'
|
|
shiftT(121); // 'element'
|
|
break;
|
|
case 124: // 'empty-sequence'
|
|
shiftT(124); // 'empty-sequence'
|
|
break;
|
|
case 145: // 'function'
|
|
shiftT(145); // 'function'
|
|
break;
|
|
case 152: // 'if'
|
|
shiftT(152); // 'if'
|
|
break;
|
|
case 165: // 'item'
|
|
shiftT(165); // 'item'
|
|
break;
|
|
case 185: // 'namespace-node'
|
|
shiftT(185); // 'namespace-node'
|
|
break;
|
|
case 191: // 'node'
|
|
shiftT(191); // 'node'
|
|
break;
|
|
case 216: // 'processing-instruction'
|
|
shiftT(216); // 'processing-instruction'
|
|
break;
|
|
case 226: // 'schema-attribute'
|
|
shiftT(226); // 'schema-attribute'
|
|
break;
|
|
case 227: // 'schema-element'
|
|
shiftT(227); // 'schema-element'
|
|
break;
|
|
case 243: // 'switch'
|
|
shiftT(243); // 'switch'
|
|
break;
|
|
case 244: // 'text'
|
|
shiftT(244); // 'text'
|
|
break;
|
|
case 253: // 'typeswitch'
|
|
shiftT(253); // 'typeswitch'
|
|
break;
|
|
default:
|
|
try_FunctionName();
|
|
}
|
|
}
|
|
|
|
function parse_FunctionName()
|
|
{
|
|
eventHandler.startNonterminal("FunctionName", e0);
|
|
switch (l1)
|
|
{
|
|
case 6: // EQName^Token
|
|
shift(6); // EQName^Token
|
|
break;
|
|
case 70: // 'after'
|
|
shift(70); // 'after'
|
|
break;
|
|
case 73: // 'ancestor'
|
|
shift(73); // 'ancestor'
|
|
break;
|
|
case 74: // 'ancestor-or-self'
|
|
shift(74); // 'ancestor-or-self'
|
|
break;
|
|
case 75: // 'and'
|
|
shift(75); // 'and'
|
|
break;
|
|
case 79: // 'as'
|
|
shift(79); // 'as'
|
|
break;
|
|
case 80: // 'ascending'
|
|
shift(80); // 'ascending'
|
|
break;
|
|
case 84: // 'before'
|
|
shift(84); // 'before'
|
|
break;
|
|
case 88: // 'case'
|
|
shift(88); // 'case'
|
|
break;
|
|
case 89: // 'cast'
|
|
shift(89); // 'cast'
|
|
break;
|
|
case 90: // 'castable'
|
|
shift(90); // 'castable'
|
|
break;
|
|
case 93: // 'child'
|
|
shift(93); // 'child'
|
|
break;
|
|
case 94: // 'collation'
|
|
shift(94); // 'collation'
|
|
break;
|
|
case 103: // 'copy'
|
|
shift(103); // 'copy'
|
|
break;
|
|
case 105: // 'count'
|
|
shift(105); // 'count'
|
|
break;
|
|
case 108: // 'declare'
|
|
shift(108); // 'declare'
|
|
break;
|
|
case 109: // 'default'
|
|
shift(109); // 'default'
|
|
break;
|
|
case 110: // 'delete'
|
|
shift(110); // 'delete'
|
|
break;
|
|
case 111: // 'descendant'
|
|
shift(111); // 'descendant'
|
|
break;
|
|
case 112: // 'descendant-or-self'
|
|
shift(112); // 'descendant-or-self'
|
|
break;
|
|
case 113: // 'descending'
|
|
shift(113); // 'descending'
|
|
break;
|
|
case 118: // 'div'
|
|
shift(118); // 'div'
|
|
break;
|
|
case 119: // 'document'
|
|
shift(119); // 'document'
|
|
break;
|
|
case 122: // 'else'
|
|
shift(122); // 'else'
|
|
break;
|
|
case 123: // 'empty'
|
|
shift(123); // 'empty'
|
|
break;
|
|
case 126: // 'end'
|
|
shift(126); // 'end'
|
|
break;
|
|
case 128: // 'eq'
|
|
shift(128); // 'eq'
|
|
break;
|
|
case 129: // 'every'
|
|
shift(129); // 'every'
|
|
break;
|
|
case 131: // 'except'
|
|
shift(131); // 'except'
|
|
break;
|
|
case 134: // 'first'
|
|
shift(134); // 'first'
|
|
break;
|
|
case 135: // 'following'
|
|
shift(135); // 'following'
|
|
break;
|
|
case 136: // 'following-sibling'
|
|
shift(136); // 'following-sibling'
|
|
break;
|
|
case 137: // 'for'
|
|
shift(137); // 'for'
|
|
break;
|
|
case 146: // 'ge'
|
|
shift(146); // 'ge'
|
|
break;
|
|
case 148: // 'group'
|
|
shift(148); // 'group'
|
|
break;
|
|
case 150: // 'gt'
|
|
shift(150); // 'gt'
|
|
break;
|
|
case 151: // 'idiv'
|
|
shift(151); // 'idiv'
|
|
break;
|
|
case 153: // 'import'
|
|
shift(153); // 'import'
|
|
break;
|
|
case 159: // 'insert'
|
|
shift(159); // 'insert'
|
|
break;
|
|
case 160: // 'instance'
|
|
shift(160); // 'instance'
|
|
break;
|
|
case 162: // 'intersect'
|
|
shift(162); // 'intersect'
|
|
break;
|
|
case 163: // 'into'
|
|
shift(163); // 'into'
|
|
break;
|
|
case 164: // 'is'
|
|
shift(164); // 'is'
|
|
break;
|
|
case 170: // 'last'
|
|
shift(170); // 'last'
|
|
break;
|
|
case 172: // 'le'
|
|
shift(172); // 'le'
|
|
break;
|
|
case 174: // 'let'
|
|
shift(174); // 'let'
|
|
break;
|
|
case 178: // 'lt'
|
|
shift(178); // 'lt'
|
|
break;
|
|
case 180: // 'mod'
|
|
shift(180); // 'mod'
|
|
break;
|
|
case 181: // 'modify'
|
|
shift(181); // 'modify'
|
|
break;
|
|
case 182: // 'module'
|
|
shift(182); // 'module'
|
|
break;
|
|
case 184: // 'namespace'
|
|
shift(184); // 'namespace'
|
|
break;
|
|
case 186: // 'ne'
|
|
shift(186); // 'ne'
|
|
break;
|
|
case 198: // 'only'
|
|
shift(198); // 'only'
|
|
break;
|
|
case 200: // 'or'
|
|
shift(200); // 'or'
|
|
break;
|
|
case 201: // 'order'
|
|
shift(201); // 'order'
|
|
break;
|
|
case 202: // 'ordered'
|
|
shift(202); // 'ordered'
|
|
break;
|
|
case 206: // 'parent'
|
|
shift(206); // 'parent'
|
|
break;
|
|
case 212: // 'preceding'
|
|
shift(212); // 'preceding'
|
|
break;
|
|
case 213: // 'preceding-sibling'
|
|
shift(213); // 'preceding-sibling'
|
|
break;
|
|
case 218: // 'rename'
|
|
shift(218); // 'rename'
|
|
break;
|
|
case 219: // 'replace'
|
|
shift(219); // 'replace'
|
|
break;
|
|
case 220: // 'return'
|
|
shift(220); // 'return'
|
|
break;
|
|
case 224: // 'satisfies'
|
|
shift(224); // 'satisfies'
|
|
break;
|
|
case 229: // 'self'
|
|
shift(229); // 'self'
|
|
break;
|
|
case 235: // 'some'
|
|
shift(235); // 'some'
|
|
break;
|
|
case 236: // 'stable'
|
|
shift(236); // 'stable'
|
|
break;
|
|
case 237: // 'start'
|
|
shift(237); // 'start'
|
|
break;
|
|
case 248: // 'to'
|
|
shift(248); // 'to'
|
|
break;
|
|
case 249: // 'treat'
|
|
shift(249); // 'treat'
|
|
break;
|
|
case 250: // 'try'
|
|
shift(250); // 'try'
|
|
break;
|
|
case 254: // 'union'
|
|
shift(254); // 'union'
|
|
break;
|
|
case 256: // 'unordered'
|
|
shift(256); // 'unordered'
|
|
break;
|
|
case 260: // 'validate'
|
|
shift(260); // 'validate'
|
|
break;
|
|
case 266: // 'where'
|
|
shift(266); // 'where'
|
|
break;
|
|
case 270: // 'with'
|
|
shift(270); // 'with'
|
|
break;
|
|
case 274: // 'xquery'
|
|
shift(274); // 'xquery'
|
|
break;
|
|
case 72: // 'allowing'
|
|
shift(72); // 'allowing'
|
|
break;
|
|
case 81: // 'at'
|
|
shift(81); // 'at'
|
|
break;
|
|
case 83: // 'base-uri'
|
|
shift(83); // 'base-uri'
|
|
break;
|
|
case 85: // 'boundary-space'
|
|
shift(85); // 'boundary-space'
|
|
break;
|
|
case 86: // 'break'
|
|
shift(86); // 'break'
|
|
break;
|
|
case 91: // 'catch'
|
|
shift(91); // 'catch'
|
|
break;
|
|
case 98: // 'construction'
|
|
shift(98); // 'construction'
|
|
break;
|
|
case 101: // 'context'
|
|
shift(101); // 'context'
|
|
break;
|
|
case 102: // 'continue'
|
|
shift(102); // 'continue'
|
|
break;
|
|
case 104: // 'copy-namespaces'
|
|
shift(104); // 'copy-namespaces'
|
|
break;
|
|
case 106: // 'decimal-format'
|
|
shift(106); // 'decimal-format'
|
|
break;
|
|
case 125: // 'encoding'
|
|
shift(125); // 'encoding'
|
|
break;
|
|
case 132: // 'exit'
|
|
shift(132); // 'exit'
|
|
break;
|
|
case 133: // 'external'
|
|
shift(133); // 'external'
|
|
break;
|
|
case 141: // 'ft-option'
|
|
shift(141); // 'ft-option'
|
|
break;
|
|
case 154: // 'in'
|
|
shift(154); // 'in'
|
|
break;
|
|
case 155: // 'index'
|
|
shift(155); // 'index'
|
|
break;
|
|
case 161: // 'integrity'
|
|
shift(161); // 'integrity'
|
|
break;
|
|
case 171: // 'lax'
|
|
shift(171); // 'lax'
|
|
break;
|
|
case 192: // 'nodes'
|
|
shift(192); // 'nodes'
|
|
break;
|
|
case 199: // 'option'
|
|
shift(199); // 'option'
|
|
break;
|
|
case 203: // 'ordering'
|
|
shift(203); // 'ordering'
|
|
break;
|
|
case 222: // 'revalidation'
|
|
shift(222); // 'revalidation'
|
|
break;
|
|
case 225: // 'schema'
|
|
shift(225); // 'schema'
|
|
break;
|
|
case 228: // 'score'
|
|
shift(228); // 'score'
|
|
break;
|
|
case 234: // 'sliding'
|
|
shift(234); // 'sliding'
|
|
break;
|
|
case 240: // 'strict'
|
|
shift(240); // 'strict'
|
|
break;
|
|
case 251: // 'tumbling'
|
|
shift(251); // 'tumbling'
|
|
break;
|
|
case 252: // 'type'
|
|
shift(252); // 'type'
|
|
break;
|
|
case 257: // 'updating'
|
|
shift(257); // 'updating'
|
|
break;
|
|
case 261: // 'value'
|
|
shift(261); // 'value'
|
|
break;
|
|
case 262: // 'variable'
|
|
shift(262); // 'variable'
|
|
break;
|
|
case 263: // 'version'
|
|
shift(263); // 'version'
|
|
break;
|
|
case 267: // 'while'
|
|
shift(267); // 'while'
|
|
break;
|
|
case 97: // 'constraint'
|
|
shift(97); // 'constraint'
|
|
break;
|
|
case 176: // 'loop'
|
|
shift(176); // 'loop'
|
|
break;
|
|
case 221: // 'returning'
|
|
shift(221); // 'returning'
|
|
break;
|
|
case 194: // 'object'
|
|
shift(194); // 'object'
|
|
break;
|
|
case 167: // 'json-item'
|
|
shift(167); // 'json-item'
|
|
break;
|
|
default:
|
|
shift(78); // 'array'
|
|
}
|
|
eventHandler.endNonterminal("FunctionName", e0);
|
|
}
|
|
|
|
function try_FunctionName()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 6: // EQName^Token
|
|
shiftT(6); // EQName^Token
|
|
break;
|
|
case 70: // 'after'
|
|
shiftT(70); // 'after'
|
|
break;
|
|
case 73: // 'ancestor'
|
|
shiftT(73); // 'ancestor'
|
|
break;
|
|
case 74: // 'ancestor-or-self'
|
|
shiftT(74); // 'ancestor-or-self'
|
|
break;
|
|
case 75: // 'and'
|
|
shiftT(75); // 'and'
|
|
break;
|
|
case 79: // 'as'
|
|
shiftT(79); // 'as'
|
|
break;
|
|
case 80: // 'ascending'
|
|
shiftT(80); // 'ascending'
|
|
break;
|
|
case 84: // 'before'
|
|
shiftT(84); // 'before'
|
|
break;
|
|
case 88: // 'case'
|
|
shiftT(88); // 'case'
|
|
break;
|
|
case 89: // 'cast'
|
|
shiftT(89); // 'cast'
|
|
break;
|
|
case 90: // 'castable'
|
|
shiftT(90); // 'castable'
|
|
break;
|
|
case 93: // 'child'
|
|
shiftT(93); // 'child'
|
|
break;
|
|
case 94: // 'collation'
|
|
shiftT(94); // 'collation'
|
|
break;
|
|
case 103: // 'copy'
|
|
shiftT(103); // 'copy'
|
|
break;
|
|
case 105: // 'count'
|
|
shiftT(105); // 'count'
|
|
break;
|
|
case 108: // 'declare'
|
|
shiftT(108); // 'declare'
|
|
break;
|
|
case 109: // 'default'
|
|
shiftT(109); // 'default'
|
|
break;
|
|
case 110: // 'delete'
|
|
shiftT(110); // 'delete'
|
|
break;
|
|
case 111: // 'descendant'
|
|
shiftT(111); // 'descendant'
|
|
break;
|
|
case 112: // 'descendant-or-self'
|
|
shiftT(112); // 'descendant-or-self'
|
|
break;
|
|
case 113: // 'descending'
|
|
shiftT(113); // 'descending'
|
|
break;
|
|
case 118: // 'div'
|
|
shiftT(118); // 'div'
|
|
break;
|
|
case 119: // 'document'
|
|
shiftT(119); // 'document'
|
|
break;
|
|
case 122: // 'else'
|
|
shiftT(122); // 'else'
|
|
break;
|
|
case 123: // 'empty'
|
|
shiftT(123); // 'empty'
|
|
break;
|
|
case 126: // 'end'
|
|
shiftT(126); // 'end'
|
|
break;
|
|
case 128: // 'eq'
|
|
shiftT(128); // 'eq'
|
|
break;
|
|
case 129: // 'every'
|
|
shiftT(129); // 'every'
|
|
break;
|
|
case 131: // 'except'
|
|
shiftT(131); // 'except'
|
|
break;
|
|
case 134: // 'first'
|
|
shiftT(134); // 'first'
|
|
break;
|
|
case 135: // 'following'
|
|
shiftT(135); // 'following'
|
|
break;
|
|
case 136: // 'following-sibling'
|
|
shiftT(136); // 'following-sibling'
|
|
break;
|
|
case 137: // 'for'
|
|
shiftT(137); // 'for'
|
|
break;
|
|
case 146: // 'ge'
|
|
shiftT(146); // 'ge'
|
|
break;
|
|
case 148: // 'group'
|
|
shiftT(148); // 'group'
|
|
break;
|
|
case 150: // 'gt'
|
|
shiftT(150); // 'gt'
|
|
break;
|
|
case 151: // 'idiv'
|
|
shiftT(151); // 'idiv'
|
|
break;
|
|
case 153: // 'import'
|
|
shiftT(153); // 'import'
|
|
break;
|
|
case 159: // 'insert'
|
|
shiftT(159); // 'insert'
|
|
break;
|
|
case 160: // 'instance'
|
|
shiftT(160); // 'instance'
|
|
break;
|
|
case 162: // 'intersect'
|
|
shiftT(162); // 'intersect'
|
|
break;
|
|
case 163: // 'into'
|
|
shiftT(163); // 'into'
|
|
break;
|
|
case 164: // 'is'
|
|
shiftT(164); // 'is'
|
|
break;
|
|
case 170: // 'last'
|
|
shiftT(170); // 'last'
|
|
break;
|
|
case 172: // 'le'
|
|
shiftT(172); // 'le'
|
|
break;
|
|
case 174: // 'let'
|
|
shiftT(174); // 'let'
|
|
break;
|
|
case 178: // 'lt'
|
|
shiftT(178); // 'lt'
|
|
break;
|
|
case 180: // 'mod'
|
|
shiftT(180); // 'mod'
|
|
break;
|
|
case 181: // 'modify'
|
|
shiftT(181); // 'modify'
|
|
break;
|
|
case 182: // 'module'
|
|
shiftT(182); // 'module'
|
|
break;
|
|
case 184: // 'namespace'
|
|
shiftT(184); // 'namespace'
|
|
break;
|
|
case 186: // 'ne'
|
|
shiftT(186); // 'ne'
|
|
break;
|
|
case 198: // 'only'
|
|
shiftT(198); // 'only'
|
|
break;
|
|
case 200: // 'or'
|
|
shiftT(200); // 'or'
|
|
break;
|
|
case 201: // 'order'
|
|
shiftT(201); // 'order'
|
|
break;
|
|
case 202: // 'ordered'
|
|
shiftT(202); // 'ordered'
|
|
break;
|
|
case 206: // 'parent'
|
|
shiftT(206); // 'parent'
|
|
break;
|
|
case 212: // 'preceding'
|
|
shiftT(212); // 'preceding'
|
|
break;
|
|
case 213: // 'preceding-sibling'
|
|
shiftT(213); // 'preceding-sibling'
|
|
break;
|
|
case 218: // 'rename'
|
|
shiftT(218); // 'rename'
|
|
break;
|
|
case 219: // 'replace'
|
|
shiftT(219); // 'replace'
|
|
break;
|
|
case 220: // 'return'
|
|
shiftT(220); // 'return'
|
|
break;
|
|
case 224: // 'satisfies'
|
|
shiftT(224); // 'satisfies'
|
|
break;
|
|
case 229: // 'self'
|
|
shiftT(229); // 'self'
|
|
break;
|
|
case 235: // 'some'
|
|
shiftT(235); // 'some'
|
|
break;
|
|
case 236: // 'stable'
|
|
shiftT(236); // 'stable'
|
|
break;
|
|
case 237: // 'start'
|
|
shiftT(237); // 'start'
|
|
break;
|
|
case 248: // 'to'
|
|
shiftT(248); // 'to'
|
|
break;
|
|
case 249: // 'treat'
|
|
shiftT(249); // 'treat'
|
|
break;
|
|
case 250: // 'try'
|
|
shiftT(250); // 'try'
|
|
break;
|
|
case 254: // 'union'
|
|
shiftT(254); // 'union'
|
|
break;
|
|
case 256: // 'unordered'
|
|
shiftT(256); // 'unordered'
|
|
break;
|
|
case 260: // 'validate'
|
|
shiftT(260); // 'validate'
|
|
break;
|
|
case 266: // 'where'
|
|
shiftT(266); // 'where'
|
|
break;
|
|
case 270: // 'with'
|
|
shiftT(270); // 'with'
|
|
break;
|
|
case 274: // 'xquery'
|
|
shiftT(274); // 'xquery'
|
|
break;
|
|
case 72: // 'allowing'
|
|
shiftT(72); // 'allowing'
|
|
break;
|
|
case 81: // 'at'
|
|
shiftT(81); // 'at'
|
|
break;
|
|
case 83: // 'base-uri'
|
|
shiftT(83); // 'base-uri'
|
|
break;
|
|
case 85: // 'boundary-space'
|
|
shiftT(85); // 'boundary-space'
|
|
break;
|
|
case 86: // 'break'
|
|
shiftT(86); // 'break'
|
|
break;
|
|
case 91: // 'catch'
|
|
shiftT(91); // 'catch'
|
|
break;
|
|
case 98: // 'construction'
|
|
shiftT(98); // 'construction'
|
|
break;
|
|
case 101: // 'context'
|
|
shiftT(101); // 'context'
|
|
break;
|
|
case 102: // 'continue'
|
|
shiftT(102); // 'continue'
|
|
break;
|
|
case 104: // 'copy-namespaces'
|
|
shiftT(104); // 'copy-namespaces'
|
|
break;
|
|
case 106: // 'decimal-format'
|
|
shiftT(106); // 'decimal-format'
|
|
break;
|
|
case 125: // 'encoding'
|
|
shiftT(125); // 'encoding'
|
|
break;
|
|
case 132: // 'exit'
|
|
shiftT(132); // 'exit'
|
|
break;
|
|
case 133: // 'external'
|
|
shiftT(133); // 'external'
|
|
break;
|
|
case 141: // 'ft-option'
|
|
shiftT(141); // 'ft-option'
|
|
break;
|
|
case 154: // 'in'
|
|
shiftT(154); // 'in'
|
|
break;
|
|
case 155: // 'index'
|
|
shiftT(155); // 'index'
|
|
break;
|
|
case 161: // 'integrity'
|
|
shiftT(161); // 'integrity'
|
|
break;
|
|
case 171: // 'lax'
|
|
shiftT(171); // 'lax'
|
|
break;
|
|
case 192: // 'nodes'
|
|
shiftT(192); // 'nodes'
|
|
break;
|
|
case 199: // 'option'
|
|
shiftT(199); // 'option'
|
|
break;
|
|
case 203: // 'ordering'
|
|
shiftT(203); // 'ordering'
|
|
break;
|
|
case 222: // 'revalidation'
|
|
shiftT(222); // 'revalidation'
|
|
break;
|
|
case 225: // 'schema'
|
|
shiftT(225); // 'schema'
|
|
break;
|
|
case 228: // 'score'
|
|
shiftT(228); // 'score'
|
|
break;
|
|
case 234: // 'sliding'
|
|
shiftT(234); // 'sliding'
|
|
break;
|
|
case 240: // 'strict'
|
|
shiftT(240); // 'strict'
|
|
break;
|
|
case 251: // 'tumbling'
|
|
shiftT(251); // 'tumbling'
|
|
break;
|
|
case 252: // 'type'
|
|
shiftT(252); // 'type'
|
|
break;
|
|
case 257: // 'updating'
|
|
shiftT(257); // 'updating'
|
|
break;
|
|
case 261: // 'value'
|
|
shiftT(261); // 'value'
|
|
break;
|
|
case 262: // 'variable'
|
|
shiftT(262); // 'variable'
|
|
break;
|
|
case 263: // 'version'
|
|
shiftT(263); // 'version'
|
|
break;
|
|
case 267: // 'while'
|
|
shiftT(267); // 'while'
|
|
break;
|
|
case 97: // 'constraint'
|
|
shiftT(97); // 'constraint'
|
|
break;
|
|
case 176: // 'loop'
|
|
shiftT(176); // 'loop'
|
|
break;
|
|
case 221: // 'returning'
|
|
shiftT(221); // 'returning'
|
|
break;
|
|
case 194: // 'object'
|
|
shiftT(194); // 'object'
|
|
break;
|
|
case 167: // 'json-item'
|
|
shiftT(167); // 'json-item'
|
|
break;
|
|
default:
|
|
shiftT(78); // 'array'
|
|
}
|
|
}
|
|
|
|
function parse_NCName()
|
|
{
|
|
eventHandler.startNonterminal("NCName", e0);
|
|
switch (l1)
|
|
{
|
|
case 19: // NCName^Token
|
|
shift(19); // NCName^Token
|
|
break;
|
|
case 70: // 'after'
|
|
shift(70); // 'after'
|
|
break;
|
|
case 75: // 'and'
|
|
shift(75); // 'and'
|
|
break;
|
|
case 79: // 'as'
|
|
shift(79); // 'as'
|
|
break;
|
|
case 80: // 'ascending'
|
|
shift(80); // 'ascending'
|
|
break;
|
|
case 84: // 'before'
|
|
shift(84); // 'before'
|
|
break;
|
|
case 88: // 'case'
|
|
shift(88); // 'case'
|
|
break;
|
|
case 89: // 'cast'
|
|
shift(89); // 'cast'
|
|
break;
|
|
case 90: // 'castable'
|
|
shift(90); // 'castable'
|
|
break;
|
|
case 94: // 'collation'
|
|
shift(94); // 'collation'
|
|
break;
|
|
case 105: // 'count'
|
|
shift(105); // 'count'
|
|
break;
|
|
case 109: // 'default'
|
|
shift(109); // 'default'
|
|
break;
|
|
case 113: // 'descending'
|
|
shift(113); // 'descending'
|
|
break;
|
|
case 118: // 'div'
|
|
shift(118); // 'div'
|
|
break;
|
|
case 122: // 'else'
|
|
shift(122); // 'else'
|
|
break;
|
|
case 123: // 'empty'
|
|
shift(123); // 'empty'
|
|
break;
|
|
case 126: // 'end'
|
|
shift(126); // 'end'
|
|
break;
|
|
case 128: // 'eq'
|
|
shift(128); // 'eq'
|
|
break;
|
|
case 131: // 'except'
|
|
shift(131); // 'except'
|
|
break;
|
|
case 137: // 'for'
|
|
shift(137); // 'for'
|
|
break;
|
|
case 146: // 'ge'
|
|
shift(146); // 'ge'
|
|
break;
|
|
case 148: // 'group'
|
|
shift(148); // 'group'
|
|
break;
|
|
case 150: // 'gt'
|
|
shift(150); // 'gt'
|
|
break;
|
|
case 151: // 'idiv'
|
|
shift(151); // 'idiv'
|
|
break;
|
|
case 160: // 'instance'
|
|
shift(160); // 'instance'
|
|
break;
|
|
case 162: // 'intersect'
|
|
shift(162); // 'intersect'
|
|
break;
|
|
case 163: // 'into'
|
|
shift(163); // 'into'
|
|
break;
|
|
case 164: // 'is'
|
|
shift(164); // 'is'
|
|
break;
|
|
case 172: // 'le'
|
|
shift(172); // 'le'
|
|
break;
|
|
case 174: // 'let'
|
|
shift(174); // 'let'
|
|
break;
|
|
case 178: // 'lt'
|
|
shift(178); // 'lt'
|
|
break;
|
|
case 180: // 'mod'
|
|
shift(180); // 'mod'
|
|
break;
|
|
case 181: // 'modify'
|
|
shift(181); // 'modify'
|
|
break;
|
|
case 186: // 'ne'
|
|
shift(186); // 'ne'
|
|
break;
|
|
case 198: // 'only'
|
|
shift(198); // 'only'
|
|
break;
|
|
case 200: // 'or'
|
|
shift(200); // 'or'
|
|
break;
|
|
case 201: // 'order'
|
|
shift(201); // 'order'
|
|
break;
|
|
case 220: // 'return'
|
|
shift(220); // 'return'
|
|
break;
|
|
case 224: // 'satisfies'
|
|
shift(224); // 'satisfies'
|
|
break;
|
|
case 236: // 'stable'
|
|
shift(236); // 'stable'
|
|
break;
|
|
case 237: // 'start'
|
|
shift(237); // 'start'
|
|
break;
|
|
case 248: // 'to'
|
|
shift(248); // 'to'
|
|
break;
|
|
case 249: // 'treat'
|
|
shift(249); // 'treat'
|
|
break;
|
|
case 254: // 'union'
|
|
shift(254); // 'union'
|
|
break;
|
|
case 266: // 'where'
|
|
shift(266); // 'where'
|
|
break;
|
|
case 270: // 'with'
|
|
shift(270); // 'with'
|
|
break;
|
|
case 73: // 'ancestor'
|
|
shift(73); // 'ancestor'
|
|
break;
|
|
case 74: // 'ancestor-or-self'
|
|
shift(74); // 'ancestor-or-self'
|
|
break;
|
|
case 82: // 'attribute'
|
|
shift(82); // 'attribute'
|
|
break;
|
|
case 93: // 'child'
|
|
shift(93); // 'child'
|
|
break;
|
|
case 96: // 'comment'
|
|
shift(96); // 'comment'
|
|
break;
|
|
case 103: // 'copy'
|
|
shift(103); // 'copy'
|
|
break;
|
|
case 108: // 'declare'
|
|
shift(108); // 'declare'
|
|
break;
|
|
case 110: // 'delete'
|
|
shift(110); // 'delete'
|
|
break;
|
|
case 111: // 'descendant'
|
|
shift(111); // 'descendant'
|
|
break;
|
|
case 112: // 'descendant-or-self'
|
|
shift(112); // 'descendant-or-self'
|
|
break;
|
|
case 119: // 'document'
|
|
shift(119); // 'document'
|
|
break;
|
|
case 120: // 'document-node'
|
|
shift(120); // 'document-node'
|
|
break;
|
|
case 121: // 'element'
|
|
shift(121); // 'element'
|
|
break;
|
|
case 124: // 'empty-sequence'
|
|
shift(124); // 'empty-sequence'
|
|
break;
|
|
case 129: // 'every'
|
|
shift(129); // 'every'
|
|
break;
|
|
case 134: // 'first'
|
|
shift(134); // 'first'
|
|
break;
|
|
case 135: // 'following'
|
|
shift(135); // 'following'
|
|
break;
|
|
case 136: // 'following-sibling'
|
|
shift(136); // 'following-sibling'
|
|
break;
|
|
case 145: // 'function'
|
|
shift(145); // 'function'
|
|
break;
|
|
case 152: // 'if'
|
|
shift(152); // 'if'
|
|
break;
|
|
case 153: // 'import'
|
|
shift(153); // 'import'
|
|
break;
|
|
case 159: // 'insert'
|
|
shift(159); // 'insert'
|
|
break;
|
|
case 165: // 'item'
|
|
shift(165); // 'item'
|
|
break;
|
|
case 170: // 'last'
|
|
shift(170); // 'last'
|
|
break;
|
|
case 182: // 'module'
|
|
shift(182); // 'module'
|
|
break;
|
|
case 184: // 'namespace'
|
|
shift(184); // 'namespace'
|
|
break;
|
|
case 185: // 'namespace-node'
|
|
shift(185); // 'namespace-node'
|
|
break;
|
|
case 191: // 'node'
|
|
shift(191); // 'node'
|
|
break;
|
|
case 202: // 'ordered'
|
|
shift(202); // 'ordered'
|
|
break;
|
|
case 206: // 'parent'
|
|
shift(206); // 'parent'
|
|
break;
|
|
case 212: // 'preceding'
|
|
shift(212); // 'preceding'
|
|
break;
|
|
case 213: // 'preceding-sibling'
|
|
shift(213); // 'preceding-sibling'
|
|
break;
|
|
case 216: // 'processing-instruction'
|
|
shift(216); // 'processing-instruction'
|
|
break;
|
|
case 218: // 'rename'
|
|
shift(218); // 'rename'
|
|
break;
|
|
case 219: // 'replace'
|
|
shift(219); // 'replace'
|
|
break;
|
|
case 226: // 'schema-attribute'
|
|
shift(226); // 'schema-attribute'
|
|
break;
|
|
case 227: // 'schema-element'
|
|
shift(227); // 'schema-element'
|
|
break;
|
|
case 229: // 'self'
|
|
shift(229); // 'self'
|
|
break;
|
|
case 235: // 'some'
|
|
shift(235); // 'some'
|
|
break;
|
|
case 243: // 'switch'
|
|
shift(243); // 'switch'
|
|
break;
|
|
case 244: // 'text'
|
|
shift(244); // 'text'
|
|
break;
|
|
case 250: // 'try'
|
|
shift(250); // 'try'
|
|
break;
|
|
case 253: // 'typeswitch'
|
|
shift(253); // 'typeswitch'
|
|
break;
|
|
case 256: // 'unordered'
|
|
shift(256); // 'unordered'
|
|
break;
|
|
case 260: // 'validate'
|
|
shift(260); // 'validate'
|
|
break;
|
|
case 262: // 'variable'
|
|
shift(262); // 'variable'
|
|
break;
|
|
case 274: // 'xquery'
|
|
shift(274); // 'xquery'
|
|
break;
|
|
case 72: // 'allowing'
|
|
shift(72); // 'allowing'
|
|
break;
|
|
case 81: // 'at'
|
|
shift(81); // 'at'
|
|
break;
|
|
case 83: // 'base-uri'
|
|
shift(83); // 'base-uri'
|
|
break;
|
|
case 85: // 'boundary-space'
|
|
shift(85); // 'boundary-space'
|
|
break;
|
|
case 86: // 'break'
|
|
shift(86); // 'break'
|
|
break;
|
|
case 91: // 'catch'
|
|
shift(91); // 'catch'
|
|
break;
|
|
case 98: // 'construction'
|
|
shift(98); // 'construction'
|
|
break;
|
|
case 101: // 'context'
|
|
shift(101); // 'context'
|
|
break;
|
|
case 102: // 'continue'
|
|
shift(102); // 'continue'
|
|
break;
|
|
case 104: // 'copy-namespaces'
|
|
shift(104); // 'copy-namespaces'
|
|
break;
|
|
case 106: // 'decimal-format'
|
|
shift(106); // 'decimal-format'
|
|
break;
|
|
case 125: // 'encoding'
|
|
shift(125); // 'encoding'
|
|
break;
|
|
case 132: // 'exit'
|
|
shift(132); // 'exit'
|
|
break;
|
|
case 133: // 'external'
|
|
shift(133); // 'external'
|
|
break;
|
|
case 141: // 'ft-option'
|
|
shift(141); // 'ft-option'
|
|
break;
|
|
case 154: // 'in'
|
|
shift(154); // 'in'
|
|
break;
|
|
case 155: // 'index'
|
|
shift(155); // 'index'
|
|
break;
|
|
case 161: // 'integrity'
|
|
shift(161); // 'integrity'
|
|
break;
|
|
case 171: // 'lax'
|
|
shift(171); // 'lax'
|
|
break;
|
|
case 192: // 'nodes'
|
|
shift(192); // 'nodes'
|
|
break;
|
|
case 199: // 'option'
|
|
shift(199); // 'option'
|
|
break;
|
|
case 203: // 'ordering'
|
|
shift(203); // 'ordering'
|
|
break;
|
|
case 222: // 'revalidation'
|
|
shift(222); // 'revalidation'
|
|
break;
|
|
case 225: // 'schema'
|
|
shift(225); // 'schema'
|
|
break;
|
|
case 228: // 'score'
|
|
shift(228); // 'score'
|
|
break;
|
|
case 234: // 'sliding'
|
|
shift(234); // 'sliding'
|
|
break;
|
|
case 240: // 'strict'
|
|
shift(240); // 'strict'
|
|
break;
|
|
case 251: // 'tumbling'
|
|
shift(251); // 'tumbling'
|
|
break;
|
|
case 252: // 'type'
|
|
shift(252); // 'type'
|
|
break;
|
|
case 257: // 'updating'
|
|
shift(257); // 'updating'
|
|
break;
|
|
case 261: // 'value'
|
|
shift(261); // 'value'
|
|
break;
|
|
case 263: // 'version'
|
|
shift(263); // 'version'
|
|
break;
|
|
case 267: // 'while'
|
|
shift(267); // 'while'
|
|
break;
|
|
case 97: // 'constraint'
|
|
shift(97); // 'constraint'
|
|
break;
|
|
case 176: // 'loop'
|
|
shift(176); // 'loop'
|
|
break;
|
|
default:
|
|
shift(221); // 'returning'
|
|
}
|
|
eventHandler.endNonterminal("NCName", e0);
|
|
}
|
|
|
|
function try_NCName()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 19: // NCName^Token
|
|
shiftT(19); // NCName^Token
|
|
break;
|
|
case 70: // 'after'
|
|
shiftT(70); // 'after'
|
|
break;
|
|
case 75: // 'and'
|
|
shiftT(75); // 'and'
|
|
break;
|
|
case 79: // 'as'
|
|
shiftT(79); // 'as'
|
|
break;
|
|
case 80: // 'ascending'
|
|
shiftT(80); // 'ascending'
|
|
break;
|
|
case 84: // 'before'
|
|
shiftT(84); // 'before'
|
|
break;
|
|
case 88: // 'case'
|
|
shiftT(88); // 'case'
|
|
break;
|
|
case 89: // 'cast'
|
|
shiftT(89); // 'cast'
|
|
break;
|
|
case 90: // 'castable'
|
|
shiftT(90); // 'castable'
|
|
break;
|
|
case 94: // 'collation'
|
|
shiftT(94); // 'collation'
|
|
break;
|
|
case 105: // 'count'
|
|
shiftT(105); // 'count'
|
|
break;
|
|
case 109: // 'default'
|
|
shiftT(109); // 'default'
|
|
break;
|
|
case 113: // 'descending'
|
|
shiftT(113); // 'descending'
|
|
break;
|
|
case 118: // 'div'
|
|
shiftT(118); // 'div'
|
|
break;
|
|
case 122: // 'else'
|
|
shiftT(122); // 'else'
|
|
break;
|
|
case 123: // 'empty'
|
|
shiftT(123); // 'empty'
|
|
break;
|
|
case 126: // 'end'
|
|
shiftT(126); // 'end'
|
|
break;
|
|
case 128: // 'eq'
|
|
shiftT(128); // 'eq'
|
|
break;
|
|
case 131: // 'except'
|
|
shiftT(131); // 'except'
|
|
break;
|
|
case 137: // 'for'
|
|
shiftT(137); // 'for'
|
|
break;
|
|
case 146: // 'ge'
|
|
shiftT(146); // 'ge'
|
|
break;
|
|
case 148: // 'group'
|
|
shiftT(148); // 'group'
|
|
break;
|
|
case 150: // 'gt'
|
|
shiftT(150); // 'gt'
|
|
break;
|
|
case 151: // 'idiv'
|
|
shiftT(151); // 'idiv'
|
|
break;
|
|
case 160: // 'instance'
|
|
shiftT(160); // 'instance'
|
|
break;
|
|
case 162: // 'intersect'
|
|
shiftT(162); // 'intersect'
|
|
break;
|
|
case 163: // 'into'
|
|
shiftT(163); // 'into'
|
|
break;
|
|
case 164: // 'is'
|
|
shiftT(164); // 'is'
|
|
break;
|
|
case 172: // 'le'
|
|
shiftT(172); // 'le'
|
|
break;
|
|
case 174: // 'let'
|
|
shiftT(174); // 'let'
|
|
break;
|
|
case 178: // 'lt'
|
|
shiftT(178); // 'lt'
|
|
break;
|
|
case 180: // 'mod'
|
|
shiftT(180); // 'mod'
|
|
break;
|
|
case 181: // 'modify'
|
|
shiftT(181); // 'modify'
|
|
break;
|
|
case 186: // 'ne'
|
|
shiftT(186); // 'ne'
|
|
break;
|
|
case 198: // 'only'
|
|
shiftT(198); // 'only'
|
|
break;
|
|
case 200: // 'or'
|
|
shiftT(200); // 'or'
|
|
break;
|
|
case 201: // 'order'
|
|
shiftT(201); // 'order'
|
|
break;
|
|
case 220: // 'return'
|
|
shiftT(220); // 'return'
|
|
break;
|
|
case 224: // 'satisfies'
|
|
shiftT(224); // 'satisfies'
|
|
break;
|
|
case 236: // 'stable'
|
|
shiftT(236); // 'stable'
|
|
break;
|
|
case 237: // 'start'
|
|
shiftT(237); // 'start'
|
|
break;
|
|
case 248: // 'to'
|
|
shiftT(248); // 'to'
|
|
break;
|
|
case 249: // 'treat'
|
|
shiftT(249); // 'treat'
|
|
break;
|
|
case 254: // 'union'
|
|
shiftT(254); // 'union'
|
|
break;
|
|
case 266: // 'where'
|
|
shiftT(266); // 'where'
|
|
break;
|
|
case 270: // 'with'
|
|
shiftT(270); // 'with'
|
|
break;
|
|
case 73: // 'ancestor'
|
|
shiftT(73); // 'ancestor'
|
|
break;
|
|
case 74: // 'ancestor-or-self'
|
|
shiftT(74); // 'ancestor-or-self'
|
|
break;
|
|
case 82: // 'attribute'
|
|
shiftT(82); // 'attribute'
|
|
break;
|
|
case 93: // 'child'
|
|
shiftT(93); // 'child'
|
|
break;
|
|
case 96: // 'comment'
|
|
shiftT(96); // 'comment'
|
|
break;
|
|
case 103: // 'copy'
|
|
shiftT(103); // 'copy'
|
|
break;
|
|
case 108: // 'declare'
|
|
shiftT(108); // 'declare'
|
|
break;
|
|
case 110: // 'delete'
|
|
shiftT(110); // 'delete'
|
|
break;
|
|
case 111: // 'descendant'
|
|
shiftT(111); // 'descendant'
|
|
break;
|
|
case 112: // 'descendant-or-self'
|
|
shiftT(112); // 'descendant-or-self'
|
|
break;
|
|
case 119: // 'document'
|
|
shiftT(119); // 'document'
|
|
break;
|
|
case 120: // 'document-node'
|
|
shiftT(120); // 'document-node'
|
|
break;
|
|
case 121: // 'element'
|
|
shiftT(121); // 'element'
|
|
break;
|
|
case 124: // 'empty-sequence'
|
|
shiftT(124); // 'empty-sequence'
|
|
break;
|
|
case 129: // 'every'
|
|
shiftT(129); // 'every'
|
|
break;
|
|
case 134: // 'first'
|
|
shiftT(134); // 'first'
|
|
break;
|
|
case 135: // 'following'
|
|
shiftT(135); // 'following'
|
|
break;
|
|
case 136: // 'following-sibling'
|
|
shiftT(136); // 'following-sibling'
|
|
break;
|
|
case 145: // 'function'
|
|
shiftT(145); // 'function'
|
|
break;
|
|
case 152: // 'if'
|
|
shiftT(152); // 'if'
|
|
break;
|
|
case 153: // 'import'
|
|
shiftT(153); // 'import'
|
|
break;
|
|
case 159: // 'insert'
|
|
shiftT(159); // 'insert'
|
|
break;
|
|
case 165: // 'item'
|
|
shiftT(165); // 'item'
|
|
break;
|
|
case 170: // 'last'
|
|
shiftT(170); // 'last'
|
|
break;
|
|
case 182: // 'module'
|
|
shiftT(182); // 'module'
|
|
break;
|
|
case 184: // 'namespace'
|
|
shiftT(184); // 'namespace'
|
|
break;
|
|
case 185: // 'namespace-node'
|
|
shiftT(185); // 'namespace-node'
|
|
break;
|
|
case 191: // 'node'
|
|
shiftT(191); // 'node'
|
|
break;
|
|
case 202: // 'ordered'
|
|
shiftT(202); // 'ordered'
|
|
break;
|
|
case 206: // 'parent'
|
|
shiftT(206); // 'parent'
|
|
break;
|
|
case 212: // 'preceding'
|
|
shiftT(212); // 'preceding'
|
|
break;
|
|
case 213: // 'preceding-sibling'
|
|
shiftT(213); // 'preceding-sibling'
|
|
break;
|
|
case 216: // 'processing-instruction'
|
|
shiftT(216); // 'processing-instruction'
|
|
break;
|
|
case 218: // 'rename'
|
|
shiftT(218); // 'rename'
|
|
break;
|
|
case 219: // 'replace'
|
|
shiftT(219); // 'replace'
|
|
break;
|
|
case 226: // 'schema-attribute'
|
|
shiftT(226); // 'schema-attribute'
|
|
break;
|
|
case 227: // 'schema-element'
|
|
shiftT(227); // 'schema-element'
|
|
break;
|
|
case 229: // 'self'
|
|
shiftT(229); // 'self'
|
|
break;
|
|
case 235: // 'some'
|
|
shiftT(235); // 'some'
|
|
break;
|
|
case 243: // 'switch'
|
|
shiftT(243); // 'switch'
|
|
break;
|
|
case 244: // 'text'
|
|
shiftT(244); // 'text'
|
|
break;
|
|
case 250: // 'try'
|
|
shiftT(250); // 'try'
|
|
break;
|
|
case 253: // 'typeswitch'
|
|
shiftT(253); // 'typeswitch'
|
|
break;
|
|
case 256: // 'unordered'
|
|
shiftT(256); // 'unordered'
|
|
break;
|
|
case 260: // 'validate'
|
|
shiftT(260); // 'validate'
|
|
break;
|
|
case 262: // 'variable'
|
|
shiftT(262); // 'variable'
|
|
break;
|
|
case 274: // 'xquery'
|
|
shiftT(274); // 'xquery'
|
|
break;
|
|
case 72: // 'allowing'
|
|
shiftT(72); // 'allowing'
|
|
break;
|
|
case 81: // 'at'
|
|
shiftT(81); // 'at'
|
|
break;
|
|
case 83: // 'base-uri'
|
|
shiftT(83); // 'base-uri'
|
|
break;
|
|
case 85: // 'boundary-space'
|
|
shiftT(85); // 'boundary-space'
|
|
break;
|
|
case 86: // 'break'
|
|
shiftT(86); // 'break'
|
|
break;
|
|
case 91: // 'catch'
|
|
shiftT(91); // 'catch'
|
|
break;
|
|
case 98: // 'construction'
|
|
shiftT(98); // 'construction'
|
|
break;
|
|
case 101: // 'context'
|
|
shiftT(101); // 'context'
|
|
break;
|
|
case 102: // 'continue'
|
|
shiftT(102); // 'continue'
|
|
break;
|
|
case 104: // 'copy-namespaces'
|
|
shiftT(104); // 'copy-namespaces'
|
|
break;
|
|
case 106: // 'decimal-format'
|
|
shiftT(106); // 'decimal-format'
|
|
break;
|
|
case 125: // 'encoding'
|
|
shiftT(125); // 'encoding'
|
|
break;
|
|
case 132: // 'exit'
|
|
shiftT(132); // 'exit'
|
|
break;
|
|
case 133: // 'external'
|
|
shiftT(133); // 'external'
|
|
break;
|
|
case 141: // 'ft-option'
|
|
shiftT(141); // 'ft-option'
|
|
break;
|
|
case 154: // 'in'
|
|
shiftT(154); // 'in'
|
|
break;
|
|
case 155: // 'index'
|
|
shiftT(155); // 'index'
|
|
break;
|
|
case 161: // 'integrity'
|
|
shiftT(161); // 'integrity'
|
|
break;
|
|
case 171: // 'lax'
|
|
shiftT(171); // 'lax'
|
|
break;
|
|
case 192: // 'nodes'
|
|
shiftT(192); // 'nodes'
|
|
break;
|
|
case 199: // 'option'
|
|
shiftT(199); // 'option'
|
|
break;
|
|
case 203: // 'ordering'
|
|
shiftT(203); // 'ordering'
|
|
break;
|
|
case 222: // 'revalidation'
|
|
shiftT(222); // 'revalidation'
|
|
break;
|
|
case 225: // 'schema'
|
|
shiftT(225); // 'schema'
|
|
break;
|
|
case 228: // 'score'
|
|
shiftT(228); // 'score'
|
|
break;
|
|
case 234: // 'sliding'
|
|
shiftT(234); // 'sliding'
|
|
break;
|
|
case 240: // 'strict'
|
|
shiftT(240); // 'strict'
|
|
break;
|
|
case 251: // 'tumbling'
|
|
shiftT(251); // 'tumbling'
|
|
break;
|
|
case 252: // 'type'
|
|
shiftT(252); // 'type'
|
|
break;
|
|
case 257: // 'updating'
|
|
shiftT(257); // 'updating'
|
|
break;
|
|
case 261: // 'value'
|
|
shiftT(261); // 'value'
|
|
break;
|
|
case 263: // 'version'
|
|
shiftT(263); // 'version'
|
|
break;
|
|
case 267: // 'while'
|
|
shiftT(267); // 'while'
|
|
break;
|
|
case 97: // 'constraint'
|
|
shiftT(97); // 'constraint'
|
|
break;
|
|
case 176: // 'loop'
|
|
shiftT(176); // 'loop'
|
|
break;
|
|
default:
|
|
shiftT(221); // 'returning'
|
|
}
|
|
}
|
|
|
|
function parse_MainModule()
|
|
{
|
|
eventHandler.startNonterminal("MainModule", e0);
|
|
parse_Prolog();
|
|
whitespace();
|
|
parse_Program();
|
|
eventHandler.endNonterminal("MainModule", e0);
|
|
}
|
|
|
|
function parse_Program()
|
|
{
|
|
eventHandler.startNonterminal("Program", e0);
|
|
parse_StatementsAndOptionalExpr();
|
|
eventHandler.endNonterminal("Program", e0);
|
|
}
|
|
|
|
function parse_Statements()
|
|
{
|
|
eventHandler.startNonterminal("Statements", e0);
|
|
for (;;)
|
|
{
|
|
lookahead1W(274); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
switch (l1)
|
|
{
|
|
case 34: // '('
|
|
lookahead2W(269); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | ')' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
break;
|
|
case 35: // '(#'
|
|
lookahead2(250); // EQName^Token | S | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery'
|
|
break;
|
|
case 46: // '/'
|
|
lookahead2W(281); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '!' | '!=' | '$' | '%' | '(' | '(:' | '*' | '+' |
|
|
// ',' | '-' | '.' | '..' | ';' | '<' | '<!--' | '<<' | '<=' | '<?' | '=' | '>' |
|
|
// '>=' | '>>' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'contains' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '|' | '||' | '}'
|
|
break;
|
|
case 47: // '//'
|
|
lookahead2W(263); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '<' | '<!--' |
|
|
// '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery' | '{' | '{|'
|
|
break;
|
|
case 54: // '<'
|
|
lookahead2(4); // QName
|
|
break;
|
|
case 55: // '<!--'
|
|
lookahead2(1); // DirCommentContents
|
|
break;
|
|
case 59: // '<?'
|
|
lookahead2(3); // PITarget
|
|
break;
|
|
case 66: // '@'
|
|
lookahead2W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
break;
|
|
case 68: // '['
|
|
lookahead2W(271); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | ']' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
break;
|
|
case 77: // 'append'
|
|
lookahead2W(56); // S^WS | '(:' | 'json'
|
|
break;
|
|
case 82: // 'attribute'
|
|
lookahead2W(278); // EQName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' |
|
|
// '-' | '/' | '//' | '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' |
|
|
// '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'array' |
|
|
// 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' |
|
|
// 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' |
|
|
// 'collation' | 'comment' | 'constraint' | 'construction' | 'contains' |
|
|
// 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '|' | '||' | '}'
|
|
break;
|
|
case 121: // 'element'
|
|
lookahead2W(277); // EQName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' |
|
|
// '-' | '/' | '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'contains' | 'context' | 'continue' |
|
|
// 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '|' | '||' | '}'
|
|
break;
|
|
case 132: // 'exit'
|
|
lookahead2W(202); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' |
|
|
// 'returning' | 'to' | 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 137: // 'for'
|
|
lookahead2W(206); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'sliding' |
|
|
// 'to' | 'treat' | 'tumbling' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 174: // 'let'
|
|
lookahead2W(204); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'score' |
|
|
// 'to' | 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 218: // 'rename'
|
|
lookahead2W(205); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'json' | 'le' | 'lt' | 'mod' | 'ne' | 'node' |
|
|
// 'or' | 'to' | 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 219: // 'replace'
|
|
lookahead2W(208); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'json' | 'le' | 'lt' | 'mod' | 'ne' | 'node' |
|
|
// 'or' | 'to' | 'treat' | 'union' | 'value' | '|' | '||' | '}'
|
|
break;
|
|
case 260: // 'validate'
|
|
lookahead2W(209); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'lax' | 'le' | 'lt' | 'mod' | 'ne' | 'or' |
|
|
// 'strict' | 'to' | 'treat' | 'type' | 'union' | '{' | '|' | '||' | '}'
|
|
break;
|
|
case 276: // '{'
|
|
lookahead2W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
break;
|
|
case 278: // '{|'
|
|
lookahead2W(272); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '|}'
|
|
break;
|
|
case 5: // Wildcard
|
|
case 45: // '..'
|
|
lookahead2W(186); // S^WS | EOF | '!' | '!=' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' | ';' | '<' |
|
|
// '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 31: // '$'
|
|
case 32: // '%'
|
|
lookahead2W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
break;
|
|
case 40: // '+'
|
|
case 42: // '-'
|
|
lookahead2W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
break;
|
|
case 86: // 'break'
|
|
case 102: // 'continue'
|
|
lookahead2W(200); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'loop' | 'lt' | 'mod' | 'ne' | 'or' |
|
|
// 'to' | 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 110: // 'delete'
|
|
case 159: // 'insert'
|
|
lookahead2W(207); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'json' | 'le' | 'lt' | 'mod' | 'ne' | 'node' |
|
|
// 'nodes' | 'or' | 'to' | 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 124: // 'empty-sequence'
|
|
case 165: // 'item'
|
|
lookahead2W(191); // S^WS | EOF | '!' | '!=' | '#' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 184: // 'namespace'
|
|
case 216: // 'processing-instruction'
|
|
lookahead2W(266); // NCName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' |
|
|
// '-' | '/' | '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'contains' | 'context' | 'continue' |
|
|
// 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'last' |
|
|
// 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '|' | '||' | '}'
|
|
break;
|
|
case 103: // 'copy'
|
|
case 129: // 'every'
|
|
case 235: // 'some'
|
|
case 262: // 'variable'
|
|
lookahead2W(197); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 8: // IntegerLiteral
|
|
case 9: // DecimalLiteral
|
|
case 10: // DoubleLiteral
|
|
case 11: // StringLiteral
|
|
case 44: // '.'
|
|
lookahead2W(192); // S^WS | EOF | '!' | '!=' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 96: // 'comment'
|
|
case 119: // 'document'
|
|
case 202: // 'ordered'
|
|
case 244: // 'text'
|
|
case 250: // 'try'
|
|
case 256: // 'unordered'
|
|
lookahead2W(203); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' |
|
|
// 'treat' | 'union' | '{' | '|' | '||' | '}'
|
|
break;
|
|
case 73: // 'ancestor'
|
|
case 74: // 'ancestor-or-self'
|
|
case 93: // 'child'
|
|
case 111: // 'descendant'
|
|
case 112: // 'descendant-or-self'
|
|
case 135: // 'following'
|
|
case 136: // 'following-sibling'
|
|
case 206: // 'parent'
|
|
case 212: // 'preceding'
|
|
case 213: // 'preceding-sibling'
|
|
case 229: // 'self'
|
|
lookahead2W(198); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 6: // EQName^Token
|
|
case 70: // 'after'
|
|
case 72: // 'allowing'
|
|
case 75: // 'and'
|
|
case 78: // 'array'
|
|
case 79: // 'as'
|
|
case 80: // 'ascending'
|
|
case 81: // 'at'
|
|
case 83: // 'base-uri'
|
|
case 84: // 'before'
|
|
case 85: // 'boundary-space'
|
|
case 88: // 'case'
|
|
case 89: // 'cast'
|
|
case 90: // 'castable'
|
|
case 91: // 'catch'
|
|
case 94: // 'collation'
|
|
case 97: // 'constraint'
|
|
case 98: // 'construction'
|
|
case 101: // 'context'
|
|
case 104: // 'copy-namespaces'
|
|
case 105: // 'count'
|
|
case 106: // 'decimal-format'
|
|
case 108: // 'declare'
|
|
case 109: // 'default'
|
|
case 113: // 'descending'
|
|
case 118: // 'div'
|
|
case 120: // 'document-node'
|
|
case 122: // 'else'
|
|
case 123: // 'empty'
|
|
case 125: // 'encoding'
|
|
case 126: // 'end'
|
|
case 128: // 'eq'
|
|
case 131: // 'except'
|
|
case 133: // 'external'
|
|
case 134: // 'first'
|
|
case 141: // 'ft-option'
|
|
case 145: // 'function'
|
|
case 146: // 'ge'
|
|
case 148: // 'group'
|
|
case 150: // 'gt'
|
|
case 151: // 'idiv'
|
|
case 152: // 'if'
|
|
case 153: // 'import'
|
|
case 154: // 'in'
|
|
case 155: // 'index'
|
|
case 160: // 'instance'
|
|
case 161: // 'integrity'
|
|
case 162: // 'intersect'
|
|
case 163: // 'into'
|
|
case 164: // 'is'
|
|
case 167: // 'json-item'
|
|
case 170: // 'last'
|
|
case 171: // 'lax'
|
|
case 172: // 'le'
|
|
case 176: // 'loop'
|
|
case 178: // 'lt'
|
|
case 180: // 'mod'
|
|
case 181: // 'modify'
|
|
case 182: // 'module'
|
|
case 185: // 'namespace-node'
|
|
case 186: // 'ne'
|
|
case 191: // 'node'
|
|
case 192: // 'nodes'
|
|
case 194: // 'object'
|
|
case 198: // 'only'
|
|
case 199: // 'option'
|
|
case 200: // 'or'
|
|
case 201: // 'order'
|
|
case 203: // 'ordering'
|
|
case 220: // 'return'
|
|
case 221: // 'returning'
|
|
case 222: // 'revalidation'
|
|
case 224: // 'satisfies'
|
|
case 225: // 'schema'
|
|
case 226: // 'schema-attribute'
|
|
case 227: // 'schema-element'
|
|
case 228: // 'score'
|
|
case 234: // 'sliding'
|
|
case 236: // 'stable'
|
|
case 237: // 'start'
|
|
case 240: // 'strict'
|
|
case 243: // 'switch'
|
|
case 248: // 'to'
|
|
case 249: // 'treat'
|
|
case 251: // 'tumbling'
|
|
case 252: // 'type'
|
|
case 253: // 'typeswitch'
|
|
case 254: // 'union'
|
|
case 257: // 'updating'
|
|
case 261: // 'value'
|
|
case 263: // 'version'
|
|
case 266: // 'where'
|
|
case 267: // 'while'
|
|
case 270: // 'with'
|
|
case 274: // 'xquery'
|
|
lookahead2W(195); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk != 25 // EOF
|
|
&& lk != 282 // '}'
|
|
&& lk != 12805 // Wildcard EOF
|
|
&& lk != 12806 // EQName^Token EOF
|
|
&& lk != 12808 // IntegerLiteral EOF
|
|
&& lk != 12809 // DecimalLiteral EOF
|
|
&& lk != 12810 // DoubleLiteral EOF
|
|
&& lk != 12811 // StringLiteral EOF
|
|
&& lk != 12844 // '.' EOF
|
|
&& lk != 12845 // '..' EOF
|
|
&& lk != 12846 // '/' EOF
|
|
&& lk != 12870 // 'after' EOF
|
|
&& lk != 12872 // 'allowing' EOF
|
|
&& lk != 12873 // 'ancestor' EOF
|
|
&& lk != 12874 // 'ancestor-or-self' EOF
|
|
&& lk != 12875 // 'and' EOF
|
|
&& lk != 12878 // 'array' EOF
|
|
&& lk != 12879 // 'as' EOF
|
|
&& lk != 12880 // 'ascending' EOF
|
|
&& lk != 12881 // 'at' EOF
|
|
&& lk != 12882 // 'attribute' EOF
|
|
&& lk != 12883 // 'base-uri' EOF
|
|
&& lk != 12884 // 'before' EOF
|
|
&& lk != 12885 // 'boundary-space' EOF
|
|
&& lk != 12886 // 'break' EOF
|
|
&& lk != 12888 // 'case' EOF
|
|
&& lk != 12889 // 'cast' EOF
|
|
&& lk != 12890 // 'castable' EOF
|
|
&& lk != 12891 // 'catch' EOF
|
|
&& lk != 12893 // 'child' EOF
|
|
&& lk != 12894 // 'collation' EOF
|
|
&& lk != 12896 // 'comment' EOF
|
|
&& lk != 12897 // 'constraint' EOF
|
|
&& lk != 12898 // 'construction' EOF
|
|
&& lk != 12901 // 'context' EOF
|
|
&& lk != 12902 // 'continue' EOF
|
|
&& lk != 12903 // 'copy' EOF
|
|
&& lk != 12904 // 'copy-namespaces' EOF
|
|
&& lk != 12905 // 'count' EOF
|
|
&& lk != 12906 // 'decimal-format' EOF
|
|
&& lk != 12908 // 'declare' EOF
|
|
&& lk != 12909 // 'default' EOF
|
|
&& lk != 12910 // 'delete' EOF
|
|
&& lk != 12911 // 'descendant' EOF
|
|
&& lk != 12912 // 'descendant-or-self' EOF
|
|
&& lk != 12913 // 'descending' EOF
|
|
&& lk != 12918 // 'div' EOF
|
|
&& lk != 12919 // 'document' EOF
|
|
&& lk != 12920 // 'document-node' EOF
|
|
&& lk != 12921 // 'element' EOF
|
|
&& lk != 12922 // 'else' EOF
|
|
&& lk != 12923 // 'empty' EOF
|
|
&& lk != 12924 // 'empty-sequence' EOF
|
|
&& lk != 12925 // 'encoding' EOF
|
|
&& lk != 12926 // 'end' EOF
|
|
&& lk != 12928 // 'eq' EOF
|
|
&& lk != 12929 // 'every' EOF
|
|
&& lk != 12931 // 'except' EOF
|
|
&& lk != 12932 // 'exit' EOF
|
|
&& lk != 12933 // 'external' EOF
|
|
&& lk != 12934 // 'first' EOF
|
|
&& lk != 12935 // 'following' EOF
|
|
&& lk != 12936 // 'following-sibling' EOF
|
|
&& lk != 12937 // 'for' EOF
|
|
&& lk != 12941 // 'ft-option' EOF
|
|
&& lk != 12945 // 'function' EOF
|
|
&& lk != 12946 // 'ge' EOF
|
|
&& lk != 12948 // 'group' EOF
|
|
&& lk != 12950 // 'gt' EOF
|
|
&& lk != 12951 // 'idiv' EOF
|
|
&& lk != 12952 // 'if' EOF
|
|
&& lk != 12953 // 'import' EOF
|
|
&& lk != 12954 // 'in' EOF
|
|
&& lk != 12955 // 'index' EOF
|
|
&& lk != 12959 // 'insert' EOF
|
|
&& lk != 12960 // 'instance' EOF
|
|
&& lk != 12961 // 'integrity' EOF
|
|
&& lk != 12962 // 'intersect' EOF
|
|
&& lk != 12963 // 'into' EOF
|
|
&& lk != 12964 // 'is' EOF
|
|
&& lk != 12965 // 'item' EOF
|
|
&& lk != 12967 // 'json-item' EOF
|
|
&& lk != 12970 // 'last' EOF
|
|
&& lk != 12971 // 'lax' EOF
|
|
&& lk != 12972 // 'le' EOF
|
|
&& lk != 12974 // 'let' EOF
|
|
&& lk != 12976 // 'loop' EOF
|
|
&& lk != 12978 // 'lt' EOF
|
|
&& lk != 12980 // 'mod' EOF
|
|
&& lk != 12981 // 'modify' EOF
|
|
&& lk != 12982 // 'module' EOF
|
|
&& lk != 12984 // 'namespace' EOF
|
|
&& lk != 12985 // 'namespace-node' EOF
|
|
&& lk != 12986 // 'ne' EOF
|
|
&& lk != 12991 // 'node' EOF
|
|
&& lk != 12992 // 'nodes' EOF
|
|
&& lk != 12994 // 'object' EOF
|
|
&& lk != 12998 // 'only' EOF
|
|
&& lk != 12999 // 'option' EOF
|
|
&& lk != 13000 // 'or' EOF
|
|
&& lk != 13001 // 'order' EOF
|
|
&& lk != 13002 // 'ordered' EOF
|
|
&& lk != 13003 // 'ordering' EOF
|
|
&& lk != 13006 // 'parent' EOF
|
|
&& lk != 13012 // 'preceding' EOF
|
|
&& lk != 13013 // 'preceding-sibling' EOF
|
|
&& lk != 13016 // 'processing-instruction' EOF
|
|
&& lk != 13018 // 'rename' EOF
|
|
&& lk != 13019 // 'replace' EOF
|
|
&& lk != 13020 // 'return' EOF
|
|
&& lk != 13021 // 'returning' EOF
|
|
&& lk != 13022 // 'revalidation' EOF
|
|
&& lk != 13024 // 'satisfies' EOF
|
|
&& lk != 13025 // 'schema' EOF
|
|
&& lk != 13026 // 'schema-attribute' EOF
|
|
&& lk != 13027 // 'schema-element' EOF
|
|
&& lk != 13028 // 'score' EOF
|
|
&& lk != 13029 // 'self' EOF
|
|
&& lk != 13034 // 'sliding' EOF
|
|
&& lk != 13035 // 'some' EOF
|
|
&& lk != 13036 // 'stable' EOF
|
|
&& lk != 13037 // 'start' EOF
|
|
&& lk != 13040 // 'strict' EOF
|
|
&& lk != 13043 // 'switch' EOF
|
|
&& lk != 13044 // 'text' EOF
|
|
&& lk != 13048 // 'to' EOF
|
|
&& lk != 13049 // 'treat' EOF
|
|
&& lk != 13050 // 'try' EOF
|
|
&& lk != 13051 // 'tumbling' EOF
|
|
&& lk != 13052 // 'type' EOF
|
|
&& lk != 13053 // 'typeswitch' EOF
|
|
&& lk != 13054 // 'union' EOF
|
|
&& lk != 13056 // 'unordered' EOF
|
|
&& lk != 13057 // 'updating' EOF
|
|
&& lk != 13060 // 'validate' EOF
|
|
&& lk != 13061 // 'value' EOF
|
|
&& lk != 13062 // 'variable' EOF
|
|
&& lk != 13063 // 'version' EOF
|
|
&& lk != 13066 // 'where' EOF
|
|
&& lk != 13067 // 'while' EOF
|
|
&& lk != 13070 // 'with' EOF
|
|
&& lk != 13074 // 'xquery' EOF
|
|
&& lk != 16134 // 'variable' '$'
|
|
&& lk != 20997 // Wildcard ','
|
|
&& lk != 20998 // EQName^Token ','
|
|
&& lk != 21000 // IntegerLiteral ','
|
|
&& lk != 21001 // DecimalLiteral ','
|
|
&& lk != 21002 // DoubleLiteral ','
|
|
&& lk != 21003 // StringLiteral ','
|
|
&& lk != 21036 // '.' ','
|
|
&& lk != 21037 // '..' ','
|
|
&& lk != 21038 // '/' ','
|
|
&& lk != 21062 // 'after' ','
|
|
&& lk != 21064 // 'allowing' ','
|
|
&& lk != 21065 // 'ancestor' ','
|
|
&& lk != 21066 // 'ancestor-or-self' ','
|
|
&& lk != 21067 // 'and' ','
|
|
&& lk != 21070 // 'array' ','
|
|
&& lk != 21071 // 'as' ','
|
|
&& lk != 21072 // 'ascending' ','
|
|
&& lk != 21073 // 'at' ','
|
|
&& lk != 21074 // 'attribute' ','
|
|
&& lk != 21075 // 'base-uri' ','
|
|
&& lk != 21076 // 'before' ','
|
|
&& lk != 21077 // 'boundary-space' ','
|
|
&& lk != 21078 // 'break' ','
|
|
&& lk != 21080 // 'case' ','
|
|
&& lk != 21081 // 'cast' ','
|
|
&& lk != 21082 // 'castable' ','
|
|
&& lk != 21083 // 'catch' ','
|
|
&& lk != 21085 // 'child' ','
|
|
&& lk != 21086 // 'collation' ','
|
|
&& lk != 21088 // 'comment' ','
|
|
&& lk != 21089 // 'constraint' ','
|
|
&& lk != 21090 // 'construction' ','
|
|
&& lk != 21093 // 'context' ','
|
|
&& lk != 21094 // 'continue' ','
|
|
&& lk != 21095 // 'copy' ','
|
|
&& lk != 21096 // 'copy-namespaces' ','
|
|
&& lk != 21097 // 'count' ','
|
|
&& lk != 21098 // 'decimal-format' ','
|
|
&& lk != 21100 // 'declare' ','
|
|
&& lk != 21101 // 'default' ','
|
|
&& lk != 21102 // 'delete' ','
|
|
&& lk != 21103 // 'descendant' ','
|
|
&& lk != 21104 // 'descendant-or-self' ','
|
|
&& lk != 21105 // 'descending' ','
|
|
&& lk != 21110 // 'div' ','
|
|
&& lk != 21111 // 'document' ','
|
|
&& lk != 21112 // 'document-node' ','
|
|
&& lk != 21113 // 'element' ','
|
|
&& lk != 21114 // 'else' ','
|
|
&& lk != 21115 // 'empty' ','
|
|
&& lk != 21116 // 'empty-sequence' ','
|
|
&& lk != 21117 // 'encoding' ','
|
|
&& lk != 21118 // 'end' ','
|
|
&& lk != 21120 // 'eq' ','
|
|
&& lk != 21121 // 'every' ','
|
|
&& lk != 21123 // 'except' ','
|
|
&& lk != 21124 // 'exit' ','
|
|
&& lk != 21125 // 'external' ','
|
|
&& lk != 21126 // 'first' ','
|
|
&& lk != 21127 // 'following' ','
|
|
&& lk != 21128 // 'following-sibling' ','
|
|
&& lk != 21129 // 'for' ','
|
|
&& lk != 21133 // 'ft-option' ','
|
|
&& lk != 21137 // 'function' ','
|
|
&& lk != 21138 // 'ge' ','
|
|
&& lk != 21140 // 'group' ','
|
|
&& lk != 21142 // 'gt' ','
|
|
&& lk != 21143 // 'idiv' ','
|
|
&& lk != 21144 // 'if' ','
|
|
&& lk != 21145 // 'import' ','
|
|
&& lk != 21146 // 'in' ','
|
|
&& lk != 21147 // 'index' ','
|
|
&& lk != 21151 // 'insert' ','
|
|
&& lk != 21152 // 'instance' ','
|
|
&& lk != 21153 // 'integrity' ','
|
|
&& lk != 21154 // 'intersect' ','
|
|
&& lk != 21155 // 'into' ','
|
|
&& lk != 21156 // 'is' ','
|
|
&& lk != 21157 // 'item' ','
|
|
&& lk != 21159 // 'json-item' ','
|
|
&& lk != 21162 // 'last' ','
|
|
&& lk != 21163 // 'lax' ','
|
|
&& lk != 21164 // 'le' ','
|
|
&& lk != 21166 // 'let' ','
|
|
&& lk != 21168 // 'loop' ','
|
|
&& lk != 21170 // 'lt' ','
|
|
&& lk != 21172 // 'mod' ','
|
|
&& lk != 21173 // 'modify' ','
|
|
&& lk != 21174 // 'module' ','
|
|
&& lk != 21176 // 'namespace' ','
|
|
&& lk != 21177 // 'namespace-node' ','
|
|
&& lk != 21178 // 'ne' ','
|
|
&& lk != 21183 // 'node' ','
|
|
&& lk != 21184 // 'nodes' ','
|
|
&& lk != 21186 // 'object' ','
|
|
&& lk != 21190 // 'only' ','
|
|
&& lk != 21191 // 'option' ','
|
|
&& lk != 21192 // 'or' ','
|
|
&& lk != 21193 // 'order' ','
|
|
&& lk != 21194 // 'ordered' ','
|
|
&& lk != 21195 // 'ordering' ','
|
|
&& lk != 21198 // 'parent' ','
|
|
&& lk != 21204 // 'preceding' ','
|
|
&& lk != 21205 // 'preceding-sibling' ','
|
|
&& lk != 21208 // 'processing-instruction' ','
|
|
&& lk != 21210 // 'rename' ','
|
|
&& lk != 21211 // 'replace' ','
|
|
&& lk != 21212 // 'return' ','
|
|
&& lk != 21213 // 'returning' ','
|
|
&& lk != 21214 // 'revalidation' ','
|
|
&& lk != 21216 // 'satisfies' ','
|
|
&& lk != 21217 // 'schema' ','
|
|
&& lk != 21218 // 'schema-attribute' ','
|
|
&& lk != 21219 // 'schema-element' ','
|
|
&& lk != 21220 // 'score' ','
|
|
&& lk != 21221 // 'self' ','
|
|
&& lk != 21226 // 'sliding' ','
|
|
&& lk != 21227 // 'some' ','
|
|
&& lk != 21228 // 'stable' ','
|
|
&& lk != 21229 // 'start' ','
|
|
&& lk != 21232 // 'strict' ','
|
|
&& lk != 21235 // 'switch' ','
|
|
&& lk != 21236 // 'text' ','
|
|
&& lk != 21240 // 'to' ','
|
|
&& lk != 21241 // 'treat' ','
|
|
&& lk != 21242 // 'try' ','
|
|
&& lk != 21243 // 'tumbling' ','
|
|
&& lk != 21244 // 'type' ','
|
|
&& lk != 21245 // 'typeswitch' ','
|
|
&& lk != 21246 // 'union' ','
|
|
&& lk != 21248 // 'unordered' ','
|
|
&& lk != 21249 // 'updating' ','
|
|
&& lk != 21252 // 'validate' ','
|
|
&& lk != 21253 // 'value' ','
|
|
&& lk != 21254 // 'variable' ','
|
|
&& lk != 21255 // 'version' ','
|
|
&& lk != 21258 // 'where' ','
|
|
&& lk != 21259 // 'while' ','
|
|
&& lk != 21262 // 'with' ','
|
|
&& lk != 21266 // 'xquery' ','
|
|
&& lk != 27141 // Wildcard ';'
|
|
&& lk != 27142 // EQName^Token ';'
|
|
&& lk != 27144 // IntegerLiteral ';'
|
|
&& lk != 27145 // DecimalLiteral ';'
|
|
&& lk != 27146 // DoubleLiteral ';'
|
|
&& lk != 27147 // StringLiteral ';'
|
|
&& lk != 27180 // '.' ';'
|
|
&& lk != 27181 // '..' ';'
|
|
&& lk != 27182 // '/' ';'
|
|
&& lk != 27206 // 'after' ';'
|
|
&& lk != 27208 // 'allowing' ';'
|
|
&& lk != 27209 // 'ancestor' ';'
|
|
&& lk != 27210 // 'ancestor-or-self' ';'
|
|
&& lk != 27211 // 'and' ';'
|
|
&& lk != 27214 // 'array' ';'
|
|
&& lk != 27215 // 'as' ';'
|
|
&& lk != 27216 // 'ascending' ';'
|
|
&& lk != 27217 // 'at' ';'
|
|
&& lk != 27218 // 'attribute' ';'
|
|
&& lk != 27219 // 'base-uri' ';'
|
|
&& lk != 27220 // 'before' ';'
|
|
&& lk != 27221 // 'boundary-space' ';'
|
|
&& lk != 27222 // 'break' ';'
|
|
&& lk != 27224 // 'case' ';'
|
|
&& lk != 27225 // 'cast' ';'
|
|
&& lk != 27226 // 'castable' ';'
|
|
&& lk != 27227 // 'catch' ';'
|
|
&& lk != 27229 // 'child' ';'
|
|
&& lk != 27230 // 'collation' ';'
|
|
&& lk != 27232 // 'comment' ';'
|
|
&& lk != 27233 // 'constraint' ';'
|
|
&& lk != 27234 // 'construction' ';'
|
|
&& lk != 27237 // 'context' ';'
|
|
&& lk != 27238 // 'continue' ';'
|
|
&& lk != 27239 // 'copy' ';'
|
|
&& lk != 27240 // 'copy-namespaces' ';'
|
|
&& lk != 27241 // 'count' ';'
|
|
&& lk != 27242 // 'decimal-format' ';'
|
|
&& lk != 27244 // 'declare' ';'
|
|
&& lk != 27245 // 'default' ';'
|
|
&& lk != 27246 // 'delete' ';'
|
|
&& lk != 27247 // 'descendant' ';'
|
|
&& lk != 27248 // 'descendant-or-self' ';'
|
|
&& lk != 27249 // 'descending' ';'
|
|
&& lk != 27254 // 'div' ';'
|
|
&& lk != 27255 // 'document' ';'
|
|
&& lk != 27256 // 'document-node' ';'
|
|
&& lk != 27257 // 'element' ';'
|
|
&& lk != 27258 // 'else' ';'
|
|
&& lk != 27259 // 'empty' ';'
|
|
&& lk != 27260 // 'empty-sequence' ';'
|
|
&& lk != 27261 // 'encoding' ';'
|
|
&& lk != 27262 // 'end' ';'
|
|
&& lk != 27264 // 'eq' ';'
|
|
&& lk != 27265 // 'every' ';'
|
|
&& lk != 27267 // 'except' ';'
|
|
&& lk != 27268 // 'exit' ';'
|
|
&& lk != 27269 // 'external' ';'
|
|
&& lk != 27270 // 'first' ';'
|
|
&& lk != 27271 // 'following' ';'
|
|
&& lk != 27272 // 'following-sibling' ';'
|
|
&& lk != 27273 // 'for' ';'
|
|
&& lk != 27277 // 'ft-option' ';'
|
|
&& lk != 27281 // 'function' ';'
|
|
&& lk != 27282 // 'ge' ';'
|
|
&& lk != 27284 // 'group' ';'
|
|
&& lk != 27286 // 'gt' ';'
|
|
&& lk != 27287 // 'idiv' ';'
|
|
&& lk != 27288 // 'if' ';'
|
|
&& lk != 27289 // 'import' ';'
|
|
&& lk != 27290 // 'in' ';'
|
|
&& lk != 27291 // 'index' ';'
|
|
&& lk != 27295 // 'insert' ';'
|
|
&& lk != 27296 // 'instance' ';'
|
|
&& lk != 27297 // 'integrity' ';'
|
|
&& lk != 27298 // 'intersect' ';'
|
|
&& lk != 27299 // 'into' ';'
|
|
&& lk != 27300 // 'is' ';'
|
|
&& lk != 27301 // 'item' ';'
|
|
&& lk != 27303 // 'json-item' ';'
|
|
&& lk != 27306 // 'last' ';'
|
|
&& lk != 27307 // 'lax' ';'
|
|
&& lk != 27308 // 'le' ';'
|
|
&& lk != 27310 // 'let' ';'
|
|
&& lk != 27312 // 'loop' ';'
|
|
&& lk != 27314 // 'lt' ';'
|
|
&& lk != 27316 // 'mod' ';'
|
|
&& lk != 27317 // 'modify' ';'
|
|
&& lk != 27318 // 'module' ';'
|
|
&& lk != 27320 // 'namespace' ';'
|
|
&& lk != 27321 // 'namespace-node' ';'
|
|
&& lk != 27322 // 'ne' ';'
|
|
&& lk != 27327 // 'node' ';'
|
|
&& lk != 27328 // 'nodes' ';'
|
|
&& lk != 27330 // 'object' ';'
|
|
&& lk != 27334 // 'only' ';'
|
|
&& lk != 27335 // 'option' ';'
|
|
&& lk != 27336 // 'or' ';'
|
|
&& lk != 27337 // 'order' ';'
|
|
&& lk != 27338 // 'ordered' ';'
|
|
&& lk != 27339 // 'ordering' ';'
|
|
&& lk != 27342 // 'parent' ';'
|
|
&& lk != 27348 // 'preceding' ';'
|
|
&& lk != 27349 // 'preceding-sibling' ';'
|
|
&& lk != 27352 // 'processing-instruction' ';'
|
|
&& lk != 27354 // 'rename' ';'
|
|
&& lk != 27355 // 'replace' ';'
|
|
&& lk != 27356 // 'return' ';'
|
|
&& lk != 27357 // 'returning' ';'
|
|
&& lk != 27358 // 'revalidation' ';'
|
|
&& lk != 27360 // 'satisfies' ';'
|
|
&& lk != 27361 // 'schema' ';'
|
|
&& lk != 27362 // 'schema-attribute' ';'
|
|
&& lk != 27363 // 'schema-element' ';'
|
|
&& lk != 27364 // 'score' ';'
|
|
&& lk != 27365 // 'self' ';'
|
|
&& lk != 27370 // 'sliding' ';'
|
|
&& lk != 27371 // 'some' ';'
|
|
&& lk != 27372 // 'stable' ';'
|
|
&& lk != 27373 // 'start' ';'
|
|
&& lk != 27376 // 'strict' ';'
|
|
&& lk != 27379 // 'switch' ';'
|
|
&& lk != 27380 // 'text' ';'
|
|
&& lk != 27384 // 'to' ';'
|
|
&& lk != 27385 // 'treat' ';'
|
|
&& lk != 27386 // 'try' ';'
|
|
&& lk != 27387 // 'tumbling' ';'
|
|
&& lk != 27388 // 'type' ';'
|
|
&& lk != 27389 // 'typeswitch' ';'
|
|
&& lk != 27390 // 'union' ';'
|
|
&& lk != 27392 // 'unordered' ';'
|
|
&& lk != 27393 // 'updating' ';'
|
|
&& lk != 27396 // 'validate' ';'
|
|
&& lk != 27397 // 'value' ';'
|
|
&& lk != 27398 // 'variable' ';'
|
|
&& lk != 27399 // 'version' ';'
|
|
&& lk != 27402 // 'where' ';'
|
|
&& lk != 27403 // 'while' ';'
|
|
&& lk != 27406 // 'with' ';'
|
|
&& lk != 27410 // 'xquery' ';'
|
|
&& lk != 90198 // 'break' 'loop'
|
|
&& lk != 90214 // 'continue' 'loop'
|
|
&& lk != 113284 // 'exit' 'returning'
|
|
&& lk != 144389 // Wildcard '}'
|
|
&& lk != 144390 // EQName^Token '}'
|
|
&& lk != 144392 // IntegerLiteral '}'
|
|
&& lk != 144393 // DecimalLiteral '}'
|
|
&& lk != 144394 // DoubleLiteral '}'
|
|
&& lk != 144395 // StringLiteral '}'
|
|
&& lk != 144428 // '.' '}'
|
|
&& lk != 144429 // '..' '}'
|
|
&& lk != 144430 // '/' '}'
|
|
&& lk != 144454 // 'after' '}'
|
|
&& lk != 144456 // 'allowing' '}'
|
|
&& lk != 144457 // 'ancestor' '}'
|
|
&& lk != 144458 // 'ancestor-or-self' '}'
|
|
&& lk != 144459 // 'and' '}'
|
|
&& lk != 144462 // 'array' '}'
|
|
&& lk != 144463 // 'as' '}'
|
|
&& lk != 144464 // 'ascending' '}'
|
|
&& lk != 144465 // 'at' '}'
|
|
&& lk != 144466 // 'attribute' '}'
|
|
&& lk != 144467 // 'base-uri' '}'
|
|
&& lk != 144468 // 'before' '}'
|
|
&& lk != 144469 // 'boundary-space' '}'
|
|
&& lk != 144470 // 'break' '}'
|
|
&& lk != 144472 // 'case' '}'
|
|
&& lk != 144473 // 'cast' '}'
|
|
&& lk != 144474 // 'castable' '}'
|
|
&& lk != 144475 // 'catch' '}'
|
|
&& lk != 144477 // 'child' '}'
|
|
&& lk != 144478 // 'collation' '}'
|
|
&& lk != 144480 // 'comment' '}'
|
|
&& lk != 144481 // 'constraint' '}'
|
|
&& lk != 144482 // 'construction' '}'
|
|
&& lk != 144485 // 'context' '}'
|
|
&& lk != 144486 // 'continue' '}'
|
|
&& lk != 144487 // 'copy' '}'
|
|
&& lk != 144488 // 'copy-namespaces' '}'
|
|
&& lk != 144489 // 'count' '}'
|
|
&& lk != 144490 // 'decimal-format' '}'
|
|
&& lk != 144492 // 'declare' '}'
|
|
&& lk != 144493 // 'default' '}'
|
|
&& lk != 144494 // 'delete' '}'
|
|
&& lk != 144495 // 'descendant' '}'
|
|
&& lk != 144496 // 'descendant-or-self' '}'
|
|
&& lk != 144497 // 'descending' '}'
|
|
&& lk != 144502 // 'div' '}'
|
|
&& lk != 144503 // 'document' '}'
|
|
&& lk != 144504 // 'document-node' '}'
|
|
&& lk != 144505 // 'element' '}'
|
|
&& lk != 144506 // 'else' '}'
|
|
&& lk != 144507 // 'empty' '}'
|
|
&& lk != 144508 // 'empty-sequence' '}'
|
|
&& lk != 144509 // 'encoding' '}'
|
|
&& lk != 144510 // 'end' '}'
|
|
&& lk != 144512 // 'eq' '}'
|
|
&& lk != 144513 // 'every' '}'
|
|
&& lk != 144515 // 'except' '}'
|
|
&& lk != 144516 // 'exit' '}'
|
|
&& lk != 144517 // 'external' '}'
|
|
&& lk != 144518 // 'first' '}'
|
|
&& lk != 144519 // 'following' '}'
|
|
&& lk != 144520 // 'following-sibling' '}'
|
|
&& lk != 144521 // 'for' '}'
|
|
&& lk != 144525 // 'ft-option' '}'
|
|
&& lk != 144529 // 'function' '}'
|
|
&& lk != 144530 // 'ge' '}'
|
|
&& lk != 144532 // 'group' '}'
|
|
&& lk != 144534 // 'gt' '}'
|
|
&& lk != 144535 // 'idiv' '}'
|
|
&& lk != 144536 // 'if' '}'
|
|
&& lk != 144537 // 'import' '}'
|
|
&& lk != 144538 // 'in' '}'
|
|
&& lk != 144539 // 'index' '}'
|
|
&& lk != 144543 // 'insert' '}'
|
|
&& lk != 144544 // 'instance' '}'
|
|
&& lk != 144545 // 'integrity' '}'
|
|
&& lk != 144546 // 'intersect' '}'
|
|
&& lk != 144547 // 'into' '}'
|
|
&& lk != 144548 // 'is' '}'
|
|
&& lk != 144549 // 'item' '}'
|
|
&& lk != 144551 // 'json-item' '}'
|
|
&& lk != 144554 // 'last' '}'
|
|
&& lk != 144555 // 'lax' '}'
|
|
&& lk != 144556 // 'le' '}'
|
|
&& lk != 144558 // 'let' '}'
|
|
&& lk != 144560 // 'loop' '}'
|
|
&& lk != 144562 // 'lt' '}'
|
|
&& lk != 144564 // 'mod' '}'
|
|
&& lk != 144565 // 'modify' '}'
|
|
&& lk != 144566 // 'module' '}'
|
|
&& lk != 144568 // 'namespace' '}'
|
|
&& lk != 144569 // 'namespace-node' '}'
|
|
&& lk != 144570 // 'ne' '}'
|
|
&& lk != 144575 // 'node' '}'
|
|
&& lk != 144576 // 'nodes' '}'
|
|
&& lk != 144578 // 'object' '}'
|
|
&& lk != 144582 // 'only' '}'
|
|
&& lk != 144583 // 'option' '}'
|
|
&& lk != 144584 // 'or' '}'
|
|
&& lk != 144585 // 'order' '}'
|
|
&& lk != 144586 // 'ordered' '}'
|
|
&& lk != 144587 // 'ordering' '}'
|
|
&& lk != 144590 // 'parent' '}'
|
|
&& lk != 144596 // 'preceding' '}'
|
|
&& lk != 144597 // 'preceding-sibling' '}'
|
|
&& lk != 144600 // 'processing-instruction' '}'
|
|
&& lk != 144602 // 'rename' '}'
|
|
&& lk != 144603 // 'replace' '}'
|
|
&& lk != 144604 // 'return' '}'
|
|
&& lk != 144605 // 'returning' '}'
|
|
&& lk != 144606 // 'revalidation' '}'
|
|
&& lk != 144608 // 'satisfies' '}'
|
|
&& lk != 144609 // 'schema' '}'
|
|
&& lk != 144610 // 'schema-attribute' '}'
|
|
&& lk != 144611 // 'schema-element' '}'
|
|
&& lk != 144612 // 'score' '}'
|
|
&& lk != 144613 // 'self' '}'
|
|
&& lk != 144618 // 'sliding' '}'
|
|
&& lk != 144619 // 'some' '}'
|
|
&& lk != 144620 // 'stable' '}'
|
|
&& lk != 144621 // 'start' '}'
|
|
&& lk != 144624 // 'strict' '}'
|
|
&& lk != 144627 // 'switch' '}'
|
|
&& lk != 144628 // 'text' '}'
|
|
&& lk != 144632 // 'to' '}'
|
|
&& lk != 144633 // 'treat' '}'
|
|
&& lk != 144634 // 'try' '}'
|
|
&& lk != 144635 // 'tumbling' '}'
|
|
&& lk != 144636 // 'type' '}'
|
|
&& lk != 144637 // 'typeswitch' '}'
|
|
&& lk != 144638 // 'union' '}'
|
|
&& lk != 144640 // 'unordered' '}'
|
|
&& lk != 144641 // 'updating' '}'
|
|
&& lk != 144644 // 'validate' '}'
|
|
&& lk != 144645 // 'value' '}'
|
|
&& lk != 144646 // 'variable' '}'
|
|
&& lk != 144647 // 'version' '}'
|
|
&& lk != 144650 // 'where' '}'
|
|
&& lk != 144651 // 'while' '}'
|
|
&& lk != 144654 // 'with' '}'
|
|
&& lk != 144658) // 'xquery' '}'
|
|
{
|
|
lk = memoized(6, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_Statement();
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(6, e0, lk);
|
|
}
|
|
}
|
|
if (lk != -1
|
|
&& lk != 16134 // 'variable' '$'
|
|
&& lk != 27141 // Wildcard ';'
|
|
&& lk != 27142 // EQName^Token ';'
|
|
&& lk != 27144 // IntegerLiteral ';'
|
|
&& lk != 27145 // DecimalLiteral ';'
|
|
&& lk != 27146 // DoubleLiteral ';'
|
|
&& lk != 27147 // StringLiteral ';'
|
|
&& lk != 27180 // '.' ';'
|
|
&& lk != 27181 // '..' ';'
|
|
&& lk != 27182 // '/' ';'
|
|
&& lk != 27206 // 'after' ';'
|
|
&& lk != 27208 // 'allowing' ';'
|
|
&& lk != 27209 // 'ancestor' ';'
|
|
&& lk != 27210 // 'ancestor-or-self' ';'
|
|
&& lk != 27211 // 'and' ';'
|
|
&& lk != 27214 // 'array' ';'
|
|
&& lk != 27215 // 'as' ';'
|
|
&& lk != 27216 // 'ascending' ';'
|
|
&& lk != 27217 // 'at' ';'
|
|
&& lk != 27218 // 'attribute' ';'
|
|
&& lk != 27219 // 'base-uri' ';'
|
|
&& lk != 27220 // 'before' ';'
|
|
&& lk != 27221 // 'boundary-space' ';'
|
|
&& lk != 27222 // 'break' ';'
|
|
&& lk != 27224 // 'case' ';'
|
|
&& lk != 27225 // 'cast' ';'
|
|
&& lk != 27226 // 'castable' ';'
|
|
&& lk != 27227 // 'catch' ';'
|
|
&& lk != 27229 // 'child' ';'
|
|
&& lk != 27230 // 'collation' ';'
|
|
&& lk != 27232 // 'comment' ';'
|
|
&& lk != 27233 // 'constraint' ';'
|
|
&& lk != 27234 // 'construction' ';'
|
|
&& lk != 27237 // 'context' ';'
|
|
&& lk != 27238 // 'continue' ';'
|
|
&& lk != 27239 // 'copy' ';'
|
|
&& lk != 27240 // 'copy-namespaces' ';'
|
|
&& lk != 27241 // 'count' ';'
|
|
&& lk != 27242 // 'decimal-format' ';'
|
|
&& lk != 27244 // 'declare' ';'
|
|
&& lk != 27245 // 'default' ';'
|
|
&& lk != 27246 // 'delete' ';'
|
|
&& lk != 27247 // 'descendant' ';'
|
|
&& lk != 27248 // 'descendant-or-self' ';'
|
|
&& lk != 27249 // 'descending' ';'
|
|
&& lk != 27254 // 'div' ';'
|
|
&& lk != 27255 // 'document' ';'
|
|
&& lk != 27256 // 'document-node' ';'
|
|
&& lk != 27257 // 'element' ';'
|
|
&& lk != 27258 // 'else' ';'
|
|
&& lk != 27259 // 'empty' ';'
|
|
&& lk != 27260 // 'empty-sequence' ';'
|
|
&& lk != 27261 // 'encoding' ';'
|
|
&& lk != 27262 // 'end' ';'
|
|
&& lk != 27264 // 'eq' ';'
|
|
&& lk != 27265 // 'every' ';'
|
|
&& lk != 27267 // 'except' ';'
|
|
&& lk != 27268 // 'exit' ';'
|
|
&& lk != 27269 // 'external' ';'
|
|
&& lk != 27270 // 'first' ';'
|
|
&& lk != 27271 // 'following' ';'
|
|
&& lk != 27272 // 'following-sibling' ';'
|
|
&& lk != 27273 // 'for' ';'
|
|
&& lk != 27277 // 'ft-option' ';'
|
|
&& lk != 27281 // 'function' ';'
|
|
&& lk != 27282 // 'ge' ';'
|
|
&& lk != 27284 // 'group' ';'
|
|
&& lk != 27286 // 'gt' ';'
|
|
&& lk != 27287 // 'idiv' ';'
|
|
&& lk != 27288 // 'if' ';'
|
|
&& lk != 27289 // 'import' ';'
|
|
&& lk != 27290 // 'in' ';'
|
|
&& lk != 27291 // 'index' ';'
|
|
&& lk != 27295 // 'insert' ';'
|
|
&& lk != 27296 // 'instance' ';'
|
|
&& lk != 27297 // 'integrity' ';'
|
|
&& lk != 27298 // 'intersect' ';'
|
|
&& lk != 27299 // 'into' ';'
|
|
&& lk != 27300 // 'is' ';'
|
|
&& lk != 27301 // 'item' ';'
|
|
&& lk != 27303 // 'json-item' ';'
|
|
&& lk != 27306 // 'last' ';'
|
|
&& lk != 27307 // 'lax' ';'
|
|
&& lk != 27308 // 'le' ';'
|
|
&& lk != 27310 // 'let' ';'
|
|
&& lk != 27312 // 'loop' ';'
|
|
&& lk != 27314 // 'lt' ';'
|
|
&& lk != 27316 // 'mod' ';'
|
|
&& lk != 27317 // 'modify' ';'
|
|
&& lk != 27318 // 'module' ';'
|
|
&& lk != 27320 // 'namespace' ';'
|
|
&& lk != 27321 // 'namespace-node' ';'
|
|
&& lk != 27322 // 'ne' ';'
|
|
&& lk != 27327 // 'node' ';'
|
|
&& lk != 27328 // 'nodes' ';'
|
|
&& lk != 27330 // 'object' ';'
|
|
&& lk != 27334 // 'only' ';'
|
|
&& lk != 27335 // 'option' ';'
|
|
&& lk != 27336 // 'or' ';'
|
|
&& lk != 27337 // 'order' ';'
|
|
&& lk != 27338 // 'ordered' ';'
|
|
&& lk != 27339 // 'ordering' ';'
|
|
&& lk != 27342 // 'parent' ';'
|
|
&& lk != 27348 // 'preceding' ';'
|
|
&& lk != 27349 // 'preceding-sibling' ';'
|
|
&& lk != 27352 // 'processing-instruction' ';'
|
|
&& lk != 27354 // 'rename' ';'
|
|
&& lk != 27355 // 'replace' ';'
|
|
&& lk != 27356 // 'return' ';'
|
|
&& lk != 27357 // 'returning' ';'
|
|
&& lk != 27358 // 'revalidation' ';'
|
|
&& lk != 27360 // 'satisfies' ';'
|
|
&& lk != 27361 // 'schema' ';'
|
|
&& lk != 27362 // 'schema-attribute' ';'
|
|
&& lk != 27363 // 'schema-element' ';'
|
|
&& lk != 27364 // 'score' ';'
|
|
&& lk != 27365 // 'self' ';'
|
|
&& lk != 27370 // 'sliding' ';'
|
|
&& lk != 27371 // 'some' ';'
|
|
&& lk != 27372 // 'stable' ';'
|
|
&& lk != 27373 // 'start' ';'
|
|
&& lk != 27376 // 'strict' ';'
|
|
&& lk != 27379 // 'switch' ';'
|
|
&& lk != 27380 // 'text' ';'
|
|
&& lk != 27384 // 'to' ';'
|
|
&& lk != 27385 // 'treat' ';'
|
|
&& lk != 27386 // 'try' ';'
|
|
&& lk != 27387 // 'tumbling' ';'
|
|
&& lk != 27388 // 'type' ';'
|
|
&& lk != 27389 // 'typeswitch' ';'
|
|
&& lk != 27390 // 'union' ';'
|
|
&& lk != 27392 // 'unordered' ';'
|
|
&& lk != 27393 // 'updating' ';'
|
|
&& lk != 27396 // 'validate' ';'
|
|
&& lk != 27397 // 'value' ';'
|
|
&& lk != 27398 // 'variable' ';'
|
|
&& lk != 27399 // 'version' ';'
|
|
&& lk != 27402 // 'where' ';'
|
|
&& lk != 27403 // 'while' ';'
|
|
&& lk != 27406 // 'with' ';'
|
|
&& lk != 27410 // 'xquery' ';'
|
|
&& lk != 90198 // 'break' 'loop'
|
|
&& lk != 90214 // 'continue' 'loop'
|
|
&& lk != 113284) // 'exit' 'returning'
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_Statement();
|
|
}
|
|
eventHandler.endNonterminal("Statements", e0);
|
|
}
|
|
|
|
function try_Statements()
|
|
{
|
|
for (;;)
|
|
{
|
|
lookahead1W(274); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
switch (l1)
|
|
{
|
|
case 34: // '('
|
|
lookahead2W(269); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | ')' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
break;
|
|
case 35: // '(#'
|
|
lookahead2(250); // EQName^Token | S | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery'
|
|
break;
|
|
case 46: // '/'
|
|
lookahead2W(281); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '!' | '!=' | '$' | '%' | '(' | '(:' | '*' | '+' |
|
|
// ',' | '-' | '.' | '..' | ';' | '<' | '<!--' | '<<' | '<=' | '<?' | '=' | '>' |
|
|
// '>=' | '>>' | '@' | '[' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'contains' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '|' | '||' | '}'
|
|
break;
|
|
case 47: // '//'
|
|
lookahead2W(263); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(:' | '.' | '..' | '<' | '<!--' |
|
|
// '<?' | '@' | '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' |
|
|
// 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' |
|
|
// 'before' | 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' |
|
|
// 'child' | 'collation' | 'comment' | 'constraint' | 'construction' | 'context' |
|
|
// 'continue' | 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' |
|
|
// 'declare' | 'default' | 'delete' | 'descendant' | 'descendant-or-self' |
|
|
// 'descending' | 'div' | 'document' | 'document-node' | 'element' | 'else' |
|
|
// 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' | 'every' | 'except' |
|
|
// 'exit' | 'external' | 'first' | 'following' | 'following-sibling' | 'for' |
|
|
// 'ft-option' | 'function' | 'ge' | 'group' | 'gt' | 'idiv' | 'if' | 'import' |
|
|
// 'in' | 'index' | 'insert' | 'instance' | 'integrity' | 'intersect' | 'into' |
|
|
// 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' |
|
|
// 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' | 'node' |
|
|
// 'nodes' | 'object' | 'only' | 'option' | 'or' | 'order' | 'ordered' |
|
|
// 'ordering' | 'parent' | 'preceding' | 'preceding-sibling' |
|
|
// 'processing-instruction' | 'rename' | 'replace' | 'return' | 'returning' |
|
|
// 'revalidation' | 'satisfies' | 'schema' | 'schema-attribute' | 'schema-element' |
|
|
// 'score' | 'self' | 'sliding' | 'some' | 'stable' | 'start' | 'strict' |
|
|
// 'switch' | 'text' | 'to' | 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' |
|
|
// 'union' | 'unordered' | 'updating' | 'validate' | 'value' | 'variable' |
|
|
// 'version' | 'where' | 'while' | 'with' | 'xquery' | '{' | '{|'
|
|
break;
|
|
case 54: // '<'
|
|
lookahead2(4); // QName
|
|
break;
|
|
case 55: // '<!--'
|
|
lookahead2(1); // DirCommentContents
|
|
break;
|
|
case 59: // '<?'
|
|
lookahead2(3); // PITarget
|
|
break;
|
|
case 66: // '@'
|
|
lookahead2W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
break;
|
|
case 68: // '['
|
|
lookahead2W(271); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | ']' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
break;
|
|
case 77: // 'append'
|
|
lookahead2W(56); // S^WS | '(:' | 'json'
|
|
break;
|
|
case 82: // 'attribute'
|
|
lookahead2W(278); // EQName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' |
|
|
// '-' | '/' | '//' | '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' |
|
|
// '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'array' |
|
|
// 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' |
|
|
// 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' |
|
|
// 'collation' | 'comment' | 'constraint' | 'construction' | 'contains' |
|
|
// 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '|' | '||' | '}'
|
|
break;
|
|
case 121: // 'element'
|
|
lookahead2W(277); // EQName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' |
|
|
// '-' | '/' | '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'contains' | 'context' | 'continue' |
|
|
// 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '|' | '||' | '}'
|
|
break;
|
|
case 132: // 'exit'
|
|
lookahead2W(202); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' |
|
|
// 'returning' | 'to' | 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 137: // 'for'
|
|
lookahead2W(206); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'sliding' |
|
|
// 'to' | 'treat' | 'tumbling' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 174: // 'let'
|
|
lookahead2W(204); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'score' |
|
|
// 'to' | 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 218: // 'rename'
|
|
lookahead2W(205); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'json' | 'le' | 'lt' | 'mod' | 'ne' | 'node' |
|
|
// 'or' | 'to' | 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 219: // 'replace'
|
|
lookahead2W(208); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'json' | 'le' | 'lt' | 'mod' | 'ne' | 'node' |
|
|
// 'or' | 'to' | 'treat' | 'union' | 'value' | '|' | '||' | '}'
|
|
break;
|
|
case 260: // 'validate'
|
|
lookahead2W(209); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'lax' | 'le' | 'lt' | 'mod' | 'ne' | 'or' |
|
|
// 'strict' | 'to' | 'treat' | 'type' | 'union' | '{' | '|' | '||' | '}'
|
|
break;
|
|
case 276: // '{'
|
|
lookahead2W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
break;
|
|
case 278: // '{|'
|
|
lookahead2W(272); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '|}'
|
|
break;
|
|
case 5: // Wildcard
|
|
case 45: // '..'
|
|
lookahead2W(186); // S^WS | EOF | '!' | '!=' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' | ';' | '<' |
|
|
// '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 31: // '$'
|
|
case 32: // '%'
|
|
lookahead2W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
break;
|
|
case 40: // '+'
|
|
case 42: // '-'
|
|
lookahead2W(265); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
break;
|
|
case 86: // 'break'
|
|
case 102: // 'continue'
|
|
lookahead2W(200); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'loop' | 'lt' | 'mod' | 'ne' | 'or' |
|
|
// 'to' | 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 110: // 'delete'
|
|
case 159: // 'insert'
|
|
lookahead2W(207); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'json' | 'le' | 'lt' | 'mod' | 'ne' | 'node' |
|
|
// 'nodes' | 'or' | 'to' | 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 124: // 'empty-sequence'
|
|
case 165: // 'item'
|
|
lookahead2W(191); // S^WS | EOF | '!' | '!=' | '#' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 184: // 'namespace'
|
|
case 216: // 'processing-instruction'
|
|
lookahead2W(266); // NCName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' |
|
|
// '-' | '/' | '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'contains' | 'context' | 'continue' |
|
|
// 'copy' | 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'last' |
|
|
// 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '|' | '||' | '}'
|
|
break;
|
|
case 103: // 'copy'
|
|
case 129: // 'every'
|
|
case 235: // 'some'
|
|
case 262: // 'variable'
|
|
lookahead2W(197); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 8: // IntegerLiteral
|
|
case 9: // DecimalLiteral
|
|
case 10: // DoubleLiteral
|
|
case 11: // StringLiteral
|
|
case 44: // '.'
|
|
lookahead2W(192); // S^WS | EOF | '!' | '!=' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 96: // 'comment'
|
|
case 119: // 'document'
|
|
case 202: // 'ordered'
|
|
case 244: // 'text'
|
|
case 250: // 'try'
|
|
case 256: // 'unordered'
|
|
lookahead2W(203); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' |
|
|
// 'treat' | 'union' | '{' | '|' | '||' | '}'
|
|
break;
|
|
case 73: // 'ancestor'
|
|
case 74: // 'ancestor-or-self'
|
|
case 93: // 'child'
|
|
case 111: // 'descendant'
|
|
case 112: // 'descendant-or-self'
|
|
case 135: // 'following'
|
|
case 136: // 'following-sibling'
|
|
case 206: // 'parent'
|
|
case 212: // 'preceding'
|
|
case 213: // 'preceding-sibling'
|
|
case 229: // 'self'
|
|
lookahead2W(198); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// '::' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
case 6: // EQName^Token
|
|
case 70: // 'after'
|
|
case 72: // 'allowing'
|
|
case 75: // 'and'
|
|
case 78: // 'array'
|
|
case 79: // 'as'
|
|
case 80: // 'ascending'
|
|
case 81: // 'at'
|
|
case 83: // 'base-uri'
|
|
case 84: // 'before'
|
|
case 85: // 'boundary-space'
|
|
case 88: // 'case'
|
|
case 89: // 'cast'
|
|
case 90: // 'castable'
|
|
case 91: // 'catch'
|
|
case 94: // 'collation'
|
|
case 97: // 'constraint'
|
|
case 98: // 'construction'
|
|
case 101: // 'context'
|
|
case 104: // 'copy-namespaces'
|
|
case 105: // 'count'
|
|
case 106: // 'decimal-format'
|
|
case 108: // 'declare'
|
|
case 109: // 'default'
|
|
case 113: // 'descending'
|
|
case 118: // 'div'
|
|
case 120: // 'document-node'
|
|
case 122: // 'else'
|
|
case 123: // 'empty'
|
|
case 125: // 'encoding'
|
|
case 126: // 'end'
|
|
case 128: // 'eq'
|
|
case 131: // 'except'
|
|
case 133: // 'external'
|
|
case 134: // 'first'
|
|
case 141: // 'ft-option'
|
|
case 145: // 'function'
|
|
case 146: // 'ge'
|
|
case 148: // 'group'
|
|
case 150: // 'gt'
|
|
case 151: // 'idiv'
|
|
case 152: // 'if'
|
|
case 153: // 'import'
|
|
case 154: // 'in'
|
|
case 155: // 'index'
|
|
case 160: // 'instance'
|
|
case 161: // 'integrity'
|
|
case 162: // 'intersect'
|
|
case 163: // 'into'
|
|
case 164: // 'is'
|
|
case 167: // 'json-item'
|
|
case 170: // 'last'
|
|
case 171: // 'lax'
|
|
case 172: // 'le'
|
|
case 176: // 'loop'
|
|
case 178: // 'lt'
|
|
case 180: // 'mod'
|
|
case 181: // 'modify'
|
|
case 182: // 'module'
|
|
case 185: // 'namespace-node'
|
|
case 186: // 'ne'
|
|
case 191: // 'node'
|
|
case 192: // 'nodes'
|
|
case 194: // 'object'
|
|
case 198: // 'only'
|
|
case 199: // 'option'
|
|
case 200: // 'or'
|
|
case 201: // 'order'
|
|
case 203: // 'ordering'
|
|
case 220: // 'return'
|
|
case 221: // 'returning'
|
|
case 222: // 'revalidation'
|
|
case 224: // 'satisfies'
|
|
case 225: // 'schema'
|
|
case 226: // 'schema-attribute'
|
|
case 227: // 'schema-element'
|
|
case 228: // 'score'
|
|
case 234: // 'sliding'
|
|
case 236: // 'stable'
|
|
case 237: // 'start'
|
|
case 240: // 'strict'
|
|
case 243: // 'switch'
|
|
case 248: // 'to'
|
|
case 249: // 'treat'
|
|
case 251: // 'tumbling'
|
|
case 252: // 'type'
|
|
case 253: // 'typeswitch'
|
|
case 254: // 'union'
|
|
case 257: // 'updating'
|
|
case 261: // 'value'
|
|
case 263: // 'version'
|
|
case 266: // 'where'
|
|
case 267: // 'while'
|
|
case 270: // 'with'
|
|
case 274: // 'xquery'
|
|
lookahead2W(195); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | ',' | '-' | '/' | '//' |
|
|
// ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' |
|
|
// 'castable' | 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' |
|
|
// 'instance' | 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk != 25 // EOF
|
|
&& lk != 282 // '}'
|
|
&& lk != 12805 // Wildcard EOF
|
|
&& lk != 12806 // EQName^Token EOF
|
|
&& lk != 12808 // IntegerLiteral EOF
|
|
&& lk != 12809 // DecimalLiteral EOF
|
|
&& lk != 12810 // DoubleLiteral EOF
|
|
&& lk != 12811 // StringLiteral EOF
|
|
&& lk != 12844 // '.' EOF
|
|
&& lk != 12845 // '..' EOF
|
|
&& lk != 12846 // '/' EOF
|
|
&& lk != 12870 // 'after' EOF
|
|
&& lk != 12872 // 'allowing' EOF
|
|
&& lk != 12873 // 'ancestor' EOF
|
|
&& lk != 12874 // 'ancestor-or-self' EOF
|
|
&& lk != 12875 // 'and' EOF
|
|
&& lk != 12878 // 'array' EOF
|
|
&& lk != 12879 // 'as' EOF
|
|
&& lk != 12880 // 'ascending' EOF
|
|
&& lk != 12881 // 'at' EOF
|
|
&& lk != 12882 // 'attribute' EOF
|
|
&& lk != 12883 // 'base-uri' EOF
|
|
&& lk != 12884 // 'before' EOF
|
|
&& lk != 12885 // 'boundary-space' EOF
|
|
&& lk != 12886 // 'break' EOF
|
|
&& lk != 12888 // 'case' EOF
|
|
&& lk != 12889 // 'cast' EOF
|
|
&& lk != 12890 // 'castable' EOF
|
|
&& lk != 12891 // 'catch' EOF
|
|
&& lk != 12893 // 'child' EOF
|
|
&& lk != 12894 // 'collation' EOF
|
|
&& lk != 12896 // 'comment' EOF
|
|
&& lk != 12897 // 'constraint' EOF
|
|
&& lk != 12898 // 'construction' EOF
|
|
&& lk != 12901 // 'context' EOF
|
|
&& lk != 12902 // 'continue' EOF
|
|
&& lk != 12903 // 'copy' EOF
|
|
&& lk != 12904 // 'copy-namespaces' EOF
|
|
&& lk != 12905 // 'count' EOF
|
|
&& lk != 12906 // 'decimal-format' EOF
|
|
&& lk != 12908 // 'declare' EOF
|
|
&& lk != 12909 // 'default' EOF
|
|
&& lk != 12910 // 'delete' EOF
|
|
&& lk != 12911 // 'descendant' EOF
|
|
&& lk != 12912 // 'descendant-or-self' EOF
|
|
&& lk != 12913 // 'descending' EOF
|
|
&& lk != 12918 // 'div' EOF
|
|
&& lk != 12919 // 'document' EOF
|
|
&& lk != 12920 // 'document-node' EOF
|
|
&& lk != 12921 // 'element' EOF
|
|
&& lk != 12922 // 'else' EOF
|
|
&& lk != 12923 // 'empty' EOF
|
|
&& lk != 12924 // 'empty-sequence' EOF
|
|
&& lk != 12925 // 'encoding' EOF
|
|
&& lk != 12926 // 'end' EOF
|
|
&& lk != 12928 // 'eq' EOF
|
|
&& lk != 12929 // 'every' EOF
|
|
&& lk != 12931 // 'except' EOF
|
|
&& lk != 12932 // 'exit' EOF
|
|
&& lk != 12933 // 'external' EOF
|
|
&& lk != 12934 // 'first' EOF
|
|
&& lk != 12935 // 'following' EOF
|
|
&& lk != 12936 // 'following-sibling' EOF
|
|
&& lk != 12937 // 'for' EOF
|
|
&& lk != 12941 // 'ft-option' EOF
|
|
&& lk != 12945 // 'function' EOF
|
|
&& lk != 12946 // 'ge' EOF
|
|
&& lk != 12948 // 'group' EOF
|
|
&& lk != 12950 // 'gt' EOF
|
|
&& lk != 12951 // 'idiv' EOF
|
|
&& lk != 12952 // 'if' EOF
|
|
&& lk != 12953 // 'import' EOF
|
|
&& lk != 12954 // 'in' EOF
|
|
&& lk != 12955 // 'index' EOF
|
|
&& lk != 12959 // 'insert' EOF
|
|
&& lk != 12960 // 'instance' EOF
|
|
&& lk != 12961 // 'integrity' EOF
|
|
&& lk != 12962 // 'intersect' EOF
|
|
&& lk != 12963 // 'into' EOF
|
|
&& lk != 12964 // 'is' EOF
|
|
&& lk != 12965 // 'item' EOF
|
|
&& lk != 12967 // 'json-item' EOF
|
|
&& lk != 12970 // 'last' EOF
|
|
&& lk != 12971 // 'lax' EOF
|
|
&& lk != 12972 // 'le' EOF
|
|
&& lk != 12974 // 'let' EOF
|
|
&& lk != 12976 // 'loop' EOF
|
|
&& lk != 12978 // 'lt' EOF
|
|
&& lk != 12980 // 'mod' EOF
|
|
&& lk != 12981 // 'modify' EOF
|
|
&& lk != 12982 // 'module' EOF
|
|
&& lk != 12984 // 'namespace' EOF
|
|
&& lk != 12985 // 'namespace-node' EOF
|
|
&& lk != 12986 // 'ne' EOF
|
|
&& lk != 12991 // 'node' EOF
|
|
&& lk != 12992 // 'nodes' EOF
|
|
&& lk != 12994 // 'object' EOF
|
|
&& lk != 12998 // 'only' EOF
|
|
&& lk != 12999 // 'option' EOF
|
|
&& lk != 13000 // 'or' EOF
|
|
&& lk != 13001 // 'order' EOF
|
|
&& lk != 13002 // 'ordered' EOF
|
|
&& lk != 13003 // 'ordering' EOF
|
|
&& lk != 13006 // 'parent' EOF
|
|
&& lk != 13012 // 'preceding' EOF
|
|
&& lk != 13013 // 'preceding-sibling' EOF
|
|
&& lk != 13016 // 'processing-instruction' EOF
|
|
&& lk != 13018 // 'rename' EOF
|
|
&& lk != 13019 // 'replace' EOF
|
|
&& lk != 13020 // 'return' EOF
|
|
&& lk != 13021 // 'returning' EOF
|
|
&& lk != 13022 // 'revalidation' EOF
|
|
&& lk != 13024 // 'satisfies' EOF
|
|
&& lk != 13025 // 'schema' EOF
|
|
&& lk != 13026 // 'schema-attribute' EOF
|
|
&& lk != 13027 // 'schema-element' EOF
|
|
&& lk != 13028 // 'score' EOF
|
|
&& lk != 13029 // 'self' EOF
|
|
&& lk != 13034 // 'sliding' EOF
|
|
&& lk != 13035 // 'some' EOF
|
|
&& lk != 13036 // 'stable' EOF
|
|
&& lk != 13037 // 'start' EOF
|
|
&& lk != 13040 // 'strict' EOF
|
|
&& lk != 13043 // 'switch' EOF
|
|
&& lk != 13044 // 'text' EOF
|
|
&& lk != 13048 // 'to' EOF
|
|
&& lk != 13049 // 'treat' EOF
|
|
&& lk != 13050 // 'try' EOF
|
|
&& lk != 13051 // 'tumbling' EOF
|
|
&& lk != 13052 // 'type' EOF
|
|
&& lk != 13053 // 'typeswitch' EOF
|
|
&& lk != 13054 // 'union' EOF
|
|
&& lk != 13056 // 'unordered' EOF
|
|
&& lk != 13057 // 'updating' EOF
|
|
&& lk != 13060 // 'validate' EOF
|
|
&& lk != 13061 // 'value' EOF
|
|
&& lk != 13062 // 'variable' EOF
|
|
&& lk != 13063 // 'version' EOF
|
|
&& lk != 13066 // 'where' EOF
|
|
&& lk != 13067 // 'while' EOF
|
|
&& lk != 13070 // 'with' EOF
|
|
&& lk != 13074 // 'xquery' EOF
|
|
&& lk != 16134 // 'variable' '$'
|
|
&& lk != 20997 // Wildcard ','
|
|
&& lk != 20998 // EQName^Token ','
|
|
&& lk != 21000 // IntegerLiteral ','
|
|
&& lk != 21001 // DecimalLiteral ','
|
|
&& lk != 21002 // DoubleLiteral ','
|
|
&& lk != 21003 // StringLiteral ','
|
|
&& lk != 21036 // '.' ','
|
|
&& lk != 21037 // '..' ','
|
|
&& lk != 21038 // '/' ','
|
|
&& lk != 21062 // 'after' ','
|
|
&& lk != 21064 // 'allowing' ','
|
|
&& lk != 21065 // 'ancestor' ','
|
|
&& lk != 21066 // 'ancestor-or-self' ','
|
|
&& lk != 21067 // 'and' ','
|
|
&& lk != 21070 // 'array' ','
|
|
&& lk != 21071 // 'as' ','
|
|
&& lk != 21072 // 'ascending' ','
|
|
&& lk != 21073 // 'at' ','
|
|
&& lk != 21074 // 'attribute' ','
|
|
&& lk != 21075 // 'base-uri' ','
|
|
&& lk != 21076 // 'before' ','
|
|
&& lk != 21077 // 'boundary-space' ','
|
|
&& lk != 21078 // 'break' ','
|
|
&& lk != 21080 // 'case' ','
|
|
&& lk != 21081 // 'cast' ','
|
|
&& lk != 21082 // 'castable' ','
|
|
&& lk != 21083 // 'catch' ','
|
|
&& lk != 21085 // 'child' ','
|
|
&& lk != 21086 // 'collation' ','
|
|
&& lk != 21088 // 'comment' ','
|
|
&& lk != 21089 // 'constraint' ','
|
|
&& lk != 21090 // 'construction' ','
|
|
&& lk != 21093 // 'context' ','
|
|
&& lk != 21094 // 'continue' ','
|
|
&& lk != 21095 // 'copy' ','
|
|
&& lk != 21096 // 'copy-namespaces' ','
|
|
&& lk != 21097 // 'count' ','
|
|
&& lk != 21098 // 'decimal-format' ','
|
|
&& lk != 21100 // 'declare' ','
|
|
&& lk != 21101 // 'default' ','
|
|
&& lk != 21102 // 'delete' ','
|
|
&& lk != 21103 // 'descendant' ','
|
|
&& lk != 21104 // 'descendant-or-self' ','
|
|
&& lk != 21105 // 'descending' ','
|
|
&& lk != 21110 // 'div' ','
|
|
&& lk != 21111 // 'document' ','
|
|
&& lk != 21112 // 'document-node' ','
|
|
&& lk != 21113 // 'element' ','
|
|
&& lk != 21114 // 'else' ','
|
|
&& lk != 21115 // 'empty' ','
|
|
&& lk != 21116 // 'empty-sequence' ','
|
|
&& lk != 21117 // 'encoding' ','
|
|
&& lk != 21118 // 'end' ','
|
|
&& lk != 21120 // 'eq' ','
|
|
&& lk != 21121 // 'every' ','
|
|
&& lk != 21123 // 'except' ','
|
|
&& lk != 21124 // 'exit' ','
|
|
&& lk != 21125 // 'external' ','
|
|
&& lk != 21126 // 'first' ','
|
|
&& lk != 21127 // 'following' ','
|
|
&& lk != 21128 // 'following-sibling' ','
|
|
&& lk != 21129 // 'for' ','
|
|
&& lk != 21133 // 'ft-option' ','
|
|
&& lk != 21137 // 'function' ','
|
|
&& lk != 21138 // 'ge' ','
|
|
&& lk != 21140 // 'group' ','
|
|
&& lk != 21142 // 'gt' ','
|
|
&& lk != 21143 // 'idiv' ','
|
|
&& lk != 21144 // 'if' ','
|
|
&& lk != 21145 // 'import' ','
|
|
&& lk != 21146 // 'in' ','
|
|
&& lk != 21147 // 'index' ','
|
|
&& lk != 21151 // 'insert' ','
|
|
&& lk != 21152 // 'instance' ','
|
|
&& lk != 21153 // 'integrity' ','
|
|
&& lk != 21154 // 'intersect' ','
|
|
&& lk != 21155 // 'into' ','
|
|
&& lk != 21156 // 'is' ','
|
|
&& lk != 21157 // 'item' ','
|
|
&& lk != 21159 // 'json-item' ','
|
|
&& lk != 21162 // 'last' ','
|
|
&& lk != 21163 // 'lax' ','
|
|
&& lk != 21164 // 'le' ','
|
|
&& lk != 21166 // 'let' ','
|
|
&& lk != 21168 // 'loop' ','
|
|
&& lk != 21170 // 'lt' ','
|
|
&& lk != 21172 // 'mod' ','
|
|
&& lk != 21173 // 'modify' ','
|
|
&& lk != 21174 // 'module' ','
|
|
&& lk != 21176 // 'namespace' ','
|
|
&& lk != 21177 // 'namespace-node' ','
|
|
&& lk != 21178 // 'ne' ','
|
|
&& lk != 21183 // 'node' ','
|
|
&& lk != 21184 // 'nodes' ','
|
|
&& lk != 21186 // 'object' ','
|
|
&& lk != 21190 // 'only' ','
|
|
&& lk != 21191 // 'option' ','
|
|
&& lk != 21192 // 'or' ','
|
|
&& lk != 21193 // 'order' ','
|
|
&& lk != 21194 // 'ordered' ','
|
|
&& lk != 21195 // 'ordering' ','
|
|
&& lk != 21198 // 'parent' ','
|
|
&& lk != 21204 // 'preceding' ','
|
|
&& lk != 21205 // 'preceding-sibling' ','
|
|
&& lk != 21208 // 'processing-instruction' ','
|
|
&& lk != 21210 // 'rename' ','
|
|
&& lk != 21211 // 'replace' ','
|
|
&& lk != 21212 // 'return' ','
|
|
&& lk != 21213 // 'returning' ','
|
|
&& lk != 21214 // 'revalidation' ','
|
|
&& lk != 21216 // 'satisfies' ','
|
|
&& lk != 21217 // 'schema' ','
|
|
&& lk != 21218 // 'schema-attribute' ','
|
|
&& lk != 21219 // 'schema-element' ','
|
|
&& lk != 21220 // 'score' ','
|
|
&& lk != 21221 // 'self' ','
|
|
&& lk != 21226 // 'sliding' ','
|
|
&& lk != 21227 // 'some' ','
|
|
&& lk != 21228 // 'stable' ','
|
|
&& lk != 21229 // 'start' ','
|
|
&& lk != 21232 // 'strict' ','
|
|
&& lk != 21235 // 'switch' ','
|
|
&& lk != 21236 // 'text' ','
|
|
&& lk != 21240 // 'to' ','
|
|
&& lk != 21241 // 'treat' ','
|
|
&& lk != 21242 // 'try' ','
|
|
&& lk != 21243 // 'tumbling' ','
|
|
&& lk != 21244 // 'type' ','
|
|
&& lk != 21245 // 'typeswitch' ','
|
|
&& lk != 21246 // 'union' ','
|
|
&& lk != 21248 // 'unordered' ','
|
|
&& lk != 21249 // 'updating' ','
|
|
&& lk != 21252 // 'validate' ','
|
|
&& lk != 21253 // 'value' ','
|
|
&& lk != 21254 // 'variable' ','
|
|
&& lk != 21255 // 'version' ','
|
|
&& lk != 21258 // 'where' ','
|
|
&& lk != 21259 // 'while' ','
|
|
&& lk != 21262 // 'with' ','
|
|
&& lk != 21266 // 'xquery' ','
|
|
&& lk != 27141 // Wildcard ';'
|
|
&& lk != 27142 // EQName^Token ';'
|
|
&& lk != 27144 // IntegerLiteral ';'
|
|
&& lk != 27145 // DecimalLiteral ';'
|
|
&& lk != 27146 // DoubleLiteral ';'
|
|
&& lk != 27147 // StringLiteral ';'
|
|
&& lk != 27180 // '.' ';'
|
|
&& lk != 27181 // '..' ';'
|
|
&& lk != 27182 // '/' ';'
|
|
&& lk != 27206 // 'after' ';'
|
|
&& lk != 27208 // 'allowing' ';'
|
|
&& lk != 27209 // 'ancestor' ';'
|
|
&& lk != 27210 // 'ancestor-or-self' ';'
|
|
&& lk != 27211 // 'and' ';'
|
|
&& lk != 27214 // 'array' ';'
|
|
&& lk != 27215 // 'as' ';'
|
|
&& lk != 27216 // 'ascending' ';'
|
|
&& lk != 27217 // 'at' ';'
|
|
&& lk != 27218 // 'attribute' ';'
|
|
&& lk != 27219 // 'base-uri' ';'
|
|
&& lk != 27220 // 'before' ';'
|
|
&& lk != 27221 // 'boundary-space' ';'
|
|
&& lk != 27222 // 'break' ';'
|
|
&& lk != 27224 // 'case' ';'
|
|
&& lk != 27225 // 'cast' ';'
|
|
&& lk != 27226 // 'castable' ';'
|
|
&& lk != 27227 // 'catch' ';'
|
|
&& lk != 27229 // 'child' ';'
|
|
&& lk != 27230 // 'collation' ';'
|
|
&& lk != 27232 // 'comment' ';'
|
|
&& lk != 27233 // 'constraint' ';'
|
|
&& lk != 27234 // 'construction' ';'
|
|
&& lk != 27237 // 'context' ';'
|
|
&& lk != 27238 // 'continue' ';'
|
|
&& lk != 27239 // 'copy' ';'
|
|
&& lk != 27240 // 'copy-namespaces' ';'
|
|
&& lk != 27241 // 'count' ';'
|
|
&& lk != 27242 // 'decimal-format' ';'
|
|
&& lk != 27244 // 'declare' ';'
|
|
&& lk != 27245 // 'default' ';'
|
|
&& lk != 27246 // 'delete' ';'
|
|
&& lk != 27247 // 'descendant' ';'
|
|
&& lk != 27248 // 'descendant-or-self' ';'
|
|
&& lk != 27249 // 'descending' ';'
|
|
&& lk != 27254 // 'div' ';'
|
|
&& lk != 27255 // 'document' ';'
|
|
&& lk != 27256 // 'document-node' ';'
|
|
&& lk != 27257 // 'element' ';'
|
|
&& lk != 27258 // 'else' ';'
|
|
&& lk != 27259 // 'empty' ';'
|
|
&& lk != 27260 // 'empty-sequence' ';'
|
|
&& lk != 27261 // 'encoding' ';'
|
|
&& lk != 27262 // 'end' ';'
|
|
&& lk != 27264 // 'eq' ';'
|
|
&& lk != 27265 // 'every' ';'
|
|
&& lk != 27267 // 'except' ';'
|
|
&& lk != 27268 // 'exit' ';'
|
|
&& lk != 27269 // 'external' ';'
|
|
&& lk != 27270 // 'first' ';'
|
|
&& lk != 27271 // 'following' ';'
|
|
&& lk != 27272 // 'following-sibling' ';'
|
|
&& lk != 27273 // 'for' ';'
|
|
&& lk != 27277 // 'ft-option' ';'
|
|
&& lk != 27281 // 'function' ';'
|
|
&& lk != 27282 // 'ge' ';'
|
|
&& lk != 27284 // 'group' ';'
|
|
&& lk != 27286 // 'gt' ';'
|
|
&& lk != 27287 // 'idiv' ';'
|
|
&& lk != 27288 // 'if' ';'
|
|
&& lk != 27289 // 'import' ';'
|
|
&& lk != 27290 // 'in' ';'
|
|
&& lk != 27291 // 'index' ';'
|
|
&& lk != 27295 // 'insert' ';'
|
|
&& lk != 27296 // 'instance' ';'
|
|
&& lk != 27297 // 'integrity' ';'
|
|
&& lk != 27298 // 'intersect' ';'
|
|
&& lk != 27299 // 'into' ';'
|
|
&& lk != 27300 // 'is' ';'
|
|
&& lk != 27301 // 'item' ';'
|
|
&& lk != 27303 // 'json-item' ';'
|
|
&& lk != 27306 // 'last' ';'
|
|
&& lk != 27307 // 'lax' ';'
|
|
&& lk != 27308 // 'le' ';'
|
|
&& lk != 27310 // 'let' ';'
|
|
&& lk != 27312 // 'loop' ';'
|
|
&& lk != 27314 // 'lt' ';'
|
|
&& lk != 27316 // 'mod' ';'
|
|
&& lk != 27317 // 'modify' ';'
|
|
&& lk != 27318 // 'module' ';'
|
|
&& lk != 27320 // 'namespace' ';'
|
|
&& lk != 27321 // 'namespace-node' ';'
|
|
&& lk != 27322 // 'ne' ';'
|
|
&& lk != 27327 // 'node' ';'
|
|
&& lk != 27328 // 'nodes' ';'
|
|
&& lk != 27330 // 'object' ';'
|
|
&& lk != 27334 // 'only' ';'
|
|
&& lk != 27335 // 'option' ';'
|
|
&& lk != 27336 // 'or' ';'
|
|
&& lk != 27337 // 'order' ';'
|
|
&& lk != 27338 // 'ordered' ';'
|
|
&& lk != 27339 // 'ordering' ';'
|
|
&& lk != 27342 // 'parent' ';'
|
|
&& lk != 27348 // 'preceding' ';'
|
|
&& lk != 27349 // 'preceding-sibling' ';'
|
|
&& lk != 27352 // 'processing-instruction' ';'
|
|
&& lk != 27354 // 'rename' ';'
|
|
&& lk != 27355 // 'replace' ';'
|
|
&& lk != 27356 // 'return' ';'
|
|
&& lk != 27357 // 'returning' ';'
|
|
&& lk != 27358 // 'revalidation' ';'
|
|
&& lk != 27360 // 'satisfies' ';'
|
|
&& lk != 27361 // 'schema' ';'
|
|
&& lk != 27362 // 'schema-attribute' ';'
|
|
&& lk != 27363 // 'schema-element' ';'
|
|
&& lk != 27364 // 'score' ';'
|
|
&& lk != 27365 // 'self' ';'
|
|
&& lk != 27370 // 'sliding' ';'
|
|
&& lk != 27371 // 'some' ';'
|
|
&& lk != 27372 // 'stable' ';'
|
|
&& lk != 27373 // 'start' ';'
|
|
&& lk != 27376 // 'strict' ';'
|
|
&& lk != 27379 // 'switch' ';'
|
|
&& lk != 27380 // 'text' ';'
|
|
&& lk != 27384 // 'to' ';'
|
|
&& lk != 27385 // 'treat' ';'
|
|
&& lk != 27386 // 'try' ';'
|
|
&& lk != 27387 // 'tumbling' ';'
|
|
&& lk != 27388 // 'type' ';'
|
|
&& lk != 27389 // 'typeswitch' ';'
|
|
&& lk != 27390 // 'union' ';'
|
|
&& lk != 27392 // 'unordered' ';'
|
|
&& lk != 27393 // 'updating' ';'
|
|
&& lk != 27396 // 'validate' ';'
|
|
&& lk != 27397 // 'value' ';'
|
|
&& lk != 27398 // 'variable' ';'
|
|
&& lk != 27399 // 'version' ';'
|
|
&& lk != 27402 // 'where' ';'
|
|
&& lk != 27403 // 'while' ';'
|
|
&& lk != 27406 // 'with' ';'
|
|
&& lk != 27410 // 'xquery' ';'
|
|
&& lk != 90198 // 'break' 'loop'
|
|
&& lk != 90214 // 'continue' 'loop'
|
|
&& lk != 113284 // 'exit' 'returning'
|
|
&& lk != 144389 // Wildcard '}'
|
|
&& lk != 144390 // EQName^Token '}'
|
|
&& lk != 144392 // IntegerLiteral '}'
|
|
&& lk != 144393 // DecimalLiteral '}'
|
|
&& lk != 144394 // DoubleLiteral '}'
|
|
&& lk != 144395 // StringLiteral '}'
|
|
&& lk != 144428 // '.' '}'
|
|
&& lk != 144429 // '..' '}'
|
|
&& lk != 144430 // '/' '}'
|
|
&& lk != 144454 // 'after' '}'
|
|
&& lk != 144456 // 'allowing' '}'
|
|
&& lk != 144457 // 'ancestor' '}'
|
|
&& lk != 144458 // 'ancestor-or-self' '}'
|
|
&& lk != 144459 // 'and' '}'
|
|
&& lk != 144462 // 'array' '}'
|
|
&& lk != 144463 // 'as' '}'
|
|
&& lk != 144464 // 'ascending' '}'
|
|
&& lk != 144465 // 'at' '}'
|
|
&& lk != 144466 // 'attribute' '}'
|
|
&& lk != 144467 // 'base-uri' '}'
|
|
&& lk != 144468 // 'before' '}'
|
|
&& lk != 144469 // 'boundary-space' '}'
|
|
&& lk != 144470 // 'break' '}'
|
|
&& lk != 144472 // 'case' '}'
|
|
&& lk != 144473 // 'cast' '}'
|
|
&& lk != 144474 // 'castable' '}'
|
|
&& lk != 144475 // 'catch' '}'
|
|
&& lk != 144477 // 'child' '}'
|
|
&& lk != 144478 // 'collation' '}'
|
|
&& lk != 144480 // 'comment' '}'
|
|
&& lk != 144481 // 'constraint' '}'
|
|
&& lk != 144482 // 'construction' '}'
|
|
&& lk != 144485 // 'context' '}'
|
|
&& lk != 144486 // 'continue' '}'
|
|
&& lk != 144487 // 'copy' '}'
|
|
&& lk != 144488 // 'copy-namespaces' '}'
|
|
&& lk != 144489 // 'count' '}'
|
|
&& lk != 144490 // 'decimal-format' '}'
|
|
&& lk != 144492 // 'declare' '}'
|
|
&& lk != 144493 // 'default' '}'
|
|
&& lk != 144494 // 'delete' '}'
|
|
&& lk != 144495 // 'descendant' '}'
|
|
&& lk != 144496 // 'descendant-or-self' '}'
|
|
&& lk != 144497 // 'descending' '}'
|
|
&& lk != 144502 // 'div' '}'
|
|
&& lk != 144503 // 'document' '}'
|
|
&& lk != 144504 // 'document-node' '}'
|
|
&& lk != 144505 // 'element' '}'
|
|
&& lk != 144506 // 'else' '}'
|
|
&& lk != 144507 // 'empty' '}'
|
|
&& lk != 144508 // 'empty-sequence' '}'
|
|
&& lk != 144509 // 'encoding' '}'
|
|
&& lk != 144510 // 'end' '}'
|
|
&& lk != 144512 // 'eq' '}'
|
|
&& lk != 144513 // 'every' '}'
|
|
&& lk != 144515 // 'except' '}'
|
|
&& lk != 144516 // 'exit' '}'
|
|
&& lk != 144517 // 'external' '}'
|
|
&& lk != 144518 // 'first' '}'
|
|
&& lk != 144519 // 'following' '}'
|
|
&& lk != 144520 // 'following-sibling' '}'
|
|
&& lk != 144521 // 'for' '}'
|
|
&& lk != 144525 // 'ft-option' '}'
|
|
&& lk != 144529 // 'function' '}'
|
|
&& lk != 144530 // 'ge' '}'
|
|
&& lk != 144532 // 'group' '}'
|
|
&& lk != 144534 // 'gt' '}'
|
|
&& lk != 144535 // 'idiv' '}'
|
|
&& lk != 144536 // 'if' '}'
|
|
&& lk != 144537 // 'import' '}'
|
|
&& lk != 144538 // 'in' '}'
|
|
&& lk != 144539 // 'index' '}'
|
|
&& lk != 144543 // 'insert' '}'
|
|
&& lk != 144544 // 'instance' '}'
|
|
&& lk != 144545 // 'integrity' '}'
|
|
&& lk != 144546 // 'intersect' '}'
|
|
&& lk != 144547 // 'into' '}'
|
|
&& lk != 144548 // 'is' '}'
|
|
&& lk != 144549 // 'item' '}'
|
|
&& lk != 144551 // 'json-item' '}'
|
|
&& lk != 144554 // 'last' '}'
|
|
&& lk != 144555 // 'lax' '}'
|
|
&& lk != 144556 // 'le' '}'
|
|
&& lk != 144558 // 'let' '}'
|
|
&& lk != 144560 // 'loop' '}'
|
|
&& lk != 144562 // 'lt' '}'
|
|
&& lk != 144564 // 'mod' '}'
|
|
&& lk != 144565 // 'modify' '}'
|
|
&& lk != 144566 // 'module' '}'
|
|
&& lk != 144568 // 'namespace' '}'
|
|
&& lk != 144569 // 'namespace-node' '}'
|
|
&& lk != 144570 // 'ne' '}'
|
|
&& lk != 144575 // 'node' '}'
|
|
&& lk != 144576 // 'nodes' '}'
|
|
&& lk != 144578 // 'object' '}'
|
|
&& lk != 144582 // 'only' '}'
|
|
&& lk != 144583 // 'option' '}'
|
|
&& lk != 144584 // 'or' '}'
|
|
&& lk != 144585 // 'order' '}'
|
|
&& lk != 144586 // 'ordered' '}'
|
|
&& lk != 144587 // 'ordering' '}'
|
|
&& lk != 144590 // 'parent' '}'
|
|
&& lk != 144596 // 'preceding' '}'
|
|
&& lk != 144597 // 'preceding-sibling' '}'
|
|
&& lk != 144600 // 'processing-instruction' '}'
|
|
&& lk != 144602 // 'rename' '}'
|
|
&& lk != 144603 // 'replace' '}'
|
|
&& lk != 144604 // 'return' '}'
|
|
&& lk != 144605 // 'returning' '}'
|
|
&& lk != 144606 // 'revalidation' '}'
|
|
&& lk != 144608 // 'satisfies' '}'
|
|
&& lk != 144609 // 'schema' '}'
|
|
&& lk != 144610 // 'schema-attribute' '}'
|
|
&& lk != 144611 // 'schema-element' '}'
|
|
&& lk != 144612 // 'score' '}'
|
|
&& lk != 144613 // 'self' '}'
|
|
&& lk != 144618 // 'sliding' '}'
|
|
&& lk != 144619 // 'some' '}'
|
|
&& lk != 144620 // 'stable' '}'
|
|
&& lk != 144621 // 'start' '}'
|
|
&& lk != 144624 // 'strict' '}'
|
|
&& lk != 144627 // 'switch' '}'
|
|
&& lk != 144628 // 'text' '}'
|
|
&& lk != 144632 // 'to' '}'
|
|
&& lk != 144633 // 'treat' '}'
|
|
&& lk != 144634 // 'try' '}'
|
|
&& lk != 144635 // 'tumbling' '}'
|
|
&& lk != 144636 // 'type' '}'
|
|
&& lk != 144637 // 'typeswitch' '}'
|
|
&& lk != 144638 // 'union' '}'
|
|
&& lk != 144640 // 'unordered' '}'
|
|
&& lk != 144641 // 'updating' '}'
|
|
&& lk != 144644 // 'validate' '}'
|
|
&& lk != 144645 // 'value' '}'
|
|
&& lk != 144646 // 'variable' '}'
|
|
&& lk != 144647 // 'version' '}'
|
|
&& lk != 144650 // 'where' '}'
|
|
&& lk != 144651 // 'while' '}'
|
|
&& lk != 144654 // 'with' '}'
|
|
&& lk != 144658) // 'xquery' '}'
|
|
{
|
|
lk = memoized(6, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_Statement();
|
|
memoize(6, e0A, -1);
|
|
continue;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(6, e0A, -2);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (lk != -1
|
|
&& lk != 16134 // 'variable' '$'
|
|
&& lk != 27141 // Wildcard ';'
|
|
&& lk != 27142 // EQName^Token ';'
|
|
&& lk != 27144 // IntegerLiteral ';'
|
|
&& lk != 27145 // DecimalLiteral ';'
|
|
&& lk != 27146 // DoubleLiteral ';'
|
|
&& lk != 27147 // StringLiteral ';'
|
|
&& lk != 27180 // '.' ';'
|
|
&& lk != 27181 // '..' ';'
|
|
&& lk != 27182 // '/' ';'
|
|
&& lk != 27206 // 'after' ';'
|
|
&& lk != 27208 // 'allowing' ';'
|
|
&& lk != 27209 // 'ancestor' ';'
|
|
&& lk != 27210 // 'ancestor-or-self' ';'
|
|
&& lk != 27211 // 'and' ';'
|
|
&& lk != 27214 // 'array' ';'
|
|
&& lk != 27215 // 'as' ';'
|
|
&& lk != 27216 // 'ascending' ';'
|
|
&& lk != 27217 // 'at' ';'
|
|
&& lk != 27218 // 'attribute' ';'
|
|
&& lk != 27219 // 'base-uri' ';'
|
|
&& lk != 27220 // 'before' ';'
|
|
&& lk != 27221 // 'boundary-space' ';'
|
|
&& lk != 27222 // 'break' ';'
|
|
&& lk != 27224 // 'case' ';'
|
|
&& lk != 27225 // 'cast' ';'
|
|
&& lk != 27226 // 'castable' ';'
|
|
&& lk != 27227 // 'catch' ';'
|
|
&& lk != 27229 // 'child' ';'
|
|
&& lk != 27230 // 'collation' ';'
|
|
&& lk != 27232 // 'comment' ';'
|
|
&& lk != 27233 // 'constraint' ';'
|
|
&& lk != 27234 // 'construction' ';'
|
|
&& lk != 27237 // 'context' ';'
|
|
&& lk != 27238 // 'continue' ';'
|
|
&& lk != 27239 // 'copy' ';'
|
|
&& lk != 27240 // 'copy-namespaces' ';'
|
|
&& lk != 27241 // 'count' ';'
|
|
&& lk != 27242 // 'decimal-format' ';'
|
|
&& lk != 27244 // 'declare' ';'
|
|
&& lk != 27245 // 'default' ';'
|
|
&& lk != 27246 // 'delete' ';'
|
|
&& lk != 27247 // 'descendant' ';'
|
|
&& lk != 27248 // 'descendant-or-self' ';'
|
|
&& lk != 27249 // 'descending' ';'
|
|
&& lk != 27254 // 'div' ';'
|
|
&& lk != 27255 // 'document' ';'
|
|
&& lk != 27256 // 'document-node' ';'
|
|
&& lk != 27257 // 'element' ';'
|
|
&& lk != 27258 // 'else' ';'
|
|
&& lk != 27259 // 'empty' ';'
|
|
&& lk != 27260 // 'empty-sequence' ';'
|
|
&& lk != 27261 // 'encoding' ';'
|
|
&& lk != 27262 // 'end' ';'
|
|
&& lk != 27264 // 'eq' ';'
|
|
&& lk != 27265 // 'every' ';'
|
|
&& lk != 27267 // 'except' ';'
|
|
&& lk != 27268 // 'exit' ';'
|
|
&& lk != 27269 // 'external' ';'
|
|
&& lk != 27270 // 'first' ';'
|
|
&& lk != 27271 // 'following' ';'
|
|
&& lk != 27272 // 'following-sibling' ';'
|
|
&& lk != 27273 // 'for' ';'
|
|
&& lk != 27277 // 'ft-option' ';'
|
|
&& lk != 27281 // 'function' ';'
|
|
&& lk != 27282 // 'ge' ';'
|
|
&& lk != 27284 // 'group' ';'
|
|
&& lk != 27286 // 'gt' ';'
|
|
&& lk != 27287 // 'idiv' ';'
|
|
&& lk != 27288 // 'if' ';'
|
|
&& lk != 27289 // 'import' ';'
|
|
&& lk != 27290 // 'in' ';'
|
|
&& lk != 27291 // 'index' ';'
|
|
&& lk != 27295 // 'insert' ';'
|
|
&& lk != 27296 // 'instance' ';'
|
|
&& lk != 27297 // 'integrity' ';'
|
|
&& lk != 27298 // 'intersect' ';'
|
|
&& lk != 27299 // 'into' ';'
|
|
&& lk != 27300 // 'is' ';'
|
|
&& lk != 27301 // 'item' ';'
|
|
&& lk != 27303 // 'json-item' ';'
|
|
&& lk != 27306 // 'last' ';'
|
|
&& lk != 27307 // 'lax' ';'
|
|
&& lk != 27308 // 'le' ';'
|
|
&& lk != 27310 // 'let' ';'
|
|
&& lk != 27312 // 'loop' ';'
|
|
&& lk != 27314 // 'lt' ';'
|
|
&& lk != 27316 // 'mod' ';'
|
|
&& lk != 27317 // 'modify' ';'
|
|
&& lk != 27318 // 'module' ';'
|
|
&& lk != 27320 // 'namespace' ';'
|
|
&& lk != 27321 // 'namespace-node' ';'
|
|
&& lk != 27322 // 'ne' ';'
|
|
&& lk != 27327 // 'node' ';'
|
|
&& lk != 27328 // 'nodes' ';'
|
|
&& lk != 27330 // 'object' ';'
|
|
&& lk != 27334 // 'only' ';'
|
|
&& lk != 27335 // 'option' ';'
|
|
&& lk != 27336 // 'or' ';'
|
|
&& lk != 27337 // 'order' ';'
|
|
&& lk != 27338 // 'ordered' ';'
|
|
&& lk != 27339 // 'ordering' ';'
|
|
&& lk != 27342 // 'parent' ';'
|
|
&& lk != 27348 // 'preceding' ';'
|
|
&& lk != 27349 // 'preceding-sibling' ';'
|
|
&& lk != 27352 // 'processing-instruction' ';'
|
|
&& lk != 27354 // 'rename' ';'
|
|
&& lk != 27355 // 'replace' ';'
|
|
&& lk != 27356 // 'return' ';'
|
|
&& lk != 27357 // 'returning' ';'
|
|
&& lk != 27358 // 'revalidation' ';'
|
|
&& lk != 27360 // 'satisfies' ';'
|
|
&& lk != 27361 // 'schema' ';'
|
|
&& lk != 27362 // 'schema-attribute' ';'
|
|
&& lk != 27363 // 'schema-element' ';'
|
|
&& lk != 27364 // 'score' ';'
|
|
&& lk != 27365 // 'self' ';'
|
|
&& lk != 27370 // 'sliding' ';'
|
|
&& lk != 27371 // 'some' ';'
|
|
&& lk != 27372 // 'stable' ';'
|
|
&& lk != 27373 // 'start' ';'
|
|
&& lk != 27376 // 'strict' ';'
|
|
&& lk != 27379 // 'switch' ';'
|
|
&& lk != 27380 // 'text' ';'
|
|
&& lk != 27384 // 'to' ';'
|
|
&& lk != 27385 // 'treat' ';'
|
|
&& lk != 27386 // 'try' ';'
|
|
&& lk != 27387 // 'tumbling' ';'
|
|
&& lk != 27388 // 'type' ';'
|
|
&& lk != 27389 // 'typeswitch' ';'
|
|
&& lk != 27390 // 'union' ';'
|
|
&& lk != 27392 // 'unordered' ';'
|
|
&& lk != 27393 // 'updating' ';'
|
|
&& lk != 27396 // 'validate' ';'
|
|
&& lk != 27397 // 'value' ';'
|
|
&& lk != 27398 // 'variable' ';'
|
|
&& lk != 27399 // 'version' ';'
|
|
&& lk != 27402 // 'where' ';'
|
|
&& lk != 27403 // 'while' ';'
|
|
&& lk != 27406 // 'with' ';'
|
|
&& lk != 27410 // 'xquery' ';'
|
|
&& lk != 90198 // 'break' 'loop'
|
|
&& lk != 90214 // 'continue' 'loop'
|
|
&& lk != 113284) // 'exit' 'returning'
|
|
{
|
|
break;
|
|
}
|
|
try_Statement();
|
|
}
|
|
}
|
|
|
|
function parse_StatementsAndExpr()
|
|
{
|
|
eventHandler.startNonterminal("StatementsAndExpr", e0);
|
|
parse_Statements();
|
|
whitespace();
|
|
parse_Expr();
|
|
eventHandler.endNonterminal("StatementsAndExpr", e0);
|
|
}
|
|
|
|
function try_StatementsAndExpr()
|
|
{
|
|
try_Statements();
|
|
try_Expr();
|
|
}
|
|
|
|
function parse_StatementsAndOptionalExpr()
|
|
{
|
|
eventHandler.startNonterminal("StatementsAndOptionalExpr", e0);
|
|
parse_Statements();
|
|
if (l1 != 25 // EOF
|
|
&& l1 != 282) // '}'
|
|
{
|
|
whitespace();
|
|
parse_Expr();
|
|
}
|
|
eventHandler.endNonterminal("StatementsAndOptionalExpr", e0);
|
|
}
|
|
|
|
function try_StatementsAndOptionalExpr()
|
|
{
|
|
try_Statements();
|
|
if (l1 != 25 // EOF
|
|
&& l1 != 282) // '}'
|
|
{
|
|
try_Expr();
|
|
}
|
|
}
|
|
|
|
function parse_Statement()
|
|
{
|
|
eventHandler.startNonterminal("Statement", e0);
|
|
switch (l1)
|
|
{
|
|
case 132: // 'exit'
|
|
lookahead2W(189); // S^WS | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' | '<' |
|
|
// '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'returning' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||'
|
|
break;
|
|
case 137: // 'for'
|
|
lookahead2W(196); // S^WS | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'sliding' | 'to' |
|
|
// 'treat' | 'tumbling' | 'union' | '|' | '||'
|
|
break;
|
|
case 174: // 'let'
|
|
lookahead2W(193); // S^WS | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'score' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||'
|
|
break;
|
|
case 250: // 'try'
|
|
lookahead2W(190); // S^WS | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' | '<' |
|
|
// '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '{' | '|' | '||'
|
|
break;
|
|
case 262: // 'variable'
|
|
lookahead2W(187); // S^WS | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '|' | '||'
|
|
break;
|
|
case 276: // '{'
|
|
lookahead2W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
break;
|
|
case 31: // '$'
|
|
case 32: // '%'
|
|
lookahead2W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
break;
|
|
case 86: // 'break'
|
|
case 102: // 'continue'
|
|
lookahead2W(188); // S^WS | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' | '<' |
|
|
// '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'loop' | 'lt' | 'mod' | 'ne' | 'or' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||'
|
|
break;
|
|
case 152: // 'if'
|
|
case 243: // 'switch'
|
|
case 253: // 'typeswitch'
|
|
case 267: // 'while'
|
|
lookahead2W(185); // S^WS | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' | '<' |
|
|
// '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '|' | '||'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 2836 // '{' Wildcard
|
|
|| lk == 3103 // '$' EQName^Token
|
|
|| lk == 3104 // '%' EQName^Token
|
|
|| lk == 3348 // '{' EQName^Token
|
|
|| lk == 4372 // '{' IntegerLiteral
|
|
|| lk == 4884 // '{' DecimalLiteral
|
|
|| lk == 5396 // '{' DoubleLiteral
|
|
|| lk == 5908 // '{' StringLiteral
|
|
|| lk == 16148 // '{' '$'
|
|
|| lk == 16660 // '{' '%'
|
|
|| lk == 17675 // 'while' '('
|
|
|| lk == 17684 // '{' '('
|
|
|| lk == 18196 // '{' '(#'
|
|
|| lk == 20756 // '{' '+'
|
|
|| lk == 21780 // '{' '-'
|
|
|| lk == 22804 // '{' '.'
|
|
|| lk == 23316 // '{' '..'
|
|
|| lk == 23828 // '{' '/'
|
|
|| lk == 24340 // '{' '//'
|
|
|| lk == 27924 // '{' '<'
|
|
|| lk == 28436 // '{' '<!--'
|
|
|| lk == 30484 // '{' '<?'
|
|
|| lk == 34068 // '{' '@'
|
|
|| lk == 35092 // '{' '['
|
|
|| lk == 35871 // '$' 'after'
|
|
|| lk == 35872 // '%' 'after'
|
|
|| lk == 36116 // '{' 'after'
|
|
|| lk == 36895 // '$' 'allowing'
|
|
|| lk == 36896 // '%' 'allowing'
|
|
|| lk == 37140 // '{' 'allowing'
|
|
|| lk == 37407 // '$' 'ancestor'
|
|
|| lk == 37408 // '%' 'ancestor'
|
|
|| lk == 37652 // '{' 'ancestor'
|
|
|| lk == 37919 // '$' 'ancestor-or-self'
|
|
|| lk == 37920 // '%' 'ancestor-or-self'
|
|
|| lk == 38164 // '{' 'ancestor-or-self'
|
|
|| lk == 38431 // '$' 'and'
|
|
|| lk == 38432 // '%' 'and'
|
|
|| lk == 38676 // '{' 'and'
|
|
|| lk == 39700 // '{' 'append'
|
|
|| lk == 39967 // '$' 'array'
|
|
|| lk == 39968 // '%' 'array'
|
|
|| lk == 40212 // '{' 'array'
|
|
|| lk == 40479 // '$' 'as'
|
|
|| lk == 40480 // '%' 'as'
|
|
|| lk == 40724 // '{' 'as'
|
|
|| lk == 40991 // '$' 'ascending'
|
|
|| lk == 40992 // '%' 'ascending'
|
|
|| lk == 41236 // '{' 'ascending'
|
|
|| lk == 41503 // '$' 'at'
|
|
|| lk == 41504 // '%' 'at'
|
|
|| lk == 41748 // '{' 'at'
|
|
|| lk == 42015 // '$' 'attribute'
|
|
|| lk == 42016 // '%' 'attribute'
|
|
|| lk == 42260 // '{' 'attribute'
|
|
|| lk == 42527 // '$' 'base-uri'
|
|
|| lk == 42528 // '%' 'base-uri'
|
|
|| lk == 42772 // '{' 'base-uri'
|
|
|| lk == 43039 // '$' 'before'
|
|
|| lk == 43040 // '%' 'before'
|
|
|| lk == 43284 // '{' 'before'
|
|
|| lk == 43551 // '$' 'boundary-space'
|
|
|| lk == 43552 // '%' 'boundary-space'
|
|
|| lk == 43796 // '{' 'boundary-space'
|
|
|| lk == 44063 // '$' 'break'
|
|
|| lk == 44064 // '%' 'break'
|
|
|| lk == 44308 // '{' 'break'
|
|
|| lk == 45087 // '$' 'case'
|
|
|| lk == 45088 // '%' 'case'
|
|
|| lk == 45332 // '{' 'case'
|
|
|| lk == 45599 // '$' 'cast'
|
|
|| lk == 45600 // '%' 'cast'
|
|
|| lk == 45844 // '{' 'cast'
|
|
|| lk == 46111 // '$' 'castable'
|
|
|| lk == 46112 // '%' 'castable'
|
|
|| lk == 46356 // '{' 'castable'
|
|
|| lk == 46623 // '$' 'catch'
|
|
|| lk == 46624 // '%' 'catch'
|
|
|| lk == 46868 // '{' 'catch'
|
|
|| lk == 47647 // '$' 'child'
|
|
|| lk == 47648 // '%' 'child'
|
|
|| lk == 47892 // '{' 'child'
|
|
|| lk == 48159 // '$' 'collation'
|
|
|| lk == 48160 // '%' 'collation'
|
|
|| lk == 48404 // '{' 'collation'
|
|
|| lk == 49183 // '$' 'comment'
|
|
|| lk == 49184 // '%' 'comment'
|
|
|| lk == 49428 // '{' 'comment'
|
|
|| lk == 49695 // '$' 'constraint'
|
|
|| lk == 49696 // '%' 'constraint'
|
|
|| lk == 49940 // '{' 'constraint'
|
|
|| lk == 50207 // '$' 'construction'
|
|
|| lk == 50208 // '%' 'construction'
|
|
|| lk == 50452 // '{' 'construction'
|
|
|| lk == 51743 // '$' 'context'
|
|
|| lk == 51744 // '%' 'context'
|
|
|| lk == 51988 // '{' 'context'
|
|
|| lk == 52255 // '$' 'continue'
|
|
|| lk == 52256 // '%' 'continue'
|
|
|| lk == 52500 // '{' 'continue'
|
|
|| lk == 52767 // '$' 'copy'
|
|
|| lk == 52768 // '%' 'copy'
|
|
|| lk == 53012 // '{' 'copy'
|
|
|| lk == 53279 // '$' 'copy-namespaces'
|
|
|| lk == 53280 // '%' 'copy-namespaces'
|
|
|| lk == 53524 // '{' 'copy-namespaces'
|
|
|| lk == 53791 // '$' 'count'
|
|
|| lk == 53792 // '%' 'count'
|
|
|| lk == 54036 // '{' 'count'
|
|
|| lk == 54303 // '$' 'decimal-format'
|
|
|| lk == 54304 // '%' 'decimal-format'
|
|
|| lk == 54548 // '{' 'decimal-format'
|
|
|| lk == 55327 // '$' 'declare'
|
|
|| lk == 55328 // '%' 'declare'
|
|
|| lk == 55572 // '{' 'declare'
|
|
|| lk == 55839 // '$' 'default'
|
|
|| lk == 55840 // '%' 'default'
|
|
|| lk == 56084 // '{' 'default'
|
|
|| lk == 56351 // '$' 'delete'
|
|
|| lk == 56352 // '%' 'delete'
|
|
|| lk == 56596 // '{' 'delete'
|
|
|| lk == 56863 // '$' 'descendant'
|
|
|| lk == 56864 // '%' 'descendant'
|
|
|| lk == 57108 // '{' 'descendant'
|
|
|| lk == 57375 // '$' 'descendant-or-self'
|
|
|| lk == 57376 // '%' 'descendant-or-self'
|
|
|| lk == 57620 // '{' 'descendant-or-self'
|
|
|| lk == 57887 // '$' 'descending'
|
|
|| lk == 57888 // '%' 'descending'
|
|
|| lk == 58132 // '{' 'descending'
|
|
|| lk == 60447 // '$' 'div'
|
|
|| lk == 60448 // '%' 'div'
|
|
|| lk == 60692 // '{' 'div'
|
|
|| lk == 60959 // '$' 'document'
|
|
|| lk == 60960 // '%' 'document'
|
|
|| lk == 61204 // '{' 'document'
|
|
|| lk == 61471 // '$' 'document-node'
|
|
|| lk == 61472 // '%' 'document-node'
|
|
|| lk == 61716 // '{' 'document-node'
|
|
|| lk == 61983 // '$' 'element'
|
|
|| lk == 61984 // '%' 'element'
|
|
|| lk == 62228 // '{' 'element'
|
|
|| lk == 62495 // '$' 'else'
|
|
|| lk == 62496 // '%' 'else'
|
|
|| lk == 62740 // '{' 'else'
|
|
|| lk == 63007 // '$' 'empty'
|
|
|| lk == 63008 // '%' 'empty'
|
|
|| lk == 63252 // '{' 'empty'
|
|
|| lk == 63519 // '$' 'empty-sequence'
|
|
|| lk == 63520 // '%' 'empty-sequence'
|
|
|| lk == 63764 // '{' 'empty-sequence'
|
|
|| lk == 64031 // '$' 'encoding'
|
|
|| lk == 64032 // '%' 'encoding'
|
|
|| lk == 64276 // '{' 'encoding'
|
|
|| lk == 64543 // '$' 'end'
|
|
|| lk == 64544 // '%' 'end'
|
|
|| lk == 64788 // '{' 'end'
|
|
|| lk == 65567 // '$' 'eq'
|
|
|| lk == 65568 // '%' 'eq'
|
|
|| lk == 65812 // '{' 'eq'
|
|
|| lk == 66079 // '$' 'every'
|
|
|| lk == 66080 // '%' 'every'
|
|
|| lk == 66324 // '{' 'every'
|
|
|| lk == 67103 // '$' 'except'
|
|
|| lk == 67104 // '%' 'except'
|
|
|| lk == 67348 // '{' 'except'
|
|
|| lk == 67615 // '$' 'exit'
|
|
|| lk == 67616 // '%' 'exit'
|
|
|| lk == 67860 // '{' 'exit'
|
|
|| lk == 68127 // '$' 'external'
|
|
|| lk == 68128 // '%' 'external'
|
|
|| lk == 68372 // '{' 'external'
|
|
|| lk == 68639 // '$' 'first'
|
|
|| lk == 68640 // '%' 'first'
|
|
|| lk == 68884 // '{' 'first'
|
|
|| lk == 69151 // '$' 'following'
|
|
|| lk == 69152 // '%' 'following'
|
|
|| lk == 69396 // '{' 'following'
|
|
|| lk == 69663 // '$' 'following-sibling'
|
|
|| lk == 69664 // '%' 'following-sibling'
|
|
|| lk == 69908 // '{' 'following-sibling'
|
|
|| lk == 70175 // '$' 'for'
|
|
|| lk == 70176 // '%' 'for'
|
|
|| lk == 70420 // '{' 'for'
|
|
|| lk == 72223 // '$' 'ft-option'
|
|
|| lk == 72224 // '%' 'ft-option'
|
|
|| lk == 72468 // '{' 'ft-option'
|
|
|| lk == 74271 // '$' 'function'
|
|
|| lk == 74272 // '%' 'function'
|
|
|| lk == 74516 // '{' 'function'
|
|
|| lk == 74783 // '$' 'ge'
|
|
|| lk == 74784 // '%' 'ge'
|
|
|| lk == 75028 // '{' 'ge'
|
|
|| lk == 75807 // '$' 'group'
|
|
|| lk == 75808 // '%' 'group'
|
|
|| lk == 76052 // '{' 'group'
|
|
|| lk == 76831 // '$' 'gt'
|
|
|| lk == 76832 // '%' 'gt'
|
|
|| lk == 77076 // '{' 'gt'
|
|
|| lk == 77343 // '$' 'idiv'
|
|
|| lk == 77344 // '%' 'idiv'
|
|
|| lk == 77588 // '{' 'idiv'
|
|
|| lk == 77855 // '$' 'if'
|
|
|| lk == 77856 // '%' 'if'
|
|
|| lk == 78100 // '{' 'if'
|
|
|| lk == 78367 // '$' 'import'
|
|
|| lk == 78368 // '%' 'import'
|
|
|| lk == 78612 // '{' 'import'
|
|
|| lk == 78879 // '$' 'in'
|
|
|| lk == 78880 // '%' 'in'
|
|
|| lk == 79124 // '{' 'in'
|
|
|| lk == 79391 // '$' 'index'
|
|
|| lk == 79392 // '%' 'index'
|
|
|| lk == 79636 // '{' 'index'
|
|
|| lk == 81439 // '$' 'insert'
|
|
|| lk == 81440 // '%' 'insert'
|
|
|| lk == 81684 // '{' 'insert'
|
|
|| lk == 81951 // '$' 'instance'
|
|
|| lk == 81952 // '%' 'instance'
|
|
|| lk == 82196 // '{' 'instance'
|
|
|| lk == 82463 // '$' 'integrity'
|
|
|| lk == 82464 // '%' 'integrity'
|
|
|| lk == 82708 // '{' 'integrity'
|
|
|| lk == 82975 // '$' 'intersect'
|
|
|| lk == 82976 // '%' 'intersect'
|
|
|| lk == 83220 // '{' 'intersect'
|
|
|| lk == 83487 // '$' 'into'
|
|
|| lk == 83488 // '%' 'into'
|
|
|| lk == 83732 // '{' 'into'
|
|
|| lk == 83999 // '$' 'is'
|
|
|| lk == 84000 // '%' 'is'
|
|
|| lk == 84244 // '{' 'is'
|
|
|| lk == 84511 // '$' 'item'
|
|
|| lk == 84512 // '%' 'item'
|
|
|| lk == 84756 // '{' 'item'
|
|
|| lk == 85535 // '$' 'json-item'
|
|
|| lk == 85536 // '%' 'json-item'
|
|
|| lk == 85780 // '{' 'json-item'
|
|
|| lk == 87071 // '$' 'last'
|
|
|| lk == 87072 // '%' 'last'
|
|
|| lk == 87316 // '{' 'last'
|
|
|| lk == 87583 // '$' 'lax'
|
|
|| lk == 87584 // '%' 'lax'
|
|
|| lk == 87828 // '{' 'lax'
|
|
|| lk == 88095 // '$' 'le'
|
|
|| lk == 88096 // '%' 'le'
|
|
|| lk == 88340 // '{' 'le'
|
|
|| lk == 89119 // '$' 'let'
|
|
|| lk == 89120 // '%' 'let'
|
|
|| lk == 89364 // '{' 'let'
|
|
|| lk == 90143 // '$' 'loop'
|
|
|| lk == 90144 // '%' 'loop'
|
|
|| lk == 90388 // '{' 'loop'
|
|
|| lk == 91167 // '$' 'lt'
|
|
|| lk == 91168 // '%' 'lt'
|
|
|| lk == 91412 // '{' 'lt'
|
|
|| lk == 92191 // '$' 'mod'
|
|
|| lk == 92192 // '%' 'mod'
|
|
|| lk == 92436 // '{' 'mod'
|
|
|| lk == 92703 // '$' 'modify'
|
|
|| lk == 92704 // '%' 'modify'
|
|
|| lk == 92948 // '{' 'modify'
|
|
|| lk == 93215 // '$' 'module'
|
|
|| lk == 93216 // '%' 'module'
|
|
|| lk == 93460 // '{' 'module'
|
|
|| lk == 94239 // '$' 'namespace'
|
|
|| lk == 94240 // '%' 'namespace'
|
|
|| lk == 94484 // '{' 'namespace'
|
|
|| lk == 94751 // '$' 'namespace-node'
|
|
|| lk == 94752 // '%' 'namespace-node'
|
|
|| lk == 94996 // '{' 'namespace-node'
|
|
|| lk == 95263 // '$' 'ne'
|
|
|| lk == 95264 // '%' 'ne'
|
|
|| lk == 95508 // '{' 'ne'
|
|
|| lk == 97823 // '$' 'node'
|
|
|| lk == 97824 // '%' 'node'
|
|
|| lk == 98068 // '{' 'node'
|
|
|| lk == 98335 // '$' 'nodes'
|
|
|| lk == 98336 // '%' 'nodes'
|
|
|| lk == 98580 // '{' 'nodes'
|
|
|| lk == 99359 // '$' 'object'
|
|
|| lk == 99360 // '%' 'object'
|
|
|| lk == 99604 // '{' 'object'
|
|
|| lk == 101407 // '$' 'only'
|
|
|| lk == 101408 // '%' 'only'
|
|
|| lk == 101652 // '{' 'only'
|
|
|| lk == 101919 // '$' 'option'
|
|
|| lk == 101920 // '%' 'option'
|
|
|| lk == 102164 // '{' 'option'
|
|
|| lk == 102431 // '$' 'or'
|
|
|| lk == 102432 // '%' 'or'
|
|
|| lk == 102676 // '{' 'or'
|
|
|| lk == 102943 // '$' 'order'
|
|
|| lk == 102944 // '%' 'order'
|
|
|| lk == 103188 // '{' 'order'
|
|
|| lk == 103455 // '$' 'ordered'
|
|
|| lk == 103456 // '%' 'ordered'
|
|
|| lk == 103700 // '{' 'ordered'
|
|
|| lk == 103967 // '$' 'ordering'
|
|
|| lk == 103968 // '%' 'ordering'
|
|
|| lk == 104212 // '{' 'ordering'
|
|
|| lk == 105503 // '$' 'parent'
|
|
|| lk == 105504 // '%' 'parent'
|
|
|| lk == 105748 // '{' 'parent'
|
|
|| lk == 108575 // '$' 'preceding'
|
|
|| lk == 108576 // '%' 'preceding'
|
|
|| lk == 108820 // '{' 'preceding'
|
|
|| lk == 109087 // '$' 'preceding-sibling'
|
|
|| lk == 109088 // '%' 'preceding-sibling'
|
|
|| lk == 109332 // '{' 'preceding-sibling'
|
|
|| lk == 110623 // '$' 'processing-instruction'
|
|
|| lk == 110624 // '%' 'processing-instruction'
|
|
|| lk == 110868 // '{' 'processing-instruction'
|
|
|| lk == 111647 // '$' 'rename'
|
|
|| lk == 111648 // '%' 'rename'
|
|
|| lk == 111892 // '{' 'rename'
|
|
|| lk == 112159 // '$' 'replace'
|
|
|| lk == 112160 // '%' 'replace'
|
|
|| lk == 112404 // '{' 'replace'
|
|
|| lk == 112671 // '$' 'return'
|
|
|| lk == 112672 // '%' 'return'
|
|
|| lk == 112916 // '{' 'return'
|
|
|| lk == 113183 // '$' 'returning'
|
|
|| lk == 113184 // '%' 'returning'
|
|
|| lk == 113428 // '{' 'returning'
|
|
|| lk == 113695 // '$' 'revalidation'
|
|
|| lk == 113696 // '%' 'revalidation'
|
|
|| lk == 113940 // '{' 'revalidation'
|
|
|| lk == 114719 // '$' 'satisfies'
|
|
|| lk == 114720 // '%' 'satisfies'
|
|
|| lk == 114964 // '{' 'satisfies'
|
|
|| lk == 115231 // '$' 'schema'
|
|
|| lk == 115232 // '%' 'schema'
|
|
|| lk == 115476 // '{' 'schema'
|
|
|| lk == 115743 // '$' 'schema-attribute'
|
|
|| lk == 115744 // '%' 'schema-attribute'
|
|
|| lk == 115988 // '{' 'schema-attribute'
|
|
|| lk == 116255 // '$' 'schema-element'
|
|
|| lk == 116256 // '%' 'schema-element'
|
|
|| lk == 116500 // '{' 'schema-element'
|
|
|| lk == 116767 // '$' 'score'
|
|
|| lk == 116768 // '%' 'score'
|
|
|| lk == 117012 // '{' 'score'
|
|
|| lk == 117279 // '$' 'self'
|
|
|| lk == 117280 // '%' 'self'
|
|
|| lk == 117524 // '{' 'self'
|
|
|| lk == 119839 // '$' 'sliding'
|
|
|| lk == 119840 // '%' 'sliding'
|
|
|| lk == 120084 // '{' 'sliding'
|
|
|| lk == 120351 // '$' 'some'
|
|
|| lk == 120352 // '%' 'some'
|
|
|| lk == 120596 // '{' 'some'
|
|
|| lk == 120863 // '$' 'stable'
|
|
|| lk == 120864 // '%' 'stable'
|
|
|| lk == 121108 // '{' 'stable'
|
|
|| lk == 121375 // '$' 'start'
|
|
|| lk == 121376 // '%' 'start'
|
|
|| lk == 121620 // '{' 'start'
|
|
|| lk == 122911 // '$' 'strict'
|
|
|| lk == 122912 // '%' 'strict'
|
|
|| lk == 123156 // '{' 'strict'
|
|
|| lk == 124447 // '$' 'switch'
|
|
|| lk == 124448 // '%' 'switch'
|
|
|| lk == 124692 // '{' 'switch'
|
|
|| lk == 124959 // '$' 'text'
|
|
|| lk == 124960 // '%' 'text'
|
|
|| lk == 125204 // '{' 'text'
|
|
|| lk == 127007 // '$' 'to'
|
|
|| lk == 127008 // '%' 'to'
|
|
|| lk == 127252 // '{' 'to'
|
|
|| lk == 127519 // '$' 'treat'
|
|
|| lk == 127520 // '%' 'treat'
|
|
|| lk == 127764 // '{' 'treat'
|
|
|| lk == 128031 // '$' 'try'
|
|
|| lk == 128032 // '%' 'try'
|
|
|| lk == 128276 // '{' 'try'
|
|
|| lk == 128543 // '$' 'tumbling'
|
|
|| lk == 128544 // '%' 'tumbling'
|
|
|| lk == 128788 // '{' 'tumbling'
|
|
|| lk == 129055 // '$' 'type'
|
|
|| lk == 129056 // '%' 'type'
|
|
|| lk == 129300 // '{' 'type'
|
|
|| lk == 129567 // '$' 'typeswitch'
|
|
|| lk == 129568 // '%' 'typeswitch'
|
|
|| lk == 129812 // '{' 'typeswitch'
|
|
|| lk == 130079 // '$' 'union'
|
|
|| lk == 130080 // '%' 'union'
|
|
|| lk == 130324 // '{' 'union'
|
|
|| lk == 131103 // '$' 'unordered'
|
|
|| lk == 131104 // '%' 'unordered'
|
|
|| lk == 131348 // '{' 'unordered'
|
|
|| lk == 131615 // '$' 'updating'
|
|
|| lk == 131616 // '%' 'updating'
|
|
|| lk == 131860 // '{' 'updating'
|
|
|| lk == 133151 // '$' 'validate'
|
|
|| lk == 133152 // '%' 'validate'
|
|
|| lk == 133396 // '{' 'validate'
|
|
|| lk == 133663 // '$' 'value'
|
|
|| lk == 133664 // '%' 'value'
|
|
|| lk == 133908 // '{' 'value'
|
|
|| lk == 134175 // '$' 'variable'
|
|
|| lk == 134176 // '%' 'variable'
|
|
|| lk == 134420 // '{' 'variable'
|
|
|| lk == 134687 // '$' 'version'
|
|
|| lk == 134688 // '%' 'version'
|
|
|| lk == 134932 // '{' 'version'
|
|
|| lk == 136223 // '$' 'where'
|
|
|| lk == 136224 // '%' 'where'
|
|
|| lk == 136468 // '{' 'where'
|
|
|| lk == 136735 // '$' 'while'
|
|
|| lk == 136736 // '%' 'while'
|
|
|| lk == 136980 // '{' 'while'
|
|
|| lk == 138271 // '$' 'with'
|
|
|| lk == 138272 // '%' 'with'
|
|
|| lk == 138516 // '{' 'with'
|
|
|| lk == 140319 // '$' 'xquery'
|
|
|| lk == 140320 // '%' 'xquery'
|
|
|| lk == 140564 // '{' 'xquery'
|
|
|| lk == 141588 // '{' '{'
|
|
|| lk == 142612 // '{' '{|'
|
|
|| lk == 144660) // '{' '}'
|
|
{
|
|
lk = memoized(7, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_ApplyStatement();
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
try
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
try_AssignStatement();
|
|
lk = -2;
|
|
}
|
|
catch (p2A)
|
|
{
|
|
try
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
try_BlockStatement();
|
|
lk = -3;
|
|
}
|
|
catch (p3A)
|
|
{
|
|
try
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
try_VarDeclStatement();
|
|
lk = -12;
|
|
}
|
|
catch (p12A)
|
|
{
|
|
lk = -13;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(7, e0, lk);
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -2:
|
|
parse_AssignStatement();
|
|
break;
|
|
case -3:
|
|
parse_BlockStatement();
|
|
break;
|
|
case 90198: // 'break' 'loop'
|
|
parse_BreakStatement();
|
|
break;
|
|
case 90214: // 'continue' 'loop'
|
|
parse_ContinueStatement();
|
|
break;
|
|
case 113284: // 'exit' 'returning'
|
|
parse_ExitStatement();
|
|
break;
|
|
case 16009: // 'for' '$'
|
|
case 16046: // 'let' '$'
|
|
case 116910: // 'let' 'score'
|
|
case 119945: // 'for' 'sliding'
|
|
case 128649: // 'for' 'tumbling'
|
|
parse_FLWORStatement();
|
|
break;
|
|
case 17560: // 'if' '('
|
|
parse_IfStatement();
|
|
break;
|
|
case 17651: // 'switch' '('
|
|
parse_SwitchStatement();
|
|
break;
|
|
case 141562: // 'try' '{'
|
|
parse_TryCatchStatement();
|
|
break;
|
|
case 17661: // 'typeswitch' '('
|
|
parse_TypeswitchStatement();
|
|
break;
|
|
case -12:
|
|
case 16134: // 'variable' '$'
|
|
parse_VarDeclStatement();
|
|
break;
|
|
case -13:
|
|
parse_WhileStatement();
|
|
break;
|
|
default:
|
|
parse_ApplyStatement();
|
|
}
|
|
eventHandler.endNonterminal("Statement", e0);
|
|
}
|
|
|
|
function try_Statement()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 132: // 'exit'
|
|
lookahead2W(189); // S^WS | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' | '<' |
|
|
// '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'returning' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||'
|
|
break;
|
|
case 137: // 'for'
|
|
lookahead2W(196); // S^WS | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'sliding' | 'to' |
|
|
// 'treat' | 'tumbling' | 'union' | '|' | '||'
|
|
break;
|
|
case 174: // 'let'
|
|
lookahead2W(193); // S^WS | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'score' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||'
|
|
break;
|
|
case 250: // 'try'
|
|
lookahead2W(190); // S^WS | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' | '<' |
|
|
// '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '{' | '|' | '||'
|
|
break;
|
|
case 262: // 'variable'
|
|
lookahead2W(187); // S^WS | '!' | '!=' | '#' | '$' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' |
|
|
// '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '|' | '||'
|
|
break;
|
|
case 276: // '{'
|
|
lookahead2W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
break;
|
|
case 31: // '$'
|
|
case 32: // '%'
|
|
lookahead2W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
break;
|
|
case 86: // 'break'
|
|
case 102: // 'continue'
|
|
lookahead2W(188); // S^WS | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' | '<' |
|
|
// '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'loop' | 'lt' | 'mod' | 'ne' | 'or' | 'to' |
|
|
// 'treat' | 'union' | '|' | '||'
|
|
break;
|
|
case 152: // 'if'
|
|
case 243: // 'switch'
|
|
case 253: // 'typeswitch'
|
|
case 267: // 'while'
|
|
lookahead2W(185); // S^WS | '!' | '!=' | '#' | '(' | '(:' | '*' | '+' | '-' | '/' | '//' | ';' | '<' |
|
|
// '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | 'and' | 'cast' | 'castable' |
|
|
// 'contains' | 'div' | 'eq' | 'except' | 'ge' | 'gt' | 'idiv' | 'instance' |
|
|
// 'intersect' | 'is' | 'le' | 'lt' | 'mod' | 'ne' | 'or' | 'to' | 'treat' |
|
|
// 'union' | '|' | '||'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 2836 // '{' Wildcard
|
|
|| lk == 3103 // '$' EQName^Token
|
|
|| lk == 3104 // '%' EQName^Token
|
|
|| lk == 3348 // '{' EQName^Token
|
|
|| lk == 4372 // '{' IntegerLiteral
|
|
|| lk == 4884 // '{' DecimalLiteral
|
|
|| lk == 5396 // '{' DoubleLiteral
|
|
|| lk == 5908 // '{' StringLiteral
|
|
|| lk == 16148 // '{' '$'
|
|
|| lk == 16660 // '{' '%'
|
|
|| lk == 17675 // 'while' '('
|
|
|| lk == 17684 // '{' '('
|
|
|| lk == 18196 // '{' '(#'
|
|
|| lk == 20756 // '{' '+'
|
|
|| lk == 21780 // '{' '-'
|
|
|| lk == 22804 // '{' '.'
|
|
|| lk == 23316 // '{' '..'
|
|
|| lk == 23828 // '{' '/'
|
|
|| lk == 24340 // '{' '//'
|
|
|| lk == 27924 // '{' '<'
|
|
|| lk == 28436 // '{' '<!--'
|
|
|| lk == 30484 // '{' '<?'
|
|
|| lk == 34068 // '{' '@'
|
|
|| lk == 35092 // '{' '['
|
|
|| lk == 35871 // '$' 'after'
|
|
|| lk == 35872 // '%' 'after'
|
|
|| lk == 36116 // '{' 'after'
|
|
|| lk == 36895 // '$' 'allowing'
|
|
|| lk == 36896 // '%' 'allowing'
|
|
|| lk == 37140 // '{' 'allowing'
|
|
|| lk == 37407 // '$' 'ancestor'
|
|
|| lk == 37408 // '%' 'ancestor'
|
|
|| lk == 37652 // '{' 'ancestor'
|
|
|| lk == 37919 // '$' 'ancestor-or-self'
|
|
|| lk == 37920 // '%' 'ancestor-or-self'
|
|
|| lk == 38164 // '{' 'ancestor-or-self'
|
|
|| lk == 38431 // '$' 'and'
|
|
|| lk == 38432 // '%' 'and'
|
|
|| lk == 38676 // '{' 'and'
|
|
|| lk == 39700 // '{' 'append'
|
|
|| lk == 39967 // '$' 'array'
|
|
|| lk == 39968 // '%' 'array'
|
|
|| lk == 40212 // '{' 'array'
|
|
|| lk == 40479 // '$' 'as'
|
|
|| lk == 40480 // '%' 'as'
|
|
|| lk == 40724 // '{' 'as'
|
|
|| lk == 40991 // '$' 'ascending'
|
|
|| lk == 40992 // '%' 'ascending'
|
|
|| lk == 41236 // '{' 'ascending'
|
|
|| lk == 41503 // '$' 'at'
|
|
|| lk == 41504 // '%' 'at'
|
|
|| lk == 41748 // '{' 'at'
|
|
|| lk == 42015 // '$' 'attribute'
|
|
|| lk == 42016 // '%' 'attribute'
|
|
|| lk == 42260 // '{' 'attribute'
|
|
|| lk == 42527 // '$' 'base-uri'
|
|
|| lk == 42528 // '%' 'base-uri'
|
|
|| lk == 42772 // '{' 'base-uri'
|
|
|| lk == 43039 // '$' 'before'
|
|
|| lk == 43040 // '%' 'before'
|
|
|| lk == 43284 // '{' 'before'
|
|
|| lk == 43551 // '$' 'boundary-space'
|
|
|| lk == 43552 // '%' 'boundary-space'
|
|
|| lk == 43796 // '{' 'boundary-space'
|
|
|| lk == 44063 // '$' 'break'
|
|
|| lk == 44064 // '%' 'break'
|
|
|| lk == 44308 // '{' 'break'
|
|
|| lk == 45087 // '$' 'case'
|
|
|| lk == 45088 // '%' 'case'
|
|
|| lk == 45332 // '{' 'case'
|
|
|| lk == 45599 // '$' 'cast'
|
|
|| lk == 45600 // '%' 'cast'
|
|
|| lk == 45844 // '{' 'cast'
|
|
|| lk == 46111 // '$' 'castable'
|
|
|| lk == 46112 // '%' 'castable'
|
|
|| lk == 46356 // '{' 'castable'
|
|
|| lk == 46623 // '$' 'catch'
|
|
|| lk == 46624 // '%' 'catch'
|
|
|| lk == 46868 // '{' 'catch'
|
|
|| lk == 47647 // '$' 'child'
|
|
|| lk == 47648 // '%' 'child'
|
|
|| lk == 47892 // '{' 'child'
|
|
|| lk == 48159 // '$' 'collation'
|
|
|| lk == 48160 // '%' 'collation'
|
|
|| lk == 48404 // '{' 'collation'
|
|
|| lk == 49183 // '$' 'comment'
|
|
|| lk == 49184 // '%' 'comment'
|
|
|| lk == 49428 // '{' 'comment'
|
|
|| lk == 49695 // '$' 'constraint'
|
|
|| lk == 49696 // '%' 'constraint'
|
|
|| lk == 49940 // '{' 'constraint'
|
|
|| lk == 50207 // '$' 'construction'
|
|
|| lk == 50208 // '%' 'construction'
|
|
|| lk == 50452 // '{' 'construction'
|
|
|| lk == 51743 // '$' 'context'
|
|
|| lk == 51744 // '%' 'context'
|
|
|| lk == 51988 // '{' 'context'
|
|
|| lk == 52255 // '$' 'continue'
|
|
|| lk == 52256 // '%' 'continue'
|
|
|| lk == 52500 // '{' 'continue'
|
|
|| lk == 52767 // '$' 'copy'
|
|
|| lk == 52768 // '%' 'copy'
|
|
|| lk == 53012 // '{' 'copy'
|
|
|| lk == 53279 // '$' 'copy-namespaces'
|
|
|| lk == 53280 // '%' 'copy-namespaces'
|
|
|| lk == 53524 // '{' 'copy-namespaces'
|
|
|| lk == 53791 // '$' 'count'
|
|
|| lk == 53792 // '%' 'count'
|
|
|| lk == 54036 // '{' 'count'
|
|
|| lk == 54303 // '$' 'decimal-format'
|
|
|| lk == 54304 // '%' 'decimal-format'
|
|
|| lk == 54548 // '{' 'decimal-format'
|
|
|| lk == 55327 // '$' 'declare'
|
|
|| lk == 55328 // '%' 'declare'
|
|
|| lk == 55572 // '{' 'declare'
|
|
|| lk == 55839 // '$' 'default'
|
|
|| lk == 55840 // '%' 'default'
|
|
|| lk == 56084 // '{' 'default'
|
|
|| lk == 56351 // '$' 'delete'
|
|
|| lk == 56352 // '%' 'delete'
|
|
|| lk == 56596 // '{' 'delete'
|
|
|| lk == 56863 // '$' 'descendant'
|
|
|| lk == 56864 // '%' 'descendant'
|
|
|| lk == 57108 // '{' 'descendant'
|
|
|| lk == 57375 // '$' 'descendant-or-self'
|
|
|| lk == 57376 // '%' 'descendant-or-self'
|
|
|| lk == 57620 // '{' 'descendant-or-self'
|
|
|| lk == 57887 // '$' 'descending'
|
|
|| lk == 57888 // '%' 'descending'
|
|
|| lk == 58132 // '{' 'descending'
|
|
|| lk == 60447 // '$' 'div'
|
|
|| lk == 60448 // '%' 'div'
|
|
|| lk == 60692 // '{' 'div'
|
|
|| lk == 60959 // '$' 'document'
|
|
|| lk == 60960 // '%' 'document'
|
|
|| lk == 61204 // '{' 'document'
|
|
|| lk == 61471 // '$' 'document-node'
|
|
|| lk == 61472 // '%' 'document-node'
|
|
|| lk == 61716 // '{' 'document-node'
|
|
|| lk == 61983 // '$' 'element'
|
|
|| lk == 61984 // '%' 'element'
|
|
|| lk == 62228 // '{' 'element'
|
|
|| lk == 62495 // '$' 'else'
|
|
|| lk == 62496 // '%' 'else'
|
|
|| lk == 62740 // '{' 'else'
|
|
|| lk == 63007 // '$' 'empty'
|
|
|| lk == 63008 // '%' 'empty'
|
|
|| lk == 63252 // '{' 'empty'
|
|
|| lk == 63519 // '$' 'empty-sequence'
|
|
|| lk == 63520 // '%' 'empty-sequence'
|
|
|| lk == 63764 // '{' 'empty-sequence'
|
|
|| lk == 64031 // '$' 'encoding'
|
|
|| lk == 64032 // '%' 'encoding'
|
|
|| lk == 64276 // '{' 'encoding'
|
|
|| lk == 64543 // '$' 'end'
|
|
|| lk == 64544 // '%' 'end'
|
|
|| lk == 64788 // '{' 'end'
|
|
|| lk == 65567 // '$' 'eq'
|
|
|| lk == 65568 // '%' 'eq'
|
|
|| lk == 65812 // '{' 'eq'
|
|
|| lk == 66079 // '$' 'every'
|
|
|| lk == 66080 // '%' 'every'
|
|
|| lk == 66324 // '{' 'every'
|
|
|| lk == 67103 // '$' 'except'
|
|
|| lk == 67104 // '%' 'except'
|
|
|| lk == 67348 // '{' 'except'
|
|
|| lk == 67615 // '$' 'exit'
|
|
|| lk == 67616 // '%' 'exit'
|
|
|| lk == 67860 // '{' 'exit'
|
|
|| lk == 68127 // '$' 'external'
|
|
|| lk == 68128 // '%' 'external'
|
|
|| lk == 68372 // '{' 'external'
|
|
|| lk == 68639 // '$' 'first'
|
|
|| lk == 68640 // '%' 'first'
|
|
|| lk == 68884 // '{' 'first'
|
|
|| lk == 69151 // '$' 'following'
|
|
|| lk == 69152 // '%' 'following'
|
|
|| lk == 69396 // '{' 'following'
|
|
|| lk == 69663 // '$' 'following-sibling'
|
|
|| lk == 69664 // '%' 'following-sibling'
|
|
|| lk == 69908 // '{' 'following-sibling'
|
|
|| lk == 70175 // '$' 'for'
|
|
|| lk == 70176 // '%' 'for'
|
|
|| lk == 70420 // '{' 'for'
|
|
|| lk == 72223 // '$' 'ft-option'
|
|
|| lk == 72224 // '%' 'ft-option'
|
|
|| lk == 72468 // '{' 'ft-option'
|
|
|| lk == 74271 // '$' 'function'
|
|
|| lk == 74272 // '%' 'function'
|
|
|| lk == 74516 // '{' 'function'
|
|
|| lk == 74783 // '$' 'ge'
|
|
|| lk == 74784 // '%' 'ge'
|
|
|| lk == 75028 // '{' 'ge'
|
|
|| lk == 75807 // '$' 'group'
|
|
|| lk == 75808 // '%' 'group'
|
|
|| lk == 76052 // '{' 'group'
|
|
|| lk == 76831 // '$' 'gt'
|
|
|| lk == 76832 // '%' 'gt'
|
|
|| lk == 77076 // '{' 'gt'
|
|
|| lk == 77343 // '$' 'idiv'
|
|
|| lk == 77344 // '%' 'idiv'
|
|
|| lk == 77588 // '{' 'idiv'
|
|
|| lk == 77855 // '$' 'if'
|
|
|| lk == 77856 // '%' 'if'
|
|
|| lk == 78100 // '{' 'if'
|
|
|| lk == 78367 // '$' 'import'
|
|
|| lk == 78368 // '%' 'import'
|
|
|| lk == 78612 // '{' 'import'
|
|
|| lk == 78879 // '$' 'in'
|
|
|| lk == 78880 // '%' 'in'
|
|
|| lk == 79124 // '{' 'in'
|
|
|| lk == 79391 // '$' 'index'
|
|
|| lk == 79392 // '%' 'index'
|
|
|| lk == 79636 // '{' 'index'
|
|
|| lk == 81439 // '$' 'insert'
|
|
|| lk == 81440 // '%' 'insert'
|
|
|| lk == 81684 // '{' 'insert'
|
|
|| lk == 81951 // '$' 'instance'
|
|
|| lk == 81952 // '%' 'instance'
|
|
|| lk == 82196 // '{' 'instance'
|
|
|| lk == 82463 // '$' 'integrity'
|
|
|| lk == 82464 // '%' 'integrity'
|
|
|| lk == 82708 // '{' 'integrity'
|
|
|| lk == 82975 // '$' 'intersect'
|
|
|| lk == 82976 // '%' 'intersect'
|
|
|| lk == 83220 // '{' 'intersect'
|
|
|| lk == 83487 // '$' 'into'
|
|
|| lk == 83488 // '%' 'into'
|
|
|| lk == 83732 // '{' 'into'
|
|
|| lk == 83999 // '$' 'is'
|
|
|| lk == 84000 // '%' 'is'
|
|
|| lk == 84244 // '{' 'is'
|
|
|| lk == 84511 // '$' 'item'
|
|
|| lk == 84512 // '%' 'item'
|
|
|| lk == 84756 // '{' 'item'
|
|
|| lk == 85535 // '$' 'json-item'
|
|
|| lk == 85536 // '%' 'json-item'
|
|
|| lk == 85780 // '{' 'json-item'
|
|
|| lk == 87071 // '$' 'last'
|
|
|| lk == 87072 // '%' 'last'
|
|
|| lk == 87316 // '{' 'last'
|
|
|| lk == 87583 // '$' 'lax'
|
|
|| lk == 87584 // '%' 'lax'
|
|
|| lk == 87828 // '{' 'lax'
|
|
|| lk == 88095 // '$' 'le'
|
|
|| lk == 88096 // '%' 'le'
|
|
|| lk == 88340 // '{' 'le'
|
|
|| lk == 89119 // '$' 'let'
|
|
|| lk == 89120 // '%' 'let'
|
|
|| lk == 89364 // '{' 'let'
|
|
|| lk == 90143 // '$' 'loop'
|
|
|| lk == 90144 // '%' 'loop'
|
|
|| lk == 90388 // '{' 'loop'
|
|
|| lk == 91167 // '$' 'lt'
|
|
|| lk == 91168 // '%' 'lt'
|
|
|| lk == 91412 // '{' 'lt'
|
|
|| lk == 92191 // '$' 'mod'
|
|
|| lk == 92192 // '%' 'mod'
|
|
|| lk == 92436 // '{' 'mod'
|
|
|| lk == 92703 // '$' 'modify'
|
|
|| lk == 92704 // '%' 'modify'
|
|
|| lk == 92948 // '{' 'modify'
|
|
|| lk == 93215 // '$' 'module'
|
|
|| lk == 93216 // '%' 'module'
|
|
|| lk == 93460 // '{' 'module'
|
|
|| lk == 94239 // '$' 'namespace'
|
|
|| lk == 94240 // '%' 'namespace'
|
|
|| lk == 94484 // '{' 'namespace'
|
|
|| lk == 94751 // '$' 'namespace-node'
|
|
|| lk == 94752 // '%' 'namespace-node'
|
|
|| lk == 94996 // '{' 'namespace-node'
|
|
|| lk == 95263 // '$' 'ne'
|
|
|| lk == 95264 // '%' 'ne'
|
|
|| lk == 95508 // '{' 'ne'
|
|
|| lk == 97823 // '$' 'node'
|
|
|| lk == 97824 // '%' 'node'
|
|
|| lk == 98068 // '{' 'node'
|
|
|| lk == 98335 // '$' 'nodes'
|
|
|| lk == 98336 // '%' 'nodes'
|
|
|| lk == 98580 // '{' 'nodes'
|
|
|| lk == 99359 // '$' 'object'
|
|
|| lk == 99360 // '%' 'object'
|
|
|| lk == 99604 // '{' 'object'
|
|
|| lk == 101407 // '$' 'only'
|
|
|| lk == 101408 // '%' 'only'
|
|
|| lk == 101652 // '{' 'only'
|
|
|| lk == 101919 // '$' 'option'
|
|
|| lk == 101920 // '%' 'option'
|
|
|| lk == 102164 // '{' 'option'
|
|
|| lk == 102431 // '$' 'or'
|
|
|| lk == 102432 // '%' 'or'
|
|
|| lk == 102676 // '{' 'or'
|
|
|| lk == 102943 // '$' 'order'
|
|
|| lk == 102944 // '%' 'order'
|
|
|| lk == 103188 // '{' 'order'
|
|
|| lk == 103455 // '$' 'ordered'
|
|
|| lk == 103456 // '%' 'ordered'
|
|
|| lk == 103700 // '{' 'ordered'
|
|
|| lk == 103967 // '$' 'ordering'
|
|
|| lk == 103968 // '%' 'ordering'
|
|
|| lk == 104212 // '{' 'ordering'
|
|
|| lk == 105503 // '$' 'parent'
|
|
|| lk == 105504 // '%' 'parent'
|
|
|| lk == 105748 // '{' 'parent'
|
|
|| lk == 108575 // '$' 'preceding'
|
|
|| lk == 108576 // '%' 'preceding'
|
|
|| lk == 108820 // '{' 'preceding'
|
|
|| lk == 109087 // '$' 'preceding-sibling'
|
|
|| lk == 109088 // '%' 'preceding-sibling'
|
|
|| lk == 109332 // '{' 'preceding-sibling'
|
|
|| lk == 110623 // '$' 'processing-instruction'
|
|
|| lk == 110624 // '%' 'processing-instruction'
|
|
|| lk == 110868 // '{' 'processing-instruction'
|
|
|| lk == 111647 // '$' 'rename'
|
|
|| lk == 111648 // '%' 'rename'
|
|
|| lk == 111892 // '{' 'rename'
|
|
|| lk == 112159 // '$' 'replace'
|
|
|| lk == 112160 // '%' 'replace'
|
|
|| lk == 112404 // '{' 'replace'
|
|
|| lk == 112671 // '$' 'return'
|
|
|| lk == 112672 // '%' 'return'
|
|
|| lk == 112916 // '{' 'return'
|
|
|| lk == 113183 // '$' 'returning'
|
|
|| lk == 113184 // '%' 'returning'
|
|
|| lk == 113428 // '{' 'returning'
|
|
|| lk == 113695 // '$' 'revalidation'
|
|
|| lk == 113696 // '%' 'revalidation'
|
|
|| lk == 113940 // '{' 'revalidation'
|
|
|| lk == 114719 // '$' 'satisfies'
|
|
|| lk == 114720 // '%' 'satisfies'
|
|
|| lk == 114964 // '{' 'satisfies'
|
|
|| lk == 115231 // '$' 'schema'
|
|
|| lk == 115232 // '%' 'schema'
|
|
|| lk == 115476 // '{' 'schema'
|
|
|| lk == 115743 // '$' 'schema-attribute'
|
|
|| lk == 115744 // '%' 'schema-attribute'
|
|
|| lk == 115988 // '{' 'schema-attribute'
|
|
|| lk == 116255 // '$' 'schema-element'
|
|
|| lk == 116256 // '%' 'schema-element'
|
|
|| lk == 116500 // '{' 'schema-element'
|
|
|| lk == 116767 // '$' 'score'
|
|
|| lk == 116768 // '%' 'score'
|
|
|| lk == 117012 // '{' 'score'
|
|
|| lk == 117279 // '$' 'self'
|
|
|| lk == 117280 // '%' 'self'
|
|
|| lk == 117524 // '{' 'self'
|
|
|| lk == 119839 // '$' 'sliding'
|
|
|| lk == 119840 // '%' 'sliding'
|
|
|| lk == 120084 // '{' 'sliding'
|
|
|| lk == 120351 // '$' 'some'
|
|
|| lk == 120352 // '%' 'some'
|
|
|| lk == 120596 // '{' 'some'
|
|
|| lk == 120863 // '$' 'stable'
|
|
|| lk == 120864 // '%' 'stable'
|
|
|| lk == 121108 // '{' 'stable'
|
|
|| lk == 121375 // '$' 'start'
|
|
|| lk == 121376 // '%' 'start'
|
|
|| lk == 121620 // '{' 'start'
|
|
|| lk == 122911 // '$' 'strict'
|
|
|| lk == 122912 // '%' 'strict'
|
|
|| lk == 123156 // '{' 'strict'
|
|
|| lk == 124447 // '$' 'switch'
|
|
|| lk == 124448 // '%' 'switch'
|
|
|| lk == 124692 // '{' 'switch'
|
|
|| lk == 124959 // '$' 'text'
|
|
|| lk == 124960 // '%' 'text'
|
|
|| lk == 125204 // '{' 'text'
|
|
|| lk == 127007 // '$' 'to'
|
|
|| lk == 127008 // '%' 'to'
|
|
|| lk == 127252 // '{' 'to'
|
|
|| lk == 127519 // '$' 'treat'
|
|
|| lk == 127520 // '%' 'treat'
|
|
|| lk == 127764 // '{' 'treat'
|
|
|| lk == 128031 // '$' 'try'
|
|
|| lk == 128032 // '%' 'try'
|
|
|| lk == 128276 // '{' 'try'
|
|
|| lk == 128543 // '$' 'tumbling'
|
|
|| lk == 128544 // '%' 'tumbling'
|
|
|| lk == 128788 // '{' 'tumbling'
|
|
|| lk == 129055 // '$' 'type'
|
|
|| lk == 129056 // '%' 'type'
|
|
|| lk == 129300 // '{' 'type'
|
|
|| lk == 129567 // '$' 'typeswitch'
|
|
|| lk == 129568 // '%' 'typeswitch'
|
|
|| lk == 129812 // '{' 'typeswitch'
|
|
|| lk == 130079 // '$' 'union'
|
|
|| lk == 130080 // '%' 'union'
|
|
|| lk == 130324 // '{' 'union'
|
|
|| lk == 131103 // '$' 'unordered'
|
|
|| lk == 131104 // '%' 'unordered'
|
|
|| lk == 131348 // '{' 'unordered'
|
|
|| lk == 131615 // '$' 'updating'
|
|
|| lk == 131616 // '%' 'updating'
|
|
|| lk == 131860 // '{' 'updating'
|
|
|| lk == 133151 // '$' 'validate'
|
|
|| lk == 133152 // '%' 'validate'
|
|
|| lk == 133396 // '{' 'validate'
|
|
|| lk == 133663 // '$' 'value'
|
|
|| lk == 133664 // '%' 'value'
|
|
|| lk == 133908 // '{' 'value'
|
|
|| lk == 134175 // '$' 'variable'
|
|
|| lk == 134176 // '%' 'variable'
|
|
|| lk == 134420 // '{' 'variable'
|
|
|| lk == 134687 // '$' 'version'
|
|
|| lk == 134688 // '%' 'version'
|
|
|| lk == 134932 // '{' 'version'
|
|
|| lk == 136223 // '$' 'where'
|
|
|| lk == 136224 // '%' 'where'
|
|
|| lk == 136468 // '{' 'where'
|
|
|| lk == 136735 // '$' 'while'
|
|
|| lk == 136736 // '%' 'while'
|
|
|| lk == 136980 // '{' 'while'
|
|
|| lk == 138271 // '$' 'with'
|
|
|| lk == 138272 // '%' 'with'
|
|
|| lk == 138516 // '{' 'with'
|
|
|| lk == 140319 // '$' 'xquery'
|
|
|| lk == 140320 // '%' 'xquery'
|
|
|| lk == 140564 // '{' 'xquery'
|
|
|| lk == 141588 // '{' '{'
|
|
|| lk == 142612 // '{' '{|'
|
|
|| lk == 144660) // '{' '}'
|
|
{
|
|
lk = memoized(7, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_ApplyStatement();
|
|
memoize(7, e0A, -1);
|
|
lk = -14;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
try
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
try_AssignStatement();
|
|
memoize(7, e0A, -2);
|
|
lk = -14;
|
|
}
|
|
catch (p2A)
|
|
{
|
|
try
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
try_BlockStatement();
|
|
memoize(7, e0A, -3);
|
|
lk = -14;
|
|
}
|
|
catch (p3A)
|
|
{
|
|
try
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
try_VarDeclStatement();
|
|
memoize(7, e0A, -12);
|
|
lk = -14;
|
|
}
|
|
catch (p12A)
|
|
{
|
|
lk = -13;
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(7, e0A, -13);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -2:
|
|
try_AssignStatement();
|
|
break;
|
|
case -3:
|
|
try_BlockStatement();
|
|
break;
|
|
case 90198: // 'break' 'loop'
|
|
try_BreakStatement();
|
|
break;
|
|
case 90214: // 'continue' 'loop'
|
|
try_ContinueStatement();
|
|
break;
|
|
case 113284: // 'exit' 'returning'
|
|
try_ExitStatement();
|
|
break;
|
|
case 16009: // 'for' '$'
|
|
case 16046: // 'let' '$'
|
|
case 116910: // 'let' 'score'
|
|
case 119945: // 'for' 'sliding'
|
|
case 128649: // 'for' 'tumbling'
|
|
try_FLWORStatement();
|
|
break;
|
|
case 17560: // 'if' '('
|
|
try_IfStatement();
|
|
break;
|
|
case 17651: // 'switch' '('
|
|
try_SwitchStatement();
|
|
break;
|
|
case 141562: // 'try' '{'
|
|
try_TryCatchStatement();
|
|
break;
|
|
case 17661: // 'typeswitch' '('
|
|
try_TypeswitchStatement();
|
|
break;
|
|
case -12:
|
|
case 16134: // 'variable' '$'
|
|
try_VarDeclStatement();
|
|
break;
|
|
case -13:
|
|
try_WhileStatement();
|
|
break;
|
|
case -14:
|
|
break;
|
|
default:
|
|
try_ApplyStatement();
|
|
}
|
|
}
|
|
|
|
function parse_ApplyStatement()
|
|
{
|
|
eventHandler.startNonterminal("ApplyStatement", e0);
|
|
parse_ExprSimple();
|
|
shift(53); // ';'
|
|
eventHandler.endNonterminal("ApplyStatement", e0);
|
|
}
|
|
|
|
function try_ApplyStatement()
|
|
{
|
|
try_ExprSimple();
|
|
shiftT(53); // ';'
|
|
}
|
|
|
|
function parse_AssignStatement()
|
|
{
|
|
eventHandler.startNonterminal("AssignStatement", e0);
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(27); // S^WS | '(:' | ':='
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
shift(53); // ';'
|
|
eventHandler.endNonterminal("AssignStatement", e0);
|
|
}
|
|
|
|
function try_AssignStatement()
|
|
{
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(27); // S^WS | '(:' | ':='
|
|
shiftT(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
shiftT(53); // ';'
|
|
}
|
|
|
|
function parse_BlockStatement()
|
|
{
|
|
eventHandler.startNonterminal("BlockStatement", e0);
|
|
shift(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
whitespace();
|
|
parse_Statements();
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("BlockStatement", e0);
|
|
}
|
|
|
|
function try_BlockStatement()
|
|
{
|
|
shiftT(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
try_Statements();
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_BreakStatement()
|
|
{
|
|
eventHandler.startNonterminal("BreakStatement", e0);
|
|
shift(86); // 'break'
|
|
lookahead1W(59); // S^WS | '(:' | 'loop'
|
|
shift(176); // 'loop'
|
|
lookahead1W(28); // S^WS | '(:' | ';'
|
|
shift(53); // ';'
|
|
eventHandler.endNonterminal("BreakStatement", e0);
|
|
}
|
|
|
|
function try_BreakStatement()
|
|
{
|
|
shiftT(86); // 'break'
|
|
lookahead1W(59); // S^WS | '(:' | 'loop'
|
|
shiftT(176); // 'loop'
|
|
lookahead1W(28); // S^WS | '(:' | ';'
|
|
shiftT(53); // ';'
|
|
}
|
|
|
|
function parse_ContinueStatement()
|
|
{
|
|
eventHandler.startNonterminal("ContinueStatement", e0);
|
|
shift(102); // 'continue'
|
|
lookahead1W(59); // S^WS | '(:' | 'loop'
|
|
shift(176); // 'loop'
|
|
lookahead1W(28); // S^WS | '(:' | ';'
|
|
shift(53); // ';'
|
|
eventHandler.endNonterminal("ContinueStatement", e0);
|
|
}
|
|
|
|
function try_ContinueStatement()
|
|
{
|
|
shiftT(102); // 'continue'
|
|
lookahead1W(59); // S^WS | '(:' | 'loop'
|
|
shiftT(176); // 'loop'
|
|
lookahead1W(28); // S^WS | '(:' | ';'
|
|
shiftT(53); // ';'
|
|
}
|
|
|
|
function parse_ExitStatement()
|
|
{
|
|
eventHandler.startNonterminal("ExitStatement", e0);
|
|
shift(132); // 'exit'
|
|
lookahead1W(71); // S^WS | '(:' | 'returning'
|
|
shift(221); // 'returning'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
shift(53); // ';'
|
|
eventHandler.endNonterminal("ExitStatement", e0);
|
|
}
|
|
|
|
function try_ExitStatement()
|
|
{
|
|
shiftT(132); // 'exit'
|
|
lookahead1W(71); // S^WS | '(:' | 'returning'
|
|
shiftT(221); // 'returning'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
shiftT(53); // ';'
|
|
}
|
|
|
|
function parse_FLWORStatement()
|
|
{
|
|
eventHandler.startNonterminal("FLWORStatement", e0);
|
|
parse_InitialClause();
|
|
for (;;)
|
|
{
|
|
lookahead1W(173); // S^WS | '(:' | 'count' | 'for' | 'group' | 'let' | 'order' | 'return' | 'stable' |
|
|
// 'where'
|
|
if (l1 == 220) // 'return'
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_IntermediateClause();
|
|
}
|
|
whitespace();
|
|
parse_ReturnStatement();
|
|
eventHandler.endNonterminal("FLWORStatement", e0);
|
|
}
|
|
|
|
function try_FLWORStatement()
|
|
{
|
|
try_InitialClause();
|
|
for (;;)
|
|
{
|
|
lookahead1W(173); // S^WS | '(:' | 'count' | 'for' | 'group' | 'let' | 'order' | 'return' | 'stable' |
|
|
// 'where'
|
|
if (l1 == 220) // 'return'
|
|
{
|
|
break;
|
|
}
|
|
try_IntermediateClause();
|
|
}
|
|
try_ReturnStatement();
|
|
}
|
|
|
|
function parse_ReturnStatement()
|
|
{
|
|
eventHandler.startNonterminal("ReturnStatement", e0);
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Statement();
|
|
eventHandler.endNonterminal("ReturnStatement", e0);
|
|
}
|
|
|
|
function try_ReturnStatement()
|
|
{
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Statement();
|
|
}
|
|
|
|
function parse_IfStatement()
|
|
{
|
|
eventHandler.startNonterminal("IfStatement", e0);
|
|
shift(152); // 'if'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(37); // ')'
|
|
lookahead1W(77); // S^WS | '(:' | 'then'
|
|
shift(245); // 'then'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Statement();
|
|
lookahead1W(48); // S^WS | '(:' | 'else'
|
|
shift(122); // 'else'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Statement();
|
|
eventHandler.endNonterminal("IfStatement", e0);
|
|
}
|
|
|
|
function try_IfStatement()
|
|
{
|
|
shiftT(152); // 'if'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(37); // ')'
|
|
lookahead1W(77); // S^WS | '(:' | 'then'
|
|
shiftT(245); // 'then'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Statement();
|
|
lookahead1W(48); // S^WS | '(:' | 'else'
|
|
shiftT(122); // 'else'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Statement();
|
|
}
|
|
|
|
function parse_SwitchStatement()
|
|
{
|
|
eventHandler.startNonterminal("SwitchStatement", e0);
|
|
shift(243); // 'switch'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(37); // ')'
|
|
for (;;)
|
|
{
|
|
lookahead1W(35); // S^WS | '(:' | 'case'
|
|
whitespace();
|
|
parse_SwitchCaseStatement();
|
|
lookahead1W(113); // S^WS | '(:' | 'case' | 'default'
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shift(109); // 'default'
|
|
lookahead1W(70); // S^WS | '(:' | 'return'
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Statement();
|
|
eventHandler.endNonterminal("SwitchStatement", e0);
|
|
}
|
|
|
|
function try_SwitchStatement()
|
|
{
|
|
shiftT(243); // 'switch'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(37); // ')'
|
|
for (;;)
|
|
{
|
|
lookahead1W(35); // S^WS | '(:' | 'case'
|
|
try_SwitchCaseStatement();
|
|
lookahead1W(113); // S^WS | '(:' | 'case' | 'default'
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shiftT(109); // 'default'
|
|
lookahead1W(70); // S^WS | '(:' | 'return'
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Statement();
|
|
}
|
|
|
|
function parse_SwitchCaseStatement()
|
|
{
|
|
eventHandler.startNonterminal("SwitchCaseStatement", e0);
|
|
for (;;)
|
|
{
|
|
shift(88); // 'case'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_SwitchCaseOperand();
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Statement();
|
|
eventHandler.endNonterminal("SwitchCaseStatement", e0);
|
|
}
|
|
|
|
function try_SwitchCaseStatement()
|
|
{
|
|
for (;;)
|
|
{
|
|
shiftT(88); // 'case'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_SwitchCaseOperand();
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Statement();
|
|
}
|
|
|
|
function parse_TryCatchStatement()
|
|
{
|
|
eventHandler.startNonterminal("TryCatchStatement", e0);
|
|
shift(250); // 'try'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
whitespace();
|
|
parse_BlockStatement();
|
|
for (;;)
|
|
{
|
|
lookahead1W(36); // S^WS | '(:' | 'catch'
|
|
shift(91); // 'catch'
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_CatchErrorList();
|
|
whitespace();
|
|
parse_BlockStatement();
|
|
lookahead1W(274); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
switch (l1)
|
|
{
|
|
case 91: // 'catch'
|
|
lookahead2W(276); // Wildcard | EQName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' |
|
|
// '+' | ',' | '-' | '/' | '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' |
|
|
// '>>' | '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' |
|
|
// 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' |
|
|
// 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' |
|
|
// 'collation' | 'comment' | 'constraint' | 'construction' | 'contains' |
|
|
// 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '|' | '||' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 38491 // 'catch' 'and'
|
|
|| lk == 45659 // 'catch' 'cast'
|
|
|| lk == 46171 // 'catch' 'castable'
|
|
|| lk == 60507 // 'catch' 'div'
|
|
|| lk == 65627 // 'catch' 'eq'
|
|
|| lk == 67163 // 'catch' 'except'
|
|
|| lk == 74843 // 'catch' 'ge'
|
|
|| lk == 76891 // 'catch' 'gt'
|
|
|| lk == 77403 // 'catch' 'idiv'
|
|
|| lk == 82011 // 'catch' 'instance'
|
|
|| lk == 83035 // 'catch' 'intersect'
|
|
|| lk == 84059 // 'catch' 'is'
|
|
|| lk == 88155 // 'catch' 'le'
|
|
|| lk == 91227 // 'catch' 'lt'
|
|
|| lk == 92251 // 'catch' 'mod'
|
|
|| lk == 95323 // 'catch' 'ne'
|
|
|| lk == 102491 // 'catch' 'or'
|
|
|| lk == 127067 // 'catch' 'to'
|
|
|| lk == 127579 // 'catch' 'treat'
|
|
|| lk == 130139) // 'catch' 'union'
|
|
{
|
|
lk = memoized(8, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
lookahead1W(36); // S^WS | '(:' | 'catch'
|
|
shiftT(91); // 'catch'
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_CatchErrorList();
|
|
try_BlockStatement();
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(8, e0, lk);
|
|
}
|
|
}
|
|
if (lk != -1
|
|
&& lk != 2651 // 'catch' Wildcard
|
|
&& lk != 3163 // 'catch' EQName^Token
|
|
&& lk != 35931 // 'catch' 'after'
|
|
&& lk != 36955 // 'catch' 'allowing'
|
|
&& lk != 37467 // 'catch' 'ancestor'
|
|
&& lk != 37979 // 'catch' 'ancestor-or-self'
|
|
&& lk != 40027 // 'catch' 'array'
|
|
&& lk != 40539 // 'catch' 'as'
|
|
&& lk != 41051 // 'catch' 'ascending'
|
|
&& lk != 41563 // 'catch' 'at'
|
|
&& lk != 42075 // 'catch' 'attribute'
|
|
&& lk != 42587 // 'catch' 'base-uri'
|
|
&& lk != 43099 // 'catch' 'before'
|
|
&& lk != 43611 // 'catch' 'boundary-space'
|
|
&& lk != 44123 // 'catch' 'break'
|
|
&& lk != 45147 // 'catch' 'case'
|
|
&& lk != 46683 // 'catch' 'catch'
|
|
&& lk != 47707 // 'catch' 'child'
|
|
&& lk != 48219 // 'catch' 'collation'
|
|
&& lk != 49243 // 'catch' 'comment'
|
|
&& lk != 49755 // 'catch' 'constraint'
|
|
&& lk != 50267 // 'catch' 'construction'
|
|
&& lk != 51803 // 'catch' 'context'
|
|
&& lk != 52315 // 'catch' 'continue'
|
|
&& lk != 52827 // 'catch' 'copy'
|
|
&& lk != 53339 // 'catch' 'copy-namespaces'
|
|
&& lk != 53851 // 'catch' 'count'
|
|
&& lk != 54363 // 'catch' 'decimal-format'
|
|
&& lk != 55387 // 'catch' 'declare'
|
|
&& lk != 55899 // 'catch' 'default'
|
|
&& lk != 56411 // 'catch' 'delete'
|
|
&& lk != 56923 // 'catch' 'descendant'
|
|
&& lk != 57435 // 'catch' 'descendant-or-self'
|
|
&& lk != 57947 // 'catch' 'descending'
|
|
&& lk != 61019 // 'catch' 'document'
|
|
&& lk != 61531 // 'catch' 'document-node'
|
|
&& lk != 62043 // 'catch' 'element'
|
|
&& lk != 62555 // 'catch' 'else'
|
|
&& lk != 63067 // 'catch' 'empty'
|
|
&& lk != 63579 // 'catch' 'empty-sequence'
|
|
&& lk != 64091 // 'catch' 'encoding'
|
|
&& lk != 64603 // 'catch' 'end'
|
|
&& lk != 66139 // 'catch' 'every'
|
|
&& lk != 67675 // 'catch' 'exit'
|
|
&& lk != 68187 // 'catch' 'external'
|
|
&& lk != 68699 // 'catch' 'first'
|
|
&& lk != 69211 // 'catch' 'following'
|
|
&& lk != 69723 // 'catch' 'following-sibling'
|
|
&& lk != 70235 // 'catch' 'for'
|
|
&& lk != 72283 // 'catch' 'ft-option'
|
|
&& lk != 74331 // 'catch' 'function'
|
|
&& lk != 75867 // 'catch' 'group'
|
|
&& lk != 77915 // 'catch' 'if'
|
|
&& lk != 78427 // 'catch' 'import'
|
|
&& lk != 78939 // 'catch' 'in'
|
|
&& lk != 79451 // 'catch' 'index'
|
|
&& lk != 81499 // 'catch' 'insert'
|
|
&& lk != 82523 // 'catch' 'integrity'
|
|
&& lk != 83547 // 'catch' 'into'
|
|
&& lk != 84571 // 'catch' 'item'
|
|
&& lk != 85595 // 'catch' 'json-item'
|
|
&& lk != 87131 // 'catch' 'last'
|
|
&& lk != 87643 // 'catch' 'lax'
|
|
&& lk != 89179 // 'catch' 'let'
|
|
&& lk != 90203 // 'catch' 'loop'
|
|
&& lk != 92763 // 'catch' 'modify'
|
|
&& lk != 93275 // 'catch' 'module'
|
|
&& lk != 94299 // 'catch' 'namespace'
|
|
&& lk != 94811 // 'catch' 'namespace-node'
|
|
&& lk != 97883 // 'catch' 'node'
|
|
&& lk != 98395 // 'catch' 'nodes'
|
|
&& lk != 99419 // 'catch' 'object'
|
|
&& lk != 101467 // 'catch' 'only'
|
|
&& lk != 101979 // 'catch' 'option'
|
|
&& lk != 103003 // 'catch' 'order'
|
|
&& lk != 103515 // 'catch' 'ordered'
|
|
&& lk != 104027 // 'catch' 'ordering'
|
|
&& lk != 105563 // 'catch' 'parent'
|
|
&& lk != 108635 // 'catch' 'preceding'
|
|
&& lk != 109147 // 'catch' 'preceding-sibling'
|
|
&& lk != 110683 // 'catch' 'processing-instruction'
|
|
&& lk != 111707 // 'catch' 'rename'
|
|
&& lk != 112219 // 'catch' 'replace'
|
|
&& lk != 112731 // 'catch' 'return'
|
|
&& lk != 113243 // 'catch' 'returning'
|
|
&& lk != 113755 // 'catch' 'revalidation'
|
|
&& lk != 114779 // 'catch' 'satisfies'
|
|
&& lk != 115291 // 'catch' 'schema'
|
|
&& lk != 115803 // 'catch' 'schema-attribute'
|
|
&& lk != 116315 // 'catch' 'schema-element'
|
|
&& lk != 116827 // 'catch' 'score'
|
|
&& lk != 117339 // 'catch' 'self'
|
|
&& lk != 119899 // 'catch' 'sliding'
|
|
&& lk != 120411 // 'catch' 'some'
|
|
&& lk != 120923 // 'catch' 'stable'
|
|
&& lk != 121435 // 'catch' 'start'
|
|
&& lk != 122971 // 'catch' 'strict'
|
|
&& lk != 124507 // 'catch' 'switch'
|
|
&& lk != 125019 // 'catch' 'text'
|
|
&& lk != 128091 // 'catch' 'try'
|
|
&& lk != 128603 // 'catch' 'tumbling'
|
|
&& lk != 129115 // 'catch' 'type'
|
|
&& lk != 129627 // 'catch' 'typeswitch'
|
|
&& lk != 131163 // 'catch' 'unordered'
|
|
&& lk != 131675 // 'catch' 'updating'
|
|
&& lk != 133211 // 'catch' 'validate'
|
|
&& lk != 133723 // 'catch' 'value'
|
|
&& lk != 134235 // 'catch' 'variable'
|
|
&& lk != 134747 // 'catch' 'version'
|
|
&& lk != 136283 // 'catch' 'where'
|
|
&& lk != 136795 // 'catch' 'while'
|
|
&& lk != 138331 // 'catch' 'with'
|
|
&& lk != 140379) // 'catch' 'xquery'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
eventHandler.endNonterminal("TryCatchStatement", e0);
|
|
}
|
|
|
|
function try_TryCatchStatement()
|
|
{
|
|
shiftT(250); // 'try'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
try_BlockStatement();
|
|
lookahead1W(36); // S^WS | '(:' | 'catch'
|
|
shiftT(91); // 'catch'
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_CatchErrorList();
|
|
try_BlockStatement();
|
|
for (;;)
|
|
{
|
|
lookahead1W(274); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | EOF | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' |
|
|
// '..' | '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
switch (l1)
|
|
{
|
|
case 91: // 'catch'
|
|
lookahead2W(276); // Wildcard | EQName^Token | S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | '*' |
|
|
// '+' | ',' | '-' | '/' | '//' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' |
|
|
// '>>' | '[' | 'after' | 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' |
|
|
// 'array' | 'as' | 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' |
|
|
// 'boundary-space' | 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' |
|
|
// 'collation' | 'comment' | 'constraint' | 'construction' | 'contains' |
|
|
// 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '|' | '||' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 38491 // 'catch' 'and'
|
|
|| lk == 45659 // 'catch' 'cast'
|
|
|| lk == 46171 // 'catch' 'castable'
|
|
|| lk == 60507 // 'catch' 'div'
|
|
|| lk == 65627 // 'catch' 'eq'
|
|
|| lk == 67163 // 'catch' 'except'
|
|
|| lk == 74843 // 'catch' 'ge'
|
|
|| lk == 76891 // 'catch' 'gt'
|
|
|| lk == 77403 // 'catch' 'idiv'
|
|
|| lk == 82011 // 'catch' 'instance'
|
|
|| lk == 83035 // 'catch' 'intersect'
|
|
|| lk == 84059 // 'catch' 'is'
|
|
|| lk == 88155 // 'catch' 'le'
|
|
|| lk == 91227 // 'catch' 'lt'
|
|
|| lk == 92251 // 'catch' 'mod'
|
|
|| lk == 95323 // 'catch' 'ne'
|
|
|| lk == 102491 // 'catch' 'or'
|
|
|| lk == 127067 // 'catch' 'to'
|
|
|| lk == 127579 // 'catch' 'treat'
|
|
|| lk == 130139) // 'catch' 'union'
|
|
{
|
|
lk = memoized(8, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
lookahead1W(36); // S^WS | '(:' | 'catch'
|
|
shiftT(91); // 'catch'
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_CatchErrorList();
|
|
try_BlockStatement();
|
|
memoize(8, e0A, -1);
|
|
continue;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(8, e0A, -2);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (lk != -1
|
|
&& lk != 2651 // 'catch' Wildcard
|
|
&& lk != 3163 // 'catch' EQName^Token
|
|
&& lk != 35931 // 'catch' 'after'
|
|
&& lk != 36955 // 'catch' 'allowing'
|
|
&& lk != 37467 // 'catch' 'ancestor'
|
|
&& lk != 37979 // 'catch' 'ancestor-or-self'
|
|
&& lk != 40027 // 'catch' 'array'
|
|
&& lk != 40539 // 'catch' 'as'
|
|
&& lk != 41051 // 'catch' 'ascending'
|
|
&& lk != 41563 // 'catch' 'at'
|
|
&& lk != 42075 // 'catch' 'attribute'
|
|
&& lk != 42587 // 'catch' 'base-uri'
|
|
&& lk != 43099 // 'catch' 'before'
|
|
&& lk != 43611 // 'catch' 'boundary-space'
|
|
&& lk != 44123 // 'catch' 'break'
|
|
&& lk != 45147 // 'catch' 'case'
|
|
&& lk != 46683 // 'catch' 'catch'
|
|
&& lk != 47707 // 'catch' 'child'
|
|
&& lk != 48219 // 'catch' 'collation'
|
|
&& lk != 49243 // 'catch' 'comment'
|
|
&& lk != 49755 // 'catch' 'constraint'
|
|
&& lk != 50267 // 'catch' 'construction'
|
|
&& lk != 51803 // 'catch' 'context'
|
|
&& lk != 52315 // 'catch' 'continue'
|
|
&& lk != 52827 // 'catch' 'copy'
|
|
&& lk != 53339 // 'catch' 'copy-namespaces'
|
|
&& lk != 53851 // 'catch' 'count'
|
|
&& lk != 54363 // 'catch' 'decimal-format'
|
|
&& lk != 55387 // 'catch' 'declare'
|
|
&& lk != 55899 // 'catch' 'default'
|
|
&& lk != 56411 // 'catch' 'delete'
|
|
&& lk != 56923 // 'catch' 'descendant'
|
|
&& lk != 57435 // 'catch' 'descendant-or-self'
|
|
&& lk != 57947 // 'catch' 'descending'
|
|
&& lk != 61019 // 'catch' 'document'
|
|
&& lk != 61531 // 'catch' 'document-node'
|
|
&& lk != 62043 // 'catch' 'element'
|
|
&& lk != 62555 // 'catch' 'else'
|
|
&& lk != 63067 // 'catch' 'empty'
|
|
&& lk != 63579 // 'catch' 'empty-sequence'
|
|
&& lk != 64091 // 'catch' 'encoding'
|
|
&& lk != 64603 // 'catch' 'end'
|
|
&& lk != 66139 // 'catch' 'every'
|
|
&& lk != 67675 // 'catch' 'exit'
|
|
&& lk != 68187 // 'catch' 'external'
|
|
&& lk != 68699 // 'catch' 'first'
|
|
&& lk != 69211 // 'catch' 'following'
|
|
&& lk != 69723 // 'catch' 'following-sibling'
|
|
&& lk != 70235 // 'catch' 'for'
|
|
&& lk != 72283 // 'catch' 'ft-option'
|
|
&& lk != 74331 // 'catch' 'function'
|
|
&& lk != 75867 // 'catch' 'group'
|
|
&& lk != 77915 // 'catch' 'if'
|
|
&& lk != 78427 // 'catch' 'import'
|
|
&& lk != 78939 // 'catch' 'in'
|
|
&& lk != 79451 // 'catch' 'index'
|
|
&& lk != 81499 // 'catch' 'insert'
|
|
&& lk != 82523 // 'catch' 'integrity'
|
|
&& lk != 83547 // 'catch' 'into'
|
|
&& lk != 84571 // 'catch' 'item'
|
|
&& lk != 85595 // 'catch' 'json-item'
|
|
&& lk != 87131 // 'catch' 'last'
|
|
&& lk != 87643 // 'catch' 'lax'
|
|
&& lk != 89179 // 'catch' 'let'
|
|
&& lk != 90203 // 'catch' 'loop'
|
|
&& lk != 92763 // 'catch' 'modify'
|
|
&& lk != 93275 // 'catch' 'module'
|
|
&& lk != 94299 // 'catch' 'namespace'
|
|
&& lk != 94811 // 'catch' 'namespace-node'
|
|
&& lk != 97883 // 'catch' 'node'
|
|
&& lk != 98395 // 'catch' 'nodes'
|
|
&& lk != 99419 // 'catch' 'object'
|
|
&& lk != 101467 // 'catch' 'only'
|
|
&& lk != 101979 // 'catch' 'option'
|
|
&& lk != 103003 // 'catch' 'order'
|
|
&& lk != 103515 // 'catch' 'ordered'
|
|
&& lk != 104027 // 'catch' 'ordering'
|
|
&& lk != 105563 // 'catch' 'parent'
|
|
&& lk != 108635 // 'catch' 'preceding'
|
|
&& lk != 109147 // 'catch' 'preceding-sibling'
|
|
&& lk != 110683 // 'catch' 'processing-instruction'
|
|
&& lk != 111707 // 'catch' 'rename'
|
|
&& lk != 112219 // 'catch' 'replace'
|
|
&& lk != 112731 // 'catch' 'return'
|
|
&& lk != 113243 // 'catch' 'returning'
|
|
&& lk != 113755 // 'catch' 'revalidation'
|
|
&& lk != 114779 // 'catch' 'satisfies'
|
|
&& lk != 115291 // 'catch' 'schema'
|
|
&& lk != 115803 // 'catch' 'schema-attribute'
|
|
&& lk != 116315 // 'catch' 'schema-element'
|
|
&& lk != 116827 // 'catch' 'score'
|
|
&& lk != 117339 // 'catch' 'self'
|
|
&& lk != 119899 // 'catch' 'sliding'
|
|
&& lk != 120411 // 'catch' 'some'
|
|
&& lk != 120923 // 'catch' 'stable'
|
|
&& lk != 121435 // 'catch' 'start'
|
|
&& lk != 122971 // 'catch' 'strict'
|
|
&& lk != 124507 // 'catch' 'switch'
|
|
&& lk != 125019 // 'catch' 'text'
|
|
&& lk != 128091 // 'catch' 'try'
|
|
&& lk != 128603 // 'catch' 'tumbling'
|
|
&& lk != 129115 // 'catch' 'type'
|
|
&& lk != 129627 // 'catch' 'typeswitch'
|
|
&& lk != 131163 // 'catch' 'unordered'
|
|
&& lk != 131675 // 'catch' 'updating'
|
|
&& lk != 133211 // 'catch' 'validate'
|
|
&& lk != 133723 // 'catch' 'value'
|
|
&& lk != 134235 // 'catch' 'variable'
|
|
&& lk != 134747 // 'catch' 'version'
|
|
&& lk != 136283 // 'catch' 'where'
|
|
&& lk != 136795 // 'catch' 'while'
|
|
&& lk != 138331 // 'catch' 'with'
|
|
&& lk != 140379) // 'catch' 'xquery'
|
|
{
|
|
break;
|
|
}
|
|
lookahead1W(36); // S^WS | '(:' | 'catch'
|
|
shiftT(91); // 'catch'
|
|
lookahead1W(255); // Wildcard | EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_CatchErrorList();
|
|
try_BlockStatement();
|
|
}
|
|
}
|
|
|
|
function parse_TypeswitchStatement()
|
|
{
|
|
eventHandler.startNonterminal("TypeswitchStatement", e0);
|
|
shift(253); // 'typeswitch'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(37); // ')'
|
|
for (;;)
|
|
{
|
|
lookahead1W(35); // S^WS | '(:' | 'case'
|
|
whitespace();
|
|
parse_CaseStatement();
|
|
lookahead1W(113); // S^WS | '(:' | 'case' | 'default'
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shift(109); // 'default'
|
|
lookahead1W(95); // S^WS | '$' | '(:' | 'return'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
}
|
|
lookahead1W(70); // S^WS | '(:' | 'return'
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Statement();
|
|
eventHandler.endNonterminal("TypeswitchStatement", e0);
|
|
}
|
|
|
|
function try_TypeswitchStatement()
|
|
{
|
|
shiftT(253); // 'typeswitch'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(37); // ')'
|
|
for (;;)
|
|
{
|
|
lookahead1W(35); // S^WS | '(:' | 'case'
|
|
try_CaseStatement();
|
|
lookahead1W(113); // S^WS | '(:' | 'case' | 'default'
|
|
if (l1 != 88) // 'case'
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
shiftT(109); // 'default'
|
|
lookahead1W(95); // S^WS | '$' | '(:' | 'return'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
}
|
|
lookahead1W(70); // S^WS | '(:' | 'return'
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Statement();
|
|
}
|
|
|
|
function parse_CaseStatement()
|
|
{
|
|
eventHandler.startNonterminal("CaseStatement", e0);
|
|
shift(88); // 'case'
|
|
lookahead1W(260); // EQName^Token | S^WS | '$' | '%' | '(' | '(:' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shift(79); // 'as'
|
|
}
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_SequenceType();
|
|
lookahead1W(70); // S^WS | '(:' | 'return'
|
|
shift(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Statement();
|
|
eventHandler.endNonterminal("CaseStatement", e0);
|
|
}
|
|
|
|
function try_CaseStatement()
|
|
{
|
|
shiftT(88); // 'case'
|
|
lookahead1W(260); // EQName^Token | S^WS | '$' | '%' | '(' | '(:' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' |
|
|
// 'attribute' | 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' |
|
|
// 'cast' | 'castable' | 'catch' | 'child' | 'collation' | 'comment' |
|
|
// 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(30); // S^WS | '(:' | 'as'
|
|
shiftT(79); // 'as'
|
|
}
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
try_SequenceType();
|
|
lookahead1W(70); // S^WS | '(:' | 'return'
|
|
shiftT(220); // 'return'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Statement();
|
|
}
|
|
|
|
function parse_VarDeclStatement()
|
|
{
|
|
eventHandler.startNonterminal("VarDeclStatement", e0);
|
|
for (;;)
|
|
{
|
|
lookahead1W(98); // S^WS | '%' | '(:' | 'variable'
|
|
if (l1 != 32) // '%'
|
|
{
|
|
break;
|
|
}
|
|
whitespace();
|
|
parse_Annotation();
|
|
}
|
|
shift(262); // 'variable'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(157); // S^WS | '(:' | ',' | ':=' | ';' | 'as'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
lookahead1W(145); // S^WS | '(:' | ',' | ':=' | ';'
|
|
if (l1 == 52) // ':='
|
|
{
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
}
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shift(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_VarName();
|
|
lookahead1W(157); // S^WS | '(:' | ',' | ':=' | ';' | 'as'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
whitespace();
|
|
parse_TypeDeclaration();
|
|
}
|
|
lookahead1W(145); // S^WS | '(:' | ',' | ':=' | ';'
|
|
if (l1 == 52) // ':='
|
|
{
|
|
shift(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
}
|
|
}
|
|
shift(53); // ';'
|
|
eventHandler.endNonterminal("VarDeclStatement", e0);
|
|
}
|
|
|
|
function try_VarDeclStatement()
|
|
{
|
|
for (;;)
|
|
{
|
|
lookahead1W(98); // S^WS | '%' | '(:' | 'variable'
|
|
if (l1 != 32) // '%'
|
|
{
|
|
break;
|
|
}
|
|
try_Annotation();
|
|
}
|
|
shiftT(262); // 'variable'
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(157); // S^WS | '(:' | ',' | ':=' | ';' | 'as'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
try_TypeDeclaration();
|
|
}
|
|
lookahead1W(145); // S^WS | '(:' | ',' | ':=' | ';'
|
|
if (l1 == 52) // ':='
|
|
{
|
|
shiftT(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(21); // S^WS | '$' | '(:'
|
|
shiftT(31); // '$'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
try_VarName();
|
|
lookahead1W(157); // S^WS | '(:' | ',' | ':=' | ';' | 'as'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
try_TypeDeclaration();
|
|
}
|
|
lookahead1W(145); // S^WS | '(:' | ',' | ':=' | ';'
|
|
if (l1 == 52) // ':='
|
|
{
|
|
shiftT(52); // ':='
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
}
|
|
shiftT(53); // ';'
|
|
}
|
|
|
|
function parse_WhileStatement()
|
|
{
|
|
eventHandler.startNonterminal("WhileStatement", e0);
|
|
shift(267); // 'while'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(37); // ')'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Statement();
|
|
eventHandler.endNonterminal("WhileStatement", e0);
|
|
}
|
|
|
|
function try_WhileStatement()
|
|
{
|
|
shiftT(267); // 'while'
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shiftT(34); // '('
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(37); // ')'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Statement();
|
|
}
|
|
|
|
function parse_ExprSingle()
|
|
{
|
|
eventHandler.startNonterminal("ExprSingle", e0);
|
|
switch (l1)
|
|
{
|
|
case 137: // 'for'
|
|
lookahead2W(233); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' |
|
|
// '/' | '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'return' | 'satisfies' |
|
|
// 'sliding' | 'stable' | 'start' | 'to' | 'treat' | 'tumbling' | 'union' |
|
|
// 'where' | 'with' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 174: // 'let'
|
|
lookahead2W(231); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' |
|
|
// '/' | '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'return' | 'satisfies' |
|
|
// 'score' | 'stable' | 'start' | 'to' | 'treat' | 'union' | 'where' | 'with' |
|
|
// '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 250: // 'try'
|
|
lookahead2W(230); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'return' | 'satisfies' |
|
|
// 'stable' | 'start' | 'to' | 'treat' | 'union' | 'where' | 'with' | '{' | '|' |
|
|
// '||' | '|}' | '}'
|
|
break;
|
|
case 152: // 'if'
|
|
case 243: // 'switch'
|
|
case 253: // 'typeswitch'
|
|
lookahead2W(228); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'return' | 'satisfies' |
|
|
// 'stable' | 'start' | 'to' | 'treat' | 'union' | 'where' | 'with' | '|' | '||' |
|
|
// '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 16009: // 'for' '$'
|
|
case 16046: // 'let' '$'
|
|
case 116910: // 'let' 'score'
|
|
case 119945: // 'for' 'sliding'
|
|
case 128649: // 'for' 'tumbling'
|
|
parse_FLWORExpr();
|
|
break;
|
|
case 17560: // 'if' '('
|
|
parse_IfExpr();
|
|
break;
|
|
case 17651: // 'switch' '('
|
|
parse_SwitchExpr();
|
|
break;
|
|
case 141562: // 'try' '{'
|
|
parse_TryCatchExpr();
|
|
break;
|
|
case 17661: // 'typeswitch' '('
|
|
parse_TypeswitchExpr();
|
|
break;
|
|
default:
|
|
parse_ExprSimple();
|
|
}
|
|
eventHandler.endNonterminal("ExprSingle", e0);
|
|
}
|
|
|
|
function try_ExprSingle()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 137: // 'for'
|
|
lookahead2W(233); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' |
|
|
// '/' | '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'return' | 'satisfies' |
|
|
// 'sliding' | 'stable' | 'start' | 'to' | 'treat' | 'tumbling' | 'union' |
|
|
// 'where' | 'with' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 174: // 'let'
|
|
lookahead2W(231); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' |
|
|
// '/' | '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'return' | 'satisfies' |
|
|
// 'score' | 'stable' | 'start' | 'to' | 'treat' | 'union' | 'where' | 'with' |
|
|
// '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 250: // 'try'
|
|
lookahead2W(230); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'return' | 'satisfies' |
|
|
// 'stable' | 'start' | 'to' | 'treat' | 'union' | 'where' | 'with' | '{' | '|' |
|
|
// '||' | '|}' | '}'
|
|
break;
|
|
case 152: // 'if'
|
|
case 243: // 'switch'
|
|
case 253: // 'typeswitch'
|
|
lookahead2W(228); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'return' | 'satisfies' |
|
|
// 'stable' | 'start' | 'to' | 'treat' | 'union' | 'where' | 'with' | '|' | '||' |
|
|
// '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 16009: // 'for' '$'
|
|
case 16046: // 'let' '$'
|
|
case 116910: // 'let' 'score'
|
|
case 119945: // 'for' 'sliding'
|
|
case 128649: // 'for' 'tumbling'
|
|
try_FLWORExpr();
|
|
break;
|
|
case 17560: // 'if' '('
|
|
try_IfExpr();
|
|
break;
|
|
case 17651: // 'switch' '('
|
|
try_SwitchExpr();
|
|
break;
|
|
case 141562: // 'try' '{'
|
|
try_TryCatchExpr();
|
|
break;
|
|
case 17661: // 'typeswitch' '('
|
|
try_TypeswitchExpr();
|
|
break;
|
|
default:
|
|
try_ExprSimple();
|
|
}
|
|
}
|
|
|
|
function parse_ExprSimple()
|
|
{
|
|
eventHandler.startNonterminal("ExprSimple", e0);
|
|
switch (l1)
|
|
{
|
|
case 218: // 'rename'
|
|
lookahead2W(232); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'json' | 'le' |
|
|
// 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'node' | 'only' | 'or' | 'order' |
|
|
// 'return' | 'satisfies' | 'stable' | 'start' | 'to' | 'treat' | 'union' |
|
|
// 'where' | 'with' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 219: // 'replace'
|
|
lookahead2W(235); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'json' | 'le' |
|
|
// 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'node' | 'only' | 'or' | 'order' |
|
|
// 'return' | 'satisfies' | 'stable' | 'start' | 'to' | 'treat' | 'union' |
|
|
// 'value' | 'where' | 'with' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 110: // 'delete'
|
|
case 159: // 'insert'
|
|
lookahead2W(234); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'json' | 'le' |
|
|
// 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'node' | 'nodes' | 'only' | 'or' |
|
|
// 'order' | 'return' | 'satisfies' | 'stable' | 'start' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 103: // 'copy'
|
|
case 129: // 'every'
|
|
case 235: // 'some'
|
|
lookahead2W(229); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' |
|
|
// '/' | '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'return' | 'satisfies' |
|
|
// 'stable' | 'start' | 'to' | 'treat' | 'union' | 'where' | 'with' | '|' | '||' |
|
|
// '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 16001: // 'every' '$'
|
|
case 16107: // 'some' '$'
|
|
parse_QuantifiedExpr();
|
|
break;
|
|
case 97951: // 'insert' 'node'
|
|
case 98463: // 'insert' 'nodes'
|
|
parse_InsertExpr();
|
|
break;
|
|
case 97902: // 'delete' 'node'
|
|
case 98414: // 'delete' 'nodes'
|
|
parse_DeleteExpr();
|
|
break;
|
|
case 98010: // 'rename' 'node'
|
|
parse_RenameExpr();
|
|
break;
|
|
case 98011: // 'replace' 'node'
|
|
case 133851: // 'replace' 'value'
|
|
parse_ReplaceExpr();
|
|
break;
|
|
case 15975: // 'copy' '$'
|
|
parse_TransformExpr();
|
|
break;
|
|
case 85102: // 'delete' 'json'
|
|
parse_JSONDeleteExpr();
|
|
break;
|
|
case 85151: // 'insert' 'json'
|
|
parse_JSONInsertExpr();
|
|
break;
|
|
case 85210: // 'rename' 'json'
|
|
parse_JSONRenameExpr();
|
|
break;
|
|
case 85211: // 'replace' 'json'
|
|
parse_JSONReplaceExpr();
|
|
break;
|
|
case 77: // 'append'
|
|
parse_JSONAppendExpr();
|
|
break;
|
|
default:
|
|
parse_OrExpr();
|
|
}
|
|
eventHandler.endNonterminal("ExprSimple", e0);
|
|
}
|
|
|
|
function try_ExprSimple()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 218: // 'rename'
|
|
lookahead2W(232); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'json' | 'le' |
|
|
// 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'node' | 'only' | 'or' | 'order' |
|
|
// 'return' | 'satisfies' | 'stable' | 'start' | 'to' | 'treat' | 'union' |
|
|
// 'where' | 'with' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 219: // 'replace'
|
|
lookahead2W(235); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'json' | 'le' |
|
|
// 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'node' | 'only' | 'or' | 'order' |
|
|
// 'return' | 'satisfies' | 'stable' | 'start' | 'to' | 'treat' | 'union' |
|
|
// 'value' | 'where' | 'with' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 110: // 'delete'
|
|
case 159: // 'insert'
|
|
lookahead2W(234); // S^WS | EOF | '!' | '!=' | '#' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' | '/' |
|
|
// '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' | ']' |
|
|
// 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'json' | 'le' |
|
|
// 'let' | 'lt' | 'mod' | 'modify' | 'ne' | 'node' | 'nodes' | 'only' | 'or' |
|
|
// 'order' | 'return' | 'satisfies' | 'stable' | 'start' | 'to' | 'treat' |
|
|
// 'union' | 'where' | 'with' | '|' | '||' | '|}' | '}'
|
|
break;
|
|
case 103: // 'copy'
|
|
case 129: // 'every'
|
|
case 235: // 'some'
|
|
lookahead2W(229); // S^WS | EOF | '!' | '!=' | '#' | '$' | '(' | '(:' | ')' | '*' | '+' | ',' | '-' |
|
|
// '/' | '//' | ':' | ';' | '<' | '<<' | '<=' | '=' | '>' | '>=' | '>>' | '[' |
|
|
// ']' | 'after' | 'and' | 'as' | 'ascending' | 'at' | 'before' | 'case' | 'cast' |
|
|
// 'castable' | 'collation' | 'contains' | 'count' | 'default' | 'descending' |
|
|
// 'div' | 'else' | 'empty' | 'end' | 'eq' | 'except' | 'for' | 'ge' | 'group' |
|
|
// 'gt' | 'idiv' | 'instance' | 'intersect' | 'into' | 'is' | 'le' | 'let' | 'lt' |
|
|
// 'mod' | 'modify' | 'ne' | 'only' | 'or' | 'order' | 'return' | 'satisfies' |
|
|
// 'stable' | 'start' | 'to' | 'treat' | 'union' | 'where' | 'with' | '|' | '||' |
|
|
// '|}' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 16001: // 'every' '$'
|
|
case 16107: // 'some' '$'
|
|
try_QuantifiedExpr();
|
|
break;
|
|
case 97951: // 'insert' 'node'
|
|
case 98463: // 'insert' 'nodes'
|
|
try_InsertExpr();
|
|
break;
|
|
case 97902: // 'delete' 'node'
|
|
case 98414: // 'delete' 'nodes'
|
|
try_DeleteExpr();
|
|
break;
|
|
case 98010: // 'rename' 'node'
|
|
try_RenameExpr();
|
|
break;
|
|
case 98011: // 'replace' 'node'
|
|
case 133851: // 'replace' 'value'
|
|
try_ReplaceExpr();
|
|
break;
|
|
case 15975: // 'copy' '$'
|
|
try_TransformExpr();
|
|
break;
|
|
case 85102: // 'delete' 'json'
|
|
try_JSONDeleteExpr();
|
|
break;
|
|
case 85151: // 'insert' 'json'
|
|
try_JSONInsertExpr();
|
|
break;
|
|
case 85210: // 'rename' 'json'
|
|
try_JSONRenameExpr();
|
|
break;
|
|
case 85211: // 'replace' 'json'
|
|
try_JSONReplaceExpr();
|
|
break;
|
|
case 77: // 'append'
|
|
try_JSONAppendExpr();
|
|
break;
|
|
default:
|
|
try_OrExpr();
|
|
}
|
|
}
|
|
|
|
function parse_JSONDeleteExpr()
|
|
{
|
|
eventHandler.startNonterminal("JSONDeleteExpr", e0);
|
|
shift(110); // 'delete'
|
|
lookahead1W(56); // S^WS | '(:' | 'json'
|
|
shift(166); // 'json'
|
|
lookahead1W(262); // EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral | StringLiteral |
|
|
// S^WS | '$' | '%' | '(' | '(:' | '.' | '<' | '<!--' | '<?' | '[' | 'after' |
|
|
// 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_PostfixExpr();
|
|
eventHandler.endNonterminal("JSONDeleteExpr", e0);
|
|
}
|
|
|
|
function try_JSONDeleteExpr()
|
|
{
|
|
shiftT(110); // 'delete'
|
|
lookahead1W(56); // S^WS | '(:' | 'json'
|
|
shiftT(166); // 'json'
|
|
lookahead1W(262); // EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral | StringLiteral |
|
|
// S^WS | '$' | '%' | '(' | '(:' | '.' | '<' | '<!--' | '<?' | '[' | 'after' |
|
|
// 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_PostfixExpr();
|
|
}
|
|
|
|
function parse_JSONInsertExpr()
|
|
{
|
|
eventHandler.startNonterminal("JSONInsertExpr", e0);
|
|
shift(159); // 'insert'
|
|
lookahead1W(56); // S^WS | '(:' | 'json'
|
|
shift(166); // 'json'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
shift(163); // 'into'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
lookahead2W(69); // S^WS | '(:' | 'position'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 108113) // 'at' 'position'
|
|
{
|
|
lk = memoized(9, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
shiftT(81); // 'at'
|
|
lookahead1W(69); // S^WS | '(:' | 'position'
|
|
shiftT(211); // 'position'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(9, e0, lk);
|
|
}
|
|
}
|
|
if (lk == -1)
|
|
{
|
|
shift(81); // 'at'
|
|
lookahead1W(69); // S^WS | '(:' | 'position'
|
|
shift(211); // 'position'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
}
|
|
eventHandler.endNonterminal("JSONInsertExpr", e0);
|
|
}
|
|
|
|
function try_JSONInsertExpr()
|
|
{
|
|
shiftT(159); // 'insert'
|
|
lookahead1W(56); // S^WS | '(:' | 'json'
|
|
shiftT(166); // 'json'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
shiftT(163); // 'into'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
switch (l1)
|
|
{
|
|
case 81: // 'at'
|
|
lookahead2W(69); // S^WS | '(:' | 'position'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 108113) // 'at' 'position'
|
|
{
|
|
lk = memoized(9, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
shiftT(81); // 'at'
|
|
lookahead1W(69); // S^WS | '(:' | 'position'
|
|
shiftT(211); // 'position'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
memoize(9, e0A, -1);
|
|
}
|
|
catch (p1A)
|
|
{
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(9, e0A, -2);
|
|
}
|
|
lk = -2;
|
|
}
|
|
}
|
|
if (lk == -1)
|
|
{
|
|
shiftT(81); // 'at'
|
|
lookahead1W(69); // S^WS | '(:' | 'position'
|
|
shiftT(211); // 'position'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
}
|
|
|
|
function parse_JSONRenameExpr()
|
|
{
|
|
eventHandler.startNonterminal("JSONRenameExpr", e0);
|
|
shift(218); // 'rename'
|
|
lookahead1W(56); // S^WS | '(:' | 'json'
|
|
shift(166); // 'json'
|
|
lookahead1W(262); // EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral | StringLiteral |
|
|
// S^WS | '$' | '%' | '(' | '(:' | '.' | '<' | '<!--' | '<?' | '[' | 'after' |
|
|
// 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_PostfixExpr();
|
|
shift(79); // 'as'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("JSONRenameExpr", e0);
|
|
}
|
|
|
|
function try_JSONRenameExpr()
|
|
{
|
|
shiftT(218); // 'rename'
|
|
lookahead1W(56); // S^WS | '(:' | 'json'
|
|
shiftT(166); // 'json'
|
|
lookahead1W(262); // EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral | StringLiteral |
|
|
// S^WS | '$' | '%' | '(' | '(:' | '.' | '<' | '<!--' | '<?' | '[' | 'after' |
|
|
// 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_PostfixExpr();
|
|
shiftT(79); // 'as'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_JSONReplaceExpr()
|
|
{
|
|
eventHandler.startNonterminal("JSONReplaceExpr", e0);
|
|
shift(219); // 'replace'
|
|
lookahead1W(56); // S^WS | '(:' | 'json'
|
|
shift(166); // 'json'
|
|
lookahead1W(82); // S^WS | '(:' | 'value'
|
|
shift(261); // 'value'
|
|
lookahead1W(64); // S^WS | '(:' | 'of'
|
|
shift(196); // 'of'
|
|
lookahead1W(262); // EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral | StringLiteral |
|
|
// S^WS | '$' | '%' | '(' | '(:' | '.' | '<' | '<!--' | '<?' | '[' | 'after' |
|
|
// 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_PostfixExpr();
|
|
shift(270); // 'with'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("JSONReplaceExpr", e0);
|
|
}
|
|
|
|
function try_JSONReplaceExpr()
|
|
{
|
|
shiftT(219); // 'replace'
|
|
lookahead1W(56); // S^WS | '(:' | 'json'
|
|
shiftT(166); // 'json'
|
|
lookahead1W(82); // S^WS | '(:' | 'value'
|
|
shiftT(261); // 'value'
|
|
lookahead1W(64); // S^WS | '(:' | 'of'
|
|
shiftT(196); // 'of'
|
|
lookahead1W(262); // EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral | StringLiteral |
|
|
// S^WS | '$' | '%' | '(' | '(:' | '.' | '<' | '<!--' | '<?' | '[' | 'after' |
|
|
// 'allowing' | 'ancestor' | 'ancestor-or-self' | 'and' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_PostfixExpr();
|
|
shiftT(270); // 'with'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_JSONAppendExpr()
|
|
{
|
|
eventHandler.startNonterminal("JSONAppendExpr", e0);
|
|
shift(77); // 'append'
|
|
lookahead1W(56); // S^WS | '(:' | 'json'
|
|
shift(166); // 'json'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
shift(163); // 'into'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("JSONAppendExpr", e0);
|
|
}
|
|
|
|
function try_JSONAppendExpr()
|
|
{
|
|
shiftT(77); // 'append'
|
|
lookahead1W(56); // S^WS | '(:' | 'json'
|
|
shiftT(166); // 'json'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
shiftT(163); // 'into'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_CommonContent()
|
|
{
|
|
eventHandler.startNonterminal("CommonContent", e0);
|
|
switch (l1)
|
|
{
|
|
case 12: // PredefinedEntityRef
|
|
shift(12); // PredefinedEntityRef
|
|
break;
|
|
case 23: // CharRef
|
|
shift(23); // CharRef
|
|
break;
|
|
case 277: // '{{'
|
|
shift(277); // '{{'
|
|
break;
|
|
case 283: // '}}'
|
|
shift(283); // '}}'
|
|
break;
|
|
default:
|
|
parse_BlockExpr();
|
|
}
|
|
eventHandler.endNonterminal("CommonContent", e0);
|
|
}
|
|
|
|
function try_CommonContent()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 12: // PredefinedEntityRef
|
|
shiftT(12); // PredefinedEntityRef
|
|
break;
|
|
case 23: // CharRef
|
|
shiftT(23); // CharRef
|
|
break;
|
|
case 277: // '{{'
|
|
shiftT(277); // '{{'
|
|
break;
|
|
case 283: // '}}'
|
|
shiftT(283); // '}}'
|
|
break;
|
|
default:
|
|
try_BlockExpr();
|
|
}
|
|
}
|
|
|
|
function parse_ContentExpr()
|
|
{
|
|
eventHandler.startNonterminal("ContentExpr", e0);
|
|
parse_StatementsAndExpr();
|
|
eventHandler.endNonterminal("ContentExpr", e0);
|
|
}
|
|
|
|
function try_ContentExpr()
|
|
{
|
|
try_StatementsAndExpr();
|
|
}
|
|
|
|
function parse_CompDocConstructor()
|
|
{
|
|
eventHandler.startNonterminal("CompDocConstructor", e0);
|
|
shift(119); // 'document'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
whitespace();
|
|
parse_BlockExpr();
|
|
eventHandler.endNonterminal("CompDocConstructor", e0);
|
|
}
|
|
|
|
function try_CompDocConstructor()
|
|
{
|
|
shiftT(119); // 'document'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
try_BlockExpr();
|
|
}
|
|
|
|
function parse_CompAttrConstructor()
|
|
{
|
|
eventHandler.startNonterminal("CompAttrConstructor", e0);
|
|
shift(82); // 'attribute'
|
|
lookahead1W(256); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(282); // '}'
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_EQName();
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
lookahead2W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 144660) // '{' '}'
|
|
{
|
|
lk = memoized(10, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
shiftT(276); // '{'
|
|
lookahead1W(88); // S^WS | '(:' | '}'
|
|
shiftT(282); // '}'
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(10, e0, lk);
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
shift(276); // '{'
|
|
lookahead1W(88); // S^WS | '(:' | '}'
|
|
shift(282); // '}'
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_BlockExpr();
|
|
}
|
|
eventHandler.endNonterminal("CompAttrConstructor", e0);
|
|
}
|
|
|
|
function try_CompAttrConstructor()
|
|
{
|
|
shiftT(82); // 'attribute'
|
|
lookahead1W(256); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(282); // '}'
|
|
break;
|
|
default:
|
|
try_EQName();
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
lookahead2W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 144660) // '{' '}'
|
|
{
|
|
lk = memoized(10, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
shiftT(276); // '{'
|
|
lookahead1W(88); // S^WS | '(:' | '}'
|
|
shiftT(282); // '}'
|
|
memoize(10, e0A, -1);
|
|
lk = -3;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(10, e0A, -2);
|
|
}
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
shiftT(276); // '{'
|
|
lookahead1W(88); // S^WS | '(:' | '}'
|
|
shiftT(282); // '}'
|
|
break;
|
|
case -3:
|
|
break;
|
|
default:
|
|
try_BlockExpr();
|
|
}
|
|
}
|
|
|
|
function parse_CompPIConstructor()
|
|
{
|
|
eventHandler.startNonterminal("CompPIConstructor", e0);
|
|
shift(216); // 'processing-instruction'
|
|
lookahead1W(249); // NCName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
shift(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_Expr();
|
|
shift(282); // '}'
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_NCName();
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
lookahead2W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 144660) // '{' '}'
|
|
{
|
|
lk = memoized(11, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
shiftT(276); // '{'
|
|
lookahead1W(88); // S^WS | '(:' | '}'
|
|
shiftT(282); // '}'
|
|
lk = -1;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(11, e0, lk);
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
shift(276); // '{'
|
|
lookahead1W(88); // S^WS | '(:' | '}'
|
|
shift(282); // '}'
|
|
break;
|
|
default:
|
|
whitespace();
|
|
parse_BlockExpr();
|
|
}
|
|
eventHandler.endNonterminal("CompPIConstructor", e0);
|
|
}
|
|
|
|
function try_CompPIConstructor()
|
|
{
|
|
shiftT(216); // 'processing-instruction'
|
|
lookahead1W(249); // NCName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
shiftT(276); // '{'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_Expr();
|
|
shiftT(282); // '}'
|
|
break;
|
|
default:
|
|
try_NCName();
|
|
}
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
lookahead2W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 144660) // '{' '}'
|
|
{
|
|
lk = memoized(11, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
shiftT(276); // '{'
|
|
lookahead1W(88); // S^WS | '(:' | '}'
|
|
shiftT(282); // '}'
|
|
memoize(11, e0A, -1);
|
|
lk = -3;
|
|
}
|
|
catch (p1A)
|
|
{
|
|
lk = -2;
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(11, e0A, -2);
|
|
}
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case -1:
|
|
shiftT(276); // '{'
|
|
lookahead1W(88); // S^WS | '(:' | '}'
|
|
shiftT(282); // '}'
|
|
break;
|
|
case -3:
|
|
break;
|
|
default:
|
|
try_BlockExpr();
|
|
}
|
|
}
|
|
|
|
function parse_CompCommentConstructor()
|
|
{
|
|
eventHandler.startNonterminal("CompCommentConstructor", e0);
|
|
shift(96); // 'comment'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
whitespace();
|
|
parse_BlockExpr();
|
|
eventHandler.endNonterminal("CompCommentConstructor", e0);
|
|
}
|
|
|
|
function try_CompCommentConstructor()
|
|
{
|
|
shiftT(96); // 'comment'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
try_BlockExpr();
|
|
}
|
|
|
|
function parse_CompTextConstructor()
|
|
{
|
|
eventHandler.startNonterminal("CompTextConstructor", e0);
|
|
shift(244); // 'text'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
whitespace();
|
|
parse_BlockExpr();
|
|
eventHandler.endNonterminal("CompTextConstructor", e0);
|
|
}
|
|
|
|
function try_CompTextConstructor()
|
|
{
|
|
shiftT(244); // 'text'
|
|
lookahead1W(87); // S^WS | '(:' | '{'
|
|
try_BlockExpr();
|
|
}
|
|
|
|
function parse_PrimaryExpr()
|
|
{
|
|
eventHandler.startNonterminal("PrimaryExpr", e0);
|
|
switch (l1)
|
|
{
|
|
case 184: // 'namespace'
|
|
lookahead2W(254); // NCName^Token | S^WS | '#' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
break;
|
|
case 216: // 'processing-instruction'
|
|
lookahead2W(252); // NCName^Token | S^WS | '#' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
break;
|
|
case 276: // '{'
|
|
lookahead2W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
break;
|
|
case 82: // 'attribute'
|
|
case 121: // 'element'
|
|
lookahead2W(257); // EQName^Token | S^WS | '#' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
break;
|
|
case 96: // 'comment'
|
|
case 244: // 'text'
|
|
lookahead2W(93); // S^WS | '#' | '(:' | '{'
|
|
break;
|
|
case 119: // 'document'
|
|
case 202: // 'ordered'
|
|
case 256: // 'unordered'
|
|
lookahead2W(139); // S^WS | '#' | '(' | '(:' | '{'
|
|
break;
|
|
case 6: // EQName^Token
|
|
case 70: // 'after'
|
|
case 72: // 'allowing'
|
|
case 73: // 'ancestor'
|
|
case 74: // 'ancestor-or-self'
|
|
case 75: // 'and'
|
|
case 78: // 'array'
|
|
case 79: // 'as'
|
|
case 80: // 'ascending'
|
|
case 81: // 'at'
|
|
case 83: // 'base-uri'
|
|
case 84: // 'before'
|
|
case 85: // 'boundary-space'
|
|
case 86: // 'break'
|
|
case 88: // 'case'
|
|
case 89: // 'cast'
|
|
case 90: // 'castable'
|
|
case 91: // 'catch'
|
|
case 93: // 'child'
|
|
case 94: // 'collation'
|
|
case 97: // 'constraint'
|
|
case 98: // 'construction'
|
|
case 101: // 'context'
|
|
case 102: // 'continue'
|
|
case 103: // 'copy'
|
|
case 104: // 'copy-namespaces'
|
|
case 105: // 'count'
|
|
case 106: // 'decimal-format'
|
|
case 108: // 'declare'
|
|
case 109: // 'default'
|
|
case 110: // 'delete'
|
|
case 111: // 'descendant'
|
|
case 112: // 'descendant-or-self'
|
|
case 113: // 'descending'
|
|
case 118: // 'div'
|
|
case 122: // 'else'
|
|
case 123: // 'empty'
|
|
case 125: // 'encoding'
|
|
case 126: // 'end'
|
|
case 128: // 'eq'
|
|
case 129: // 'every'
|
|
case 131: // 'except'
|
|
case 132: // 'exit'
|
|
case 133: // 'external'
|
|
case 134: // 'first'
|
|
case 135: // 'following'
|
|
case 136: // 'following-sibling'
|
|
case 137: // 'for'
|
|
case 141: // 'ft-option'
|
|
case 146: // 'ge'
|
|
case 148: // 'group'
|
|
case 150: // 'gt'
|
|
case 151: // 'idiv'
|
|
case 153: // 'import'
|
|
case 154: // 'in'
|
|
case 155: // 'index'
|
|
case 159: // 'insert'
|
|
case 160: // 'instance'
|
|
case 161: // 'integrity'
|
|
case 162: // 'intersect'
|
|
case 163: // 'into'
|
|
case 164: // 'is'
|
|
case 167: // 'json-item'
|
|
case 170: // 'last'
|
|
case 171: // 'lax'
|
|
case 172: // 'le'
|
|
case 174: // 'let'
|
|
case 176: // 'loop'
|
|
case 178: // 'lt'
|
|
case 180: // 'mod'
|
|
case 181: // 'modify'
|
|
case 182: // 'module'
|
|
case 186: // 'ne'
|
|
case 192: // 'nodes'
|
|
case 194: // 'object'
|
|
case 198: // 'only'
|
|
case 199: // 'option'
|
|
case 200: // 'or'
|
|
case 201: // 'order'
|
|
case 203: // 'ordering'
|
|
case 206: // 'parent'
|
|
case 212: // 'preceding'
|
|
case 213: // 'preceding-sibling'
|
|
case 218: // 'rename'
|
|
case 219: // 'replace'
|
|
case 220: // 'return'
|
|
case 221: // 'returning'
|
|
case 222: // 'revalidation'
|
|
case 224: // 'satisfies'
|
|
case 225: // 'schema'
|
|
case 228: // 'score'
|
|
case 229: // 'self'
|
|
case 234: // 'sliding'
|
|
case 235: // 'some'
|
|
case 236: // 'stable'
|
|
case 237: // 'start'
|
|
case 240: // 'strict'
|
|
case 248: // 'to'
|
|
case 249: // 'treat'
|
|
case 250: // 'try'
|
|
case 251: // 'tumbling'
|
|
case 252: // 'type'
|
|
case 254: // 'union'
|
|
case 257: // 'updating'
|
|
case 260: // 'validate'
|
|
case 261: // 'value'
|
|
case 262: // 'variable'
|
|
case 263: // 'version'
|
|
case 266: // 'where'
|
|
case 267: // 'while'
|
|
case 270: // 'with'
|
|
case 274: // 'xquery'
|
|
lookahead2W(92); // S^WS | '#' | '(' | '(:'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 2836 // '{' Wildcard
|
|
|| lk == 3348 // '{' EQName^Token
|
|
|| lk == 4372 // '{' IntegerLiteral
|
|
|| lk == 4884 // '{' DecimalLiteral
|
|
|| lk == 5396 // '{' DoubleLiteral
|
|
|| lk == 5908 // '{' StringLiteral
|
|
|| lk == 16148 // '{' '$'
|
|
|| lk == 16660 // '{' '%'
|
|
|| lk == 17684 // '{' '('
|
|
|| lk == 18196 // '{' '(#'
|
|
|| lk == 20756 // '{' '+'
|
|
|| lk == 21780 // '{' '-'
|
|
|| lk == 22804 // '{' '.'
|
|
|| lk == 23316 // '{' '..'
|
|
|| lk == 23828 // '{' '/'
|
|
|| lk == 24340 // '{' '//'
|
|
|| lk == 27924 // '{' '<'
|
|
|| lk == 28436 // '{' '<!--'
|
|
|| lk == 30484 // '{' '<?'
|
|
|| lk == 34068 // '{' '@'
|
|
|| lk == 35092 // '{' '['
|
|
|| lk == 36116 // '{' 'after'
|
|
|| lk == 37140 // '{' 'allowing'
|
|
|| lk == 37652 // '{' 'ancestor'
|
|
|| lk == 38164 // '{' 'ancestor-or-self'
|
|
|| lk == 38676 // '{' 'and'
|
|
|| lk == 39700 // '{' 'append'
|
|
|| lk == 40212 // '{' 'array'
|
|
|| lk == 40724 // '{' 'as'
|
|
|| lk == 41236 // '{' 'ascending'
|
|
|| lk == 41748 // '{' 'at'
|
|
|| lk == 42260 // '{' 'attribute'
|
|
|| lk == 42772 // '{' 'base-uri'
|
|
|| lk == 43284 // '{' 'before'
|
|
|| lk == 43796 // '{' 'boundary-space'
|
|
|| lk == 44308 // '{' 'break'
|
|
|| lk == 45332 // '{' 'case'
|
|
|| lk == 45844 // '{' 'cast'
|
|
|| lk == 46356 // '{' 'castable'
|
|
|| lk == 46868 // '{' 'catch'
|
|
|| lk == 47892 // '{' 'child'
|
|
|| lk == 48404 // '{' 'collation'
|
|
|| lk == 49428 // '{' 'comment'
|
|
|| lk == 49940 // '{' 'constraint'
|
|
|| lk == 50452 // '{' 'construction'
|
|
|| lk == 51988 // '{' 'context'
|
|
|| lk == 52500 // '{' 'continue'
|
|
|| lk == 53012 // '{' 'copy'
|
|
|| lk == 53524 // '{' 'copy-namespaces'
|
|
|| lk == 54036 // '{' 'count'
|
|
|| lk == 54548 // '{' 'decimal-format'
|
|
|| lk == 55572 // '{' 'declare'
|
|
|| lk == 56084 // '{' 'default'
|
|
|| lk == 56596 // '{' 'delete'
|
|
|| lk == 57108 // '{' 'descendant'
|
|
|| lk == 57620 // '{' 'descendant-or-self'
|
|
|| lk == 58132 // '{' 'descending'
|
|
|| lk == 60692 // '{' 'div'
|
|
|| lk == 61204 // '{' 'document'
|
|
|| lk == 61716 // '{' 'document-node'
|
|
|| lk == 62228 // '{' 'element'
|
|
|| lk == 62740 // '{' 'else'
|
|
|| lk == 63252 // '{' 'empty'
|
|
|| lk == 63764 // '{' 'empty-sequence'
|
|
|| lk == 64276 // '{' 'encoding'
|
|
|| lk == 64788 // '{' 'end'
|
|
|| lk == 65812 // '{' 'eq'
|
|
|| lk == 66324 // '{' 'every'
|
|
|| lk == 67348 // '{' 'except'
|
|
|| lk == 67860 // '{' 'exit'
|
|
|| lk == 68372 // '{' 'external'
|
|
|| lk == 68884 // '{' 'first'
|
|
|| lk == 69396 // '{' 'following'
|
|
|| lk == 69908 // '{' 'following-sibling'
|
|
|| lk == 70420 // '{' 'for'
|
|
|| lk == 72468 // '{' 'ft-option'
|
|
|| lk == 74516 // '{' 'function'
|
|
|| lk == 75028 // '{' 'ge'
|
|
|| lk == 76052 // '{' 'group'
|
|
|| lk == 77076 // '{' 'gt'
|
|
|| lk == 77588 // '{' 'idiv'
|
|
|| lk == 78100 // '{' 'if'
|
|
|| lk == 78612 // '{' 'import'
|
|
|| lk == 79124 // '{' 'in'
|
|
|| lk == 79636 // '{' 'index'
|
|
|| lk == 81684 // '{' 'insert'
|
|
|| lk == 82196 // '{' 'instance'
|
|
|| lk == 82708 // '{' 'integrity'
|
|
|| lk == 83220 // '{' 'intersect'
|
|
|| lk == 83732 // '{' 'into'
|
|
|| lk == 84244 // '{' 'is'
|
|
|| lk == 84756 // '{' 'item'
|
|
|| lk == 85780 // '{' 'json-item'
|
|
|| lk == 87316 // '{' 'last'
|
|
|| lk == 87828 // '{' 'lax'
|
|
|| lk == 88340 // '{' 'le'
|
|
|| lk == 89364 // '{' 'let'
|
|
|| lk == 90388 // '{' 'loop'
|
|
|| lk == 91412 // '{' 'lt'
|
|
|| lk == 92436 // '{' 'mod'
|
|
|| lk == 92948 // '{' 'modify'
|
|
|| lk == 93460 // '{' 'module'
|
|
|| lk == 94484 // '{' 'namespace'
|
|
|| lk == 94996 // '{' 'namespace-node'
|
|
|| lk == 95508 // '{' 'ne'
|
|
|| lk == 98068 // '{' 'node'
|
|
|| lk == 98580 // '{' 'nodes'
|
|
|| lk == 99604 // '{' 'object'
|
|
|| lk == 101652 // '{' 'only'
|
|
|| lk == 102164 // '{' 'option'
|
|
|| lk == 102676 // '{' 'or'
|
|
|| lk == 103188 // '{' 'order'
|
|
|| lk == 103700 // '{' 'ordered'
|
|
|| lk == 104212 // '{' 'ordering'
|
|
|| lk == 105748 // '{' 'parent'
|
|
|| lk == 108820 // '{' 'preceding'
|
|
|| lk == 109332 // '{' 'preceding-sibling'
|
|
|| lk == 110868 // '{' 'processing-instruction'
|
|
|| lk == 111892 // '{' 'rename'
|
|
|| lk == 112404 // '{' 'replace'
|
|
|| lk == 112916 // '{' 'return'
|
|
|| lk == 113428 // '{' 'returning'
|
|
|| lk == 113940 // '{' 'revalidation'
|
|
|| lk == 114964 // '{' 'satisfies'
|
|
|| lk == 115476 // '{' 'schema'
|
|
|| lk == 115988 // '{' 'schema-attribute'
|
|
|| lk == 116500 // '{' 'schema-element'
|
|
|| lk == 117012 // '{' 'score'
|
|
|| lk == 117524 // '{' 'self'
|
|
|| lk == 120084 // '{' 'sliding'
|
|
|| lk == 120596 // '{' 'some'
|
|
|| lk == 121108 // '{' 'stable'
|
|
|| lk == 121620 // '{' 'start'
|
|
|| lk == 123156 // '{' 'strict'
|
|
|| lk == 124692 // '{' 'switch'
|
|
|| lk == 125204 // '{' 'text'
|
|
|| lk == 127252 // '{' 'to'
|
|
|| lk == 127764 // '{' 'treat'
|
|
|| lk == 128276 // '{' 'try'
|
|
|| lk == 128788 // '{' 'tumbling'
|
|
|| lk == 129300 // '{' 'type'
|
|
|| lk == 129812 // '{' 'typeswitch'
|
|
|| lk == 130324 // '{' 'union'
|
|
|| lk == 131348 // '{' 'unordered'
|
|
|| lk == 131860 // '{' 'updating'
|
|
|| lk == 133396 // '{' 'validate'
|
|
|| lk == 133908 // '{' 'value'
|
|
|| lk == 134420 // '{' 'variable'
|
|
|| lk == 134932 // '{' 'version'
|
|
|| lk == 136468 // '{' 'where'
|
|
|| lk == 136980 // '{' 'while'
|
|
|| lk == 138516 // '{' 'with'
|
|
|| lk == 140564 // '{' 'xquery'
|
|
|| lk == 141588 // '{' '{'
|
|
|| lk == 142612 // '{' '{|'
|
|
|| lk == 144660) // '{' '}'
|
|
{
|
|
lk = memoized(12, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_BlockExpr();
|
|
lk = -10;
|
|
}
|
|
catch (p10A)
|
|
{
|
|
lk = -11;
|
|
}
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(12, e0, lk);
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 8: // IntegerLiteral
|
|
case 9: // DecimalLiteral
|
|
case 10: // DoubleLiteral
|
|
case 11: // StringLiteral
|
|
parse_Literal();
|
|
break;
|
|
case 31: // '$'
|
|
parse_VarRef();
|
|
break;
|
|
case 34: // '('
|
|
parse_ParenthesizedExpr();
|
|
break;
|
|
case 44: // '.'
|
|
parse_ContextItemExpr();
|
|
break;
|
|
case 17414: // EQName^Token '('
|
|
case 17478: // 'after' '('
|
|
case 17480: // 'allowing' '('
|
|
case 17481: // 'ancestor' '('
|
|
case 17482: // 'ancestor-or-self' '('
|
|
case 17483: // 'and' '('
|
|
case 17486: // 'array' '('
|
|
case 17487: // 'as' '('
|
|
case 17488: // 'ascending' '('
|
|
case 17489: // 'at' '('
|
|
case 17491: // 'base-uri' '('
|
|
case 17492: // 'before' '('
|
|
case 17493: // 'boundary-space' '('
|
|
case 17494: // 'break' '('
|
|
case 17496: // 'case' '('
|
|
case 17497: // 'cast' '('
|
|
case 17498: // 'castable' '('
|
|
case 17499: // 'catch' '('
|
|
case 17501: // 'child' '('
|
|
case 17502: // 'collation' '('
|
|
case 17505: // 'constraint' '('
|
|
case 17506: // 'construction' '('
|
|
case 17509: // 'context' '('
|
|
case 17510: // 'continue' '('
|
|
case 17511: // 'copy' '('
|
|
case 17512: // 'copy-namespaces' '('
|
|
case 17513: // 'count' '('
|
|
case 17514: // 'decimal-format' '('
|
|
case 17516: // 'declare' '('
|
|
case 17517: // 'default' '('
|
|
case 17518: // 'delete' '('
|
|
case 17519: // 'descendant' '('
|
|
case 17520: // 'descendant-or-self' '('
|
|
case 17521: // 'descending' '('
|
|
case 17526: // 'div' '('
|
|
case 17527: // 'document' '('
|
|
case 17530: // 'else' '('
|
|
case 17531: // 'empty' '('
|
|
case 17533: // 'encoding' '('
|
|
case 17534: // 'end' '('
|
|
case 17536: // 'eq' '('
|
|
case 17537: // 'every' '('
|
|
case 17539: // 'except' '('
|
|
case 17540: // 'exit' '('
|
|
case 17541: // 'external' '('
|
|
case 17542: // 'first' '('
|
|
case 17543: // 'following' '('
|
|
case 17544: // 'following-sibling' '('
|
|
case 17545: // 'for' '('
|
|
case 17549: // 'ft-option' '('
|
|
case 17554: // 'ge' '('
|
|
case 17556: // 'group' '('
|
|
case 17558: // 'gt' '('
|
|
case 17559: // 'idiv' '('
|
|
case 17561: // 'import' '('
|
|
case 17562: // 'in' '('
|
|
case 17563: // 'index' '('
|
|
case 17567: // 'insert' '('
|
|
case 17568: // 'instance' '('
|
|
case 17569: // 'integrity' '('
|
|
case 17570: // 'intersect' '('
|
|
case 17571: // 'into' '('
|
|
case 17572: // 'is' '('
|
|
case 17575: // 'json-item' '('
|
|
case 17578: // 'last' '('
|
|
case 17579: // 'lax' '('
|
|
case 17580: // 'le' '('
|
|
case 17582: // 'let' '('
|
|
case 17584: // 'loop' '('
|
|
case 17586: // 'lt' '('
|
|
case 17588: // 'mod' '('
|
|
case 17589: // 'modify' '('
|
|
case 17590: // 'module' '('
|
|
case 17592: // 'namespace' '('
|
|
case 17594: // 'ne' '('
|
|
case 17600: // 'nodes' '('
|
|
case 17602: // 'object' '('
|
|
case 17606: // 'only' '('
|
|
case 17607: // 'option' '('
|
|
case 17608: // 'or' '('
|
|
case 17609: // 'order' '('
|
|
case 17610: // 'ordered' '('
|
|
case 17611: // 'ordering' '('
|
|
case 17614: // 'parent' '('
|
|
case 17620: // 'preceding' '('
|
|
case 17621: // 'preceding-sibling' '('
|
|
case 17626: // 'rename' '('
|
|
case 17627: // 'replace' '('
|
|
case 17628: // 'return' '('
|
|
case 17629: // 'returning' '('
|
|
case 17630: // 'revalidation' '('
|
|
case 17632: // 'satisfies' '('
|
|
case 17633: // 'schema' '('
|
|
case 17636: // 'score' '('
|
|
case 17637: // 'self' '('
|
|
case 17642: // 'sliding' '('
|
|
case 17643: // 'some' '('
|
|
case 17644: // 'stable' '('
|
|
case 17645: // 'start' '('
|
|
case 17648: // 'strict' '('
|
|
case 17656: // 'to' '('
|
|
case 17657: // 'treat' '('
|
|
case 17658: // 'try' '('
|
|
case 17659: // 'tumbling' '('
|
|
case 17660: // 'type' '('
|
|
case 17662: // 'union' '('
|
|
case 17664: // 'unordered' '('
|
|
case 17665: // 'updating' '('
|
|
case 17668: // 'validate' '('
|
|
case 17669: // 'value' '('
|
|
case 17670: // 'variable' '('
|
|
case 17671: // 'version' '('
|
|
case 17674: // 'where' '('
|
|
case 17675: // 'while' '('
|
|
case 17678: // 'with' '('
|
|
case 17682: // 'xquery' '('
|
|
parse_FunctionCall();
|
|
break;
|
|
case 141514: // 'ordered' '{'
|
|
parse_OrderedExpr();
|
|
break;
|
|
case 141568: // 'unordered' '{'
|
|
parse_UnorderedExpr();
|
|
break;
|
|
case 32: // '%'
|
|
case 120: // 'document-node'
|
|
case 124: // 'empty-sequence'
|
|
case 145: // 'function'
|
|
case 152: // 'if'
|
|
case 165: // 'item'
|
|
case 185: // 'namespace-node'
|
|
case 191: // 'node'
|
|
case 226: // 'schema-attribute'
|
|
case 227: // 'schema-element'
|
|
case 243: // 'switch'
|
|
case 253: // 'typeswitch'
|
|
case 14854: // EQName^Token '#'
|
|
case 14918: // 'after' '#'
|
|
case 14920: // 'allowing' '#'
|
|
case 14921: // 'ancestor' '#'
|
|
case 14922: // 'ancestor-or-self' '#'
|
|
case 14923: // 'and' '#'
|
|
case 14926: // 'array' '#'
|
|
case 14927: // 'as' '#'
|
|
case 14928: // 'ascending' '#'
|
|
case 14929: // 'at' '#'
|
|
case 14930: // 'attribute' '#'
|
|
case 14931: // 'base-uri' '#'
|
|
case 14932: // 'before' '#'
|
|
case 14933: // 'boundary-space' '#'
|
|
case 14934: // 'break' '#'
|
|
case 14936: // 'case' '#'
|
|
case 14937: // 'cast' '#'
|
|
case 14938: // 'castable' '#'
|
|
case 14939: // 'catch' '#'
|
|
case 14941: // 'child' '#'
|
|
case 14942: // 'collation' '#'
|
|
case 14944: // 'comment' '#'
|
|
case 14945: // 'constraint' '#'
|
|
case 14946: // 'construction' '#'
|
|
case 14949: // 'context' '#'
|
|
case 14950: // 'continue' '#'
|
|
case 14951: // 'copy' '#'
|
|
case 14952: // 'copy-namespaces' '#'
|
|
case 14953: // 'count' '#'
|
|
case 14954: // 'decimal-format' '#'
|
|
case 14956: // 'declare' '#'
|
|
case 14957: // 'default' '#'
|
|
case 14958: // 'delete' '#'
|
|
case 14959: // 'descendant' '#'
|
|
case 14960: // 'descendant-or-self' '#'
|
|
case 14961: // 'descending' '#'
|
|
case 14966: // 'div' '#'
|
|
case 14967: // 'document' '#'
|
|
case 14969: // 'element' '#'
|
|
case 14970: // 'else' '#'
|
|
case 14971: // 'empty' '#'
|
|
case 14973: // 'encoding' '#'
|
|
case 14974: // 'end' '#'
|
|
case 14976: // 'eq' '#'
|
|
case 14977: // 'every' '#'
|
|
case 14979: // 'except' '#'
|
|
case 14980: // 'exit' '#'
|
|
case 14981: // 'external' '#'
|
|
case 14982: // 'first' '#'
|
|
case 14983: // 'following' '#'
|
|
case 14984: // 'following-sibling' '#'
|
|
case 14985: // 'for' '#'
|
|
case 14989: // 'ft-option' '#'
|
|
case 14994: // 'ge' '#'
|
|
case 14996: // 'group' '#'
|
|
case 14998: // 'gt' '#'
|
|
case 14999: // 'idiv' '#'
|
|
case 15001: // 'import' '#'
|
|
case 15002: // 'in' '#'
|
|
case 15003: // 'index' '#'
|
|
case 15007: // 'insert' '#'
|
|
case 15008: // 'instance' '#'
|
|
case 15009: // 'integrity' '#'
|
|
case 15010: // 'intersect' '#'
|
|
case 15011: // 'into' '#'
|
|
case 15012: // 'is' '#'
|
|
case 15015: // 'json-item' '#'
|
|
case 15018: // 'last' '#'
|
|
case 15019: // 'lax' '#'
|
|
case 15020: // 'le' '#'
|
|
case 15022: // 'let' '#'
|
|
case 15024: // 'loop' '#'
|
|
case 15026: // 'lt' '#'
|
|
case 15028: // 'mod' '#'
|
|
case 15029: // 'modify' '#'
|
|
case 15030: // 'module' '#'
|
|
case 15032: // 'namespace' '#'
|
|
case 15034: // 'ne' '#'
|
|
case 15040: // 'nodes' '#'
|
|
case 15042: // 'object' '#'
|
|
case 15046: // 'only' '#'
|
|
case 15047: // 'option' '#'
|
|
case 15048: // 'or' '#'
|
|
case 15049: // 'order' '#'
|
|
case 15050: // 'ordered' '#'
|
|
case 15051: // 'ordering' '#'
|
|
case 15054: // 'parent' '#'
|
|
case 15060: // 'preceding' '#'
|
|
case 15061: // 'preceding-sibling' '#'
|
|
case 15064: // 'processing-instruction' '#'
|
|
case 15066: // 'rename' '#'
|
|
case 15067: // 'replace' '#'
|
|
case 15068: // 'return' '#'
|
|
case 15069: // 'returning' '#'
|
|
case 15070: // 'revalidation' '#'
|
|
case 15072: // 'satisfies' '#'
|
|
case 15073: // 'schema' '#'
|
|
case 15076: // 'score' '#'
|
|
case 15077: // 'self' '#'
|
|
case 15082: // 'sliding' '#'
|
|
case 15083: // 'some' '#'
|
|
case 15084: // 'stable' '#'
|
|
case 15085: // 'start' '#'
|
|
case 15088: // 'strict' '#'
|
|
case 15092: // 'text' '#'
|
|
case 15096: // 'to' '#'
|
|
case 15097: // 'treat' '#'
|
|
case 15098: // 'try' '#'
|
|
case 15099: // 'tumbling' '#'
|
|
case 15100: // 'type' '#'
|
|
case 15102: // 'union' '#'
|
|
case 15104: // 'unordered' '#'
|
|
case 15105: // 'updating' '#'
|
|
case 15108: // 'validate' '#'
|
|
case 15109: // 'value' '#'
|
|
case 15110: // 'variable' '#'
|
|
case 15111: // 'version' '#'
|
|
case 15114: // 'where' '#'
|
|
case 15115: // 'while' '#'
|
|
case 15118: // 'with' '#'
|
|
case 15122: // 'xquery' '#'
|
|
parse_FunctionItemExpr();
|
|
break;
|
|
case -10:
|
|
parse_BlockExpr();
|
|
break;
|
|
case -11:
|
|
parse_ObjectConstructor();
|
|
break;
|
|
case 68: // '['
|
|
parse_ArrayConstructor();
|
|
break;
|
|
case 278: // '{|'
|
|
parse_JSONSimpleObjectUnion();
|
|
break;
|
|
default:
|
|
parse_Constructor();
|
|
}
|
|
eventHandler.endNonterminal("PrimaryExpr", e0);
|
|
}
|
|
|
|
function try_PrimaryExpr()
|
|
{
|
|
switch (l1)
|
|
{
|
|
case 184: // 'namespace'
|
|
lookahead2W(254); // NCName^Token | S^WS | '#' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
break;
|
|
case 216: // 'processing-instruction'
|
|
lookahead2W(252); // NCName^Token | S^WS | '#' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'last' | 'lax' | 'le' | 'let' | 'loop' |
|
|
// 'lt' | 'mod' | 'modify' | 'module' | 'namespace' | 'namespace-node' | 'ne' |
|
|
// 'node' | 'nodes' | 'only' | 'option' | 'or' | 'order' | 'ordered' | 'ordering' |
|
|
// 'parent' | 'preceding' | 'preceding-sibling' | 'processing-instruction' |
|
|
// 'rename' | 'replace' | 'return' | 'returning' | 'revalidation' | 'satisfies' |
|
|
// 'schema' | 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' |
|
|
// 'some' | 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' |
|
|
// 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
break;
|
|
case 276: // '{'
|
|
lookahead2W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
break;
|
|
case 82: // 'attribute'
|
|
case 121: // 'element'
|
|
lookahead2W(257); // EQName^Token | S^WS | '#' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{'
|
|
break;
|
|
case 96: // 'comment'
|
|
case 244: // 'text'
|
|
lookahead2W(93); // S^WS | '#' | '(:' | '{'
|
|
break;
|
|
case 119: // 'document'
|
|
case 202: // 'ordered'
|
|
case 256: // 'unordered'
|
|
lookahead2W(139); // S^WS | '#' | '(' | '(:' | '{'
|
|
break;
|
|
case 6: // EQName^Token
|
|
case 70: // 'after'
|
|
case 72: // 'allowing'
|
|
case 73: // 'ancestor'
|
|
case 74: // 'ancestor-or-self'
|
|
case 75: // 'and'
|
|
case 78: // 'array'
|
|
case 79: // 'as'
|
|
case 80: // 'ascending'
|
|
case 81: // 'at'
|
|
case 83: // 'base-uri'
|
|
case 84: // 'before'
|
|
case 85: // 'boundary-space'
|
|
case 86: // 'break'
|
|
case 88: // 'case'
|
|
case 89: // 'cast'
|
|
case 90: // 'castable'
|
|
case 91: // 'catch'
|
|
case 93: // 'child'
|
|
case 94: // 'collation'
|
|
case 97: // 'constraint'
|
|
case 98: // 'construction'
|
|
case 101: // 'context'
|
|
case 102: // 'continue'
|
|
case 103: // 'copy'
|
|
case 104: // 'copy-namespaces'
|
|
case 105: // 'count'
|
|
case 106: // 'decimal-format'
|
|
case 108: // 'declare'
|
|
case 109: // 'default'
|
|
case 110: // 'delete'
|
|
case 111: // 'descendant'
|
|
case 112: // 'descendant-or-self'
|
|
case 113: // 'descending'
|
|
case 118: // 'div'
|
|
case 122: // 'else'
|
|
case 123: // 'empty'
|
|
case 125: // 'encoding'
|
|
case 126: // 'end'
|
|
case 128: // 'eq'
|
|
case 129: // 'every'
|
|
case 131: // 'except'
|
|
case 132: // 'exit'
|
|
case 133: // 'external'
|
|
case 134: // 'first'
|
|
case 135: // 'following'
|
|
case 136: // 'following-sibling'
|
|
case 137: // 'for'
|
|
case 141: // 'ft-option'
|
|
case 146: // 'ge'
|
|
case 148: // 'group'
|
|
case 150: // 'gt'
|
|
case 151: // 'idiv'
|
|
case 153: // 'import'
|
|
case 154: // 'in'
|
|
case 155: // 'index'
|
|
case 159: // 'insert'
|
|
case 160: // 'instance'
|
|
case 161: // 'integrity'
|
|
case 162: // 'intersect'
|
|
case 163: // 'into'
|
|
case 164: // 'is'
|
|
case 167: // 'json-item'
|
|
case 170: // 'last'
|
|
case 171: // 'lax'
|
|
case 172: // 'le'
|
|
case 174: // 'let'
|
|
case 176: // 'loop'
|
|
case 178: // 'lt'
|
|
case 180: // 'mod'
|
|
case 181: // 'modify'
|
|
case 182: // 'module'
|
|
case 186: // 'ne'
|
|
case 192: // 'nodes'
|
|
case 194: // 'object'
|
|
case 198: // 'only'
|
|
case 199: // 'option'
|
|
case 200: // 'or'
|
|
case 201: // 'order'
|
|
case 203: // 'ordering'
|
|
case 206: // 'parent'
|
|
case 212: // 'preceding'
|
|
case 213: // 'preceding-sibling'
|
|
case 218: // 'rename'
|
|
case 219: // 'replace'
|
|
case 220: // 'return'
|
|
case 221: // 'returning'
|
|
case 222: // 'revalidation'
|
|
case 224: // 'satisfies'
|
|
case 225: // 'schema'
|
|
case 228: // 'score'
|
|
case 229: // 'self'
|
|
case 234: // 'sliding'
|
|
case 235: // 'some'
|
|
case 236: // 'stable'
|
|
case 237: // 'start'
|
|
case 240: // 'strict'
|
|
case 248: // 'to'
|
|
case 249: // 'treat'
|
|
case 250: // 'try'
|
|
case 251: // 'tumbling'
|
|
case 252: // 'type'
|
|
case 254: // 'union'
|
|
case 257: // 'updating'
|
|
case 260: // 'validate'
|
|
case 261: // 'value'
|
|
case 262: // 'variable'
|
|
case 263: // 'version'
|
|
case 266: // 'where'
|
|
case 267: // 'while'
|
|
case 270: // 'with'
|
|
case 274: // 'xquery'
|
|
lookahead2W(92); // S^WS | '#' | '(' | '(:'
|
|
break;
|
|
default:
|
|
lk = l1;
|
|
}
|
|
if (lk == 2836 // '{' Wildcard
|
|
|| lk == 3348 // '{' EQName^Token
|
|
|| lk == 4372 // '{' IntegerLiteral
|
|
|| lk == 4884 // '{' DecimalLiteral
|
|
|| lk == 5396 // '{' DoubleLiteral
|
|
|| lk == 5908 // '{' StringLiteral
|
|
|| lk == 16148 // '{' '$'
|
|
|| lk == 16660 // '{' '%'
|
|
|| lk == 17684 // '{' '('
|
|
|| lk == 18196 // '{' '(#'
|
|
|| lk == 20756 // '{' '+'
|
|
|| lk == 21780 // '{' '-'
|
|
|| lk == 22804 // '{' '.'
|
|
|| lk == 23316 // '{' '..'
|
|
|| lk == 23828 // '{' '/'
|
|
|| lk == 24340 // '{' '//'
|
|
|| lk == 27924 // '{' '<'
|
|
|| lk == 28436 // '{' '<!--'
|
|
|| lk == 30484 // '{' '<?'
|
|
|| lk == 34068 // '{' '@'
|
|
|| lk == 35092 // '{' '['
|
|
|| lk == 36116 // '{' 'after'
|
|
|| lk == 37140 // '{' 'allowing'
|
|
|| lk == 37652 // '{' 'ancestor'
|
|
|| lk == 38164 // '{' 'ancestor-or-self'
|
|
|| lk == 38676 // '{' 'and'
|
|
|| lk == 39700 // '{' 'append'
|
|
|| lk == 40212 // '{' 'array'
|
|
|| lk == 40724 // '{' 'as'
|
|
|| lk == 41236 // '{' 'ascending'
|
|
|| lk == 41748 // '{' 'at'
|
|
|| lk == 42260 // '{' 'attribute'
|
|
|| lk == 42772 // '{' 'base-uri'
|
|
|| lk == 43284 // '{' 'before'
|
|
|| lk == 43796 // '{' 'boundary-space'
|
|
|| lk == 44308 // '{' 'break'
|
|
|| lk == 45332 // '{' 'case'
|
|
|| lk == 45844 // '{' 'cast'
|
|
|| lk == 46356 // '{' 'castable'
|
|
|| lk == 46868 // '{' 'catch'
|
|
|| lk == 47892 // '{' 'child'
|
|
|| lk == 48404 // '{' 'collation'
|
|
|| lk == 49428 // '{' 'comment'
|
|
|| lk == 49940 // '{' 'constraint'
|
|
|| lk == 50452 // '{' 'construction'
|
|
|| lk == 51988 // '{' 'context'
|
|
|| lk == 52500 // '{' 'continue'
|
|
|| lk == 53012 // '{' 'copy'
|
|
|| lk == 53524 // '{' 'copy-namespaces'
|
|
|| lk == 54036 // '{' 'count'
|
|
|| lk == 54548 // '{' 'decimal-format'
|
|
|| lk == 55572 // '{' 'declare'
|
|
|| lk == 56084 // '{' 'default'
|
|
|| lk == 56596 // '{' 'delete'
|
|
|| lk == 57108 // '{' 'descendant'
|
|
|| lk == 57620 // '{' 'descendant-or-self'
|
|
|| lk == 58132 // '{' 'descending'
|
|
|| lk == 60692 // '{' 'div'
|
|
|| lk == 61204 // '{' 'document'
|
|
|| lk == 61716 // '{' 'document-node'
|
|
|| lk == 62228 // '{' 'element'
|
|
|| lk == 62740 // '{' 'else'
|
|
|| lk == 63252 // '{' 'empty'
|
|
|| lk == 63764 // '{' 'empty-sequence'
|
|
|| lk == 64276 // '{' 'encoding'
|
|
|| lk == 64788 // '{' 'end'
|
|
|| lk == 65812 // '{' 'eq'
|
|
|| lk == 66324 // '{' 'every'
|
|
|| lk == 67348 // '{' 'except'
|
|
|| lk == 67860 // '{' 'exit'
|
|
|| lk == 68372 // '{' 'external'
|
|
|| lk == 68884 // '{' 'first'
|
|
|| lk == 69396 // '{' 'following'
|
|
|| lk == 69908 // '{' 'following-sibling'
|
|
|| lk == 70420 // '{' 'for'
|
|
|| lk == 72468 // '{' 'ft-option'
|
|
|| lk == 74516 // '{' 'function'
|
|
|| lk == 75028 // '{' 'ge'
|
|
|| lk == 76052 // '{' 'group'
|
|
|| lk == 77076 // '{' 'gt'
|
|
|| lk == 77588 // '{' 'idiv'
|
|
|| lk == 78100 // '{' 'if'
|
|
|| lk == 78612 // '{' 'import'
|
|
|| lk == 79124 // '{' 'in'
|
|
|| lk == 79636 // '{' 'index'
|
|
|| lk == 81684 // '{' 'insert'
|
|
|| lk == 82196 // '{' 'instance'
|
|
|| lk == 82708 // '{' 'integrity'
|
|
|| lk == 83220 // '{' 'intersect'
|
|
|| lk == 83732 // '{' 'into'
|
|
|| lk == 84244 // '{' 'is'
|
|
|| lk == 84756 // '{' 'item'
|
|
|| lk == 85780 // '{' 'json-item'
|
|
|| lk == 87316 // '{' 'last'
|
|
|| lk == 87828 // '{' 'lax'
|
|
|| lk == 88340 // '{' 'le'
|
|
|| lk == 89364 // '{' 'let'
|
|
|| lk == 90388 // '{' 'loop'
|
|
|| lk == 91412 // '{' 'lt'
|
|
|| lk == 92436 // '{' 'mod'
|
|
|| lk == 92948 // '{' 'modify'
|
|
|| lk == 93460 // '{' 'module'
|
|
|| lk == 94484 // '{' 'namespace'
|
|
|| lk == 94996 // '{' 'namespace-node'
|
|
|| lk == 95508 // '{' 'ne'
|
|
|| lk == 98068 // '{' 'node'
|
|
|| lk == 98580 // '{' 'nodes'
|
|
|| lk == 99604 // '{' 'object'
|
|
|| lk == 101652 // '{' 'only'
|
|
|| lk == 102164 // '{' 'option'
|
|
|| lk == 102676 // '{' 'or'
|
|
|| lk == 103188 // '{' 'order'
|
|
|| lk == 103700 // '{' 'ordered'
|
|
|| lk == 104212 // '{' 'ordering'
|
|
|| lk == 105748 // '{' 'parent'
|
|
|| lk == 108820 // '{' 'preceding'
|
|
|| lk == 109332 // '{' 'preceding-sibling'
|
|
|| lk == 110868 // '{' 'processing-instruction'
|
|
|| lk == 111892 // '{' 'rename'
|
|
|| lk == 112404 // '{' 'replace'
|
|
|| lk == 112916 // '{' 'return'
|
|
|| lk == 113428 // '{' 'returning'
|
|
|| lk == 113940 // '{' 'revalidation'
|
|
|| lk == 114964 // '{' 'satisfies'
|
|
|| lk == 115476 // '{' 'schema'
|
|
|| lk == 115988 // '{' 'schema-attribute'
|
|
|| lk == 116500 // '{' 'schema-element'
|
|
|| lk == 117012 // '{' 'score'
|
|
|| lk == 117524 // '{' 'self'
|
|
|| lk == 120084 // '{' 'sliding'
|
|
|| lk == 120596 // '{' 'some'
|
|
|| lk == 121108 // '{' 'stable'
|
|
|| lk == 121620 // '{' 'start'
|
|
|| lk == 123156 // '{' 'strict'
|
|
|| lk == 124692 // '{' 'switch'
|
|
|| lk == 125204 // '{' 'text'
|
|
|| lk == 127252 // '{' 'to'
|
|
|| lk == 127764 // '{' 'treat'
|
|
|| lk == 128276 // '{' 'try'
|
|
|| lk == 128788 // '{' 'tumbling'
|
|
|| lk == 129300 // '{' 'type'
|
|
|| lk == 129812 // '{' 'typeswitch'
|
|
|| lk == 130324 // '{' 'union'
|
|
|| lk == 131348 // '{' 'unordered'
|
|
|| lk == 131860 // '{' 'updating'
|
|
|| lk == 133396 // '{' 'validate'
|
|
|| lk == 133908 // '{' 'value'
|
|
|| lk == 134420 // '{' 'variable'
|
|
|| lk == 134932 // '{' 'version'
|
|
|| lk == 136468 // '{' 'where'
|
|
|| lk == 136980 // '{' 'while'
|
|
|| lk == 138516 // '{' 'with'
|
|
|| lk == 140564 // '{' 'xquery'
|
|
|| lk == 141588 // '{' '{'
|
|
|| lk == 142612 // '{' '{|'
|
|
|| lk == 144660) // '{' '}'
|
|
{
|
|
lk = memoized(12, e0);
|
|
if (lk == 0)
|
|
{
|
|
var b0A = b0; var e0A = e0; var l1A = l1;
|
|
var b1A = b1; var e1A = e1; var l2A = l2;
|
|
var b2A = b2; var e2A = e2;
|
|
try
|
|
{
|
|
try_BlockExpr();
|
|
memoize(12, e0A, -10);
|
|
lk = -14;
|
|
}
|
|
catch (p10A)
|
|
{
|
|
lk = -11;
|
|
b0 = b0A; e0 = e0A; l1 = l1A; if (l1 == 0) {end = e0A;} else {
|
|
b1 = b1A; e1 = e1A; l2 = l2A; if (l2 == 0) {end = e1A;} else {
|
|
b2 = b2A; e2 = e2A; end = e2A; }}
|
|
memoize(12, e0A, -11);
|
|
}
|
|
}
|
|
}
|
|
switch (lk)
|
|
{
|
|
case 8: // IntegerLiteral
|
|
case 9: // DecimalLiteral
|
|
case 10: // DoubleLiteral
|
|
case 11: // StringLiteral
|
|
try_Literal();
|
|
break;
|
|
case 31: // '$'
|
|
try_VarRef();
|
|
break;
|
|
case 34: // '('
|
|
try_ParenthesizedExpr();
|
|
break;
|
|
case 44: // '.'
|
|
try_ContextItemExpr();
|
|
break;
|
|
case 17414: // EQName^Token '('
|
|
case 17478: // 'after' '('
|
|
case 17480: // 'allowing' '('
|
|
case 17481: // 'ancestor' '('
|
|
case 17482: // 'ancestor-or-self' '('
|
|
case 17483: // 'and' '('
|
|
case 17486: // 'array' '('
|
|
case 17487: // 'as' '('
|
|
case 17488: // 'ascending' '('
|
|
case 17489: // 'at' '('
|
|
case 17491: // 'base-uri' '('
|
|
case 17492: // 'before' '('
|
|
case 17493: // 'boundary-space' '('
|
|
case 17494: // 'break' '('
|
|
case 17496: // 'case' '('
|
|
case 17497: // 'cast' '('
|
|
case 17498: // 'castable' '('
|
|
case 17499: // 'catch' '('
|
|
case 17501: // 'child' '('
|
|
case 17502: // 'collation' '('
|
|
case 17505: // 'constraint' '('
|
|
case 17506: // 'construction' '('
|
|
case 17509: // 'context' '('
|
|
case 17510: // 'continue' '('
|
|
case 17511: // 'copy' '('
|
|
case 17512: // 'copy-namespaces' '('
|
|
case 17513: // 'count' '('
|
|
case 17514: // 'decimal-format' '('
|
|
case 17516: // 'declare' '('
|
|
case 17517: // 'default' '('
|
|
case 17518: // 'delete' '('
|
|
case 17519: // 'descendant' '('
|
|
case 17520: // 'descendant-or-self' '('
|
|
case 17521: // 'descending' '('
|
|
case 17526: // 'div' '('
|
|
case 17527: // 'document' '('
|
|
case 17530: // 'else' '('
|
|
case 17531: // 'empty' '('
|
|
case 17533: // 'encoding' '('
|
|
case 17534: // 'end' '('
|
|
case 17536: // 'eq' '('
|
|
case 17537: // 'every' '('
|
|
case 17539: // 'except' '('
|
|
case 17540: // 'exit' '('
|
|
case 17541: // 'external' '('
|
|
case 17542: // 'first' '('
|
|
case 17543: // 'following' '('
|
|
case 17544: // 'following-sibling' '('
|
|
case 17545: // 'for' '('
|
|
case 17549: // 'ft-option' '('
|
|
case 17554: // 'ge' '('
|
|
case 17556: // 'group' '('
|
|
case 17558: // 'gt' '('
|
|
case 17559: // 'idiv' '('
|
|
case 17561: // 'import' '('
|
|
case 17562: // 'in' '('
|
|
case 17563: // 'index' '('
|
|
case 17567: // 'insert' '('
|
|
case 17568: // 'instance' '('
|
|
case 17569: // 'integrity' '('
|
|
case 17570: // 'intersect' '('
|
|
case 17571: // 'into' '('
|
|
case 17572: // 'is' '('
|
|
case 17575: // 'json-item' '('
|
|
case 17578: // 'last' '('
|
|
case 17579: // 'lax' '('
|
|
case 17580: // 'le' '('
|
|
case 17582: // 'let' '('
|
|
case 17584: // 'loop' '('
|
|
case 17586: // 'lt' '('
|
|
case 17588: // 'mod' '('
|
|
case 17589: // 'modify' '('
|
|
case 17590: // 'module' '('
|
|
case 17592: // 'namespace' '('
|
|
case 17594: // 'ne' '('
|
|
case 17600: // 'nodes' '('
|
|
case 17602: // 'object' '('
|
|
case 17606: // 'only' '('
|
|
case 17607: // 'option' '('
|
|
case 17608: // 'or' '('
|
|
case 17609: // 'order' '('
|
|
case 17610: // 'ordered' '('
|
|
case 17611: // 'ordering' '('
|
|
case 17614: // 'parent' '('
|
|
case 17620: // 'preceding' '('
|
|
case 17621: // 'preceding-sibling' '('
|
|
case 17626: // 'rename' '('
|
|
case 17627: // 'replace' '('
|
|
case 17628: // 'return' '('
|
|
case 17629: // 'returning' '('
|
|
case 17630: // 'revalidation' '('
|
|
case 17632: // 'satisfies' '('
|
|
case 17633: // 'schema' '('
|
|
case 17636: // 'score' '('
|
|
case 17637: // 'self' '('
|
|
case 17642: // 'sliding' '('
|
|
case 17643: // 'some' '('
|
|
case 17644: // 'stable' '('
|
|
case 17645: // 'start' '('
|
|
case 17648: // 'strict' '('
|
|
case 17656: // 'to' '('
|
|
case 17657: // 'treat' '('
|
|
case 17658: // 'try' '('
|
|
case 17659: // 'tumbling' '('
|
|
case 17660: // 'type' '('
|
|
case 17662: // 'union' '('
|
|
case 17664: // 'unordered' '('
|
|
case 17665: // 'updating' '('
|
|
case 17668: // 'validate' '('
|
|
case 17669: // 'value' '('
|
|
case 17670: // 'variable' '('
|
|
case 17671: // 'version' '('
|
|
case 17674: // 'where' '('
|
|
case 17675: // 'while' '('
|
|
case 17678: // 'with' '('
|
|
case 17682: // 'xquery' '('
|
|
try_FunctionCall();
|
|
break;
|
|
case 141514: // 'ordered' '{'
|
|
try_OrderedExpr();
|
|
break;
|
|
case 141568: // 'unordered' '{'
|
|
try_UnorderedExpr();
|
|
break;
|
|
case 32: // '%'
|
|
case 120: // 'document-node'
|
|
case 124: // 'empty-sequence'
|
|
case 145: // 'function'
|
|
case 152: // 'if'
|
|
case 165: // 'item'
|
|
case 185: // 'namespace-node'
|
|
case 191: // 'node'
|
|
case 226: // 'schema-attribute'
|
|
case 227: // 'schema-element'
|
|
case 243: // 'switch'
|
|
case 253: // 'typeswitch'
|
|
case 14854: // EQName^Token '#'
|
|
case 14918: // 'after' '#'
|
|
case 14920: // 'allowing' '#'
|
|
case 14921: // 'ancestor' '#'
|
|
case 14922: // 'ancestor-or-self' '#'
|
|
case 14923: // 'and' '#'
|
|
case 14926: // 'array' '#'
|
|
case 14927: // 'as' '#'
|
|
case 14928: // 'ascending' '#'
|
|
case 14929: // 'at' '#'
|
|
case 14930: // 'attribute' '#'
|
|
case 14931: // 'base-uri' '#'
|
|
case 14932: // 'before' '#'
|
|
case 14933: // 'boundary-space' '#'
|
|
case 14934: // 'break' '#'
|
|
case 14936: // 'case' '#'
|
|
case 14937: // 'cast' '#'
|
|
case 14938: // 'castable' '#'
|
|
case 14939: // 'catch' '#'
|
|
case 14941: // 'child' '#'
|
|
case 14942: // 'collation' '#'
|
|
case 14944: // 'comment' '#'
|
|
case 14945: // 'constraint' '#'
|
|
case 14946: // 'construction' '#'
|
|
case 14949: // 'context' '#'
|
|
case 14950: // 'continue' '#'
|
|
case 14951: // 'copy' '#'
|
|
case 14952: // 'copy-namespaces' '#'
|
|
case 14953: // 'count' '#'
|
|
case 14954: // 'decimal-format' '#'
|
|
case 14956: // 'declare' '#'
|
|
case 14957: // 'default' '#'
|
|
case 14958: // 'delete' '#'
|
|
case 14959: // 'descendant' '#'
|
|
case 14960: // 'descendant-or-self' '#'
|
|
case 14961: // 'descending' '#'
|
|
case 14966: // 'div' '#'
|
|
case 14967: // 'document' '#'
|
|
case 14969: // 'element' '#'
|
|
case 14970: // 'else' '#'
|
|
case 14971: // 'empty' '#'
|
|
case 14973: // 'encoding' '#'
|
|
case 14974: // 'end' '#'
|
|
case 14976: // 'eq' '#'
|
|
case 14977: // 'every' '#'
|
|
case 14979: // 'except' '#'
|
|
case 14980: // 'exit' '#'
|
|
case 14981: // 'external' '#'
|
|
case 14982: // 'first' '#'
|
|
case 14983: // 'following' '#'
|
|
case 14984: // 'following-sibling' '#'
|
|
case 14985: // 'for' '#'
|
|
case 14989: // 'ft-option' '#'
|
|
case 14994: // 'ge' '#'
|
|
case 14996: // 'group' '#'
|
|
case 14998: // 'gt' '#'
|
|
case 14999: // 'idiv' '#'
|
|
case 15001: // 'import' '#'
|
|
case 15002: // 'in' '#'
|
|
case 15003: // 'index' '#'
|
|
case 15007: // 'insert' '#'
|
|
case 15008: // 'instance' '#'
|
|
case 15009: // 'integrity' '#'
|
|
case 15010: // 'intersect' '#'
|
|
case 15011: // 'into' '#'
|
|
case 15012: // 'is' '#'
|
|
case 15015: // 'json-item' '#'
|
|
case 15018: // 'last' '#'
|
|
case 15019: // 'lax' '#'
|
|
case 15020: // 'le' '#'
|
|
case 15022: // 'let' '#'
|
|
case 15024: // 'loop' '#'
|
|
case 15026: // 'lt' '#'
|
|
case 15028: // 'mod' '#'
|
|
case 15029: // 'modify' '#'
|
|
case 15030: // 'module' '#'
|
|
case 15032: // 'namespace' '#'
|
|
case 15034: // 'ne' '#'
|
|
case 15040: // 'nodes' '#'
|
|
case 15042: // 'object' '#'
|
|
case 15046: // 'only' '#'
|
|
case 15047: // 'option' '#'
|
|
case 15048: // 'or' '#'
|
|
case 15049: // 'order' '#'
|
|
case 15050: // 'ordered' '#'
|
|
case 15051: // 'ordering' '#'
|
|
case 15054: // 'parent' '#'
|
|
case 15060: // 'preceding' '#'
|
|
case 15061: // 'preceding-sibling' '#'
|
|
case 15064: // 'processing-instruction' '#'
|
|
case 15066: // 'rename' '#'
|
|
case 15067: // 'replace' '#'
|
|
case 15068: // 'return' '#'
|
|
case 15069: // 'returning' '#'
|
|
case 15070: // 'revalidation' '#'
|
|
case 15072: // 'satisfies' '#'
|
|
case 15073: // 'schema' '#'
|
|
case 15076: // 'score' '#'
|
|
case 15077: // 'self' '#'
|
|
case 15082: // 'sliding' '#'
|
|
case 15083: // 'some' '#'
|
|
case 15084: // 'stable' '#'
|
|
case 15085: // 'start' '#'
|
|
case 15088: // 'strict' '#'
|
|
case 15092: // 'text' '#'
|
|
case 15096: // 'to' '#'
|
|
case 15097: // 'treat' '#'
|
|
case 15098: // 'try' '#'
|
|
case 15099: // 'tumbling' '#'
|
|
case 15100: // 'type' '#'
|
|
case 15102: // 'union' '#'
|
|
case 15104: // 'unordered' '#'
|
|
case 15105: // 'updating' '#'
|
|
case 15108: // 'validate' '#'
|
|
case 15109: // 'value' '#'
|
|
case 15110: // 'variable' '#'
|
|
case 15111: // 'version' '#'
|
|
case 15114: // 'where' '#'
|
|
case 15115: // 'while' '#'
|
|
case 15118: // 'with' '#'
|
|
case 15122: // 'xquery' '#'
|
|
try_FunctionItemExpr();
|
|
break;
|
|
case -10:
|
|
try_BlockExpr();
|
|
break;
|
|
case -11:
|
|
try_ObjectConstructor();
|
|
break;
|
|
case 68: // '['
|
|
try_ArrayConstructor();
|
|
break;
|
|
case 278: // '{|'
|
|
try_JSONSimpleObjectUnion();
|
|
break;
|
|
case -14:
|
|
break;
|
|
default:
|
|
try_Constructor();
|
|
}
|
|
}
|
|
|
|
function parse_JSONSimpleObjectUnion()
|
|
{
|
|
eventHandler.startNonterminal("JSONSimpleObjectUnion", e0);
|
|
shift(278); // '{|'
|
|
lookahead1W(272); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '|}'
|
|
if (l1 != 281) // '|}'
|
|
{
|
|
whitespace();
|
|
parse_Expr();
|
|
}
|
|
shift(281); // '|}'
|
|
eventHandler.endNonterminal("JSONSimpleObjectUnion", e0);
|
|
}
|
|
|
|
function try_JSONSimpleObjectUnion()
|
|
{
|
|
shiftT(278); // '{|'
|
|
lookahead1W(272); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '|}'
|
|
if (l1 != 281) // '|}'
|
|
{
|
|
try_Expr();
|
|
}
|
|
shiftT(281); // '|}'
|
|
}
|
|
|
|
function parse_ObjectConstructor()
|
|
{
|
|
eventHandler.startNonterminal("ObjectConstructor", e0);
|
|
shift(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
if (l1 != 282) // '}'
|
|
{
|
|
whitespace();
|
|
parse_PairConstructor();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shift(41); // ','
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_PairConstructor();
|
|
}
|
|
}
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("ObjectConstructor", e0);
|
|
}
|
|
|
|
function try_ObjectConstructor()
|
|
{
|
|
shiftT(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
if (l1 != 282) // '}'
|
|
{
|
|
try_PairConstructor();
|
|
for (;;)
|
|
{
|
|
if (l1 != 41) // ','
|
|
{
|
|
break;
|
|
}
|
|
shiftT(41); // ','
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_PairConstructor();
|
|
}
|
|
}
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_PairConstructor()
|
|
{
|
|
eventHandler.startNonterminal("PairConstructor", e0);
|
|
parse_ExprSingle();
|
|
shift(49); // ':'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
whitespace();
|
|
parse_ExprSingle();
|
|
eventHandler.endNonterminal("PairConstructor", e0);
|
|
}
|
|
|
|
function try_PairConstructor()
|
|
{
|
|
try_ExprSingle();
|
|
shiftT(49); // ':'
|
|
lookahead1W(267); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
try_ExprSingle();
|
|
}
|
|
|
|
function parse_ArrayConstructor()
|
|
{
|
|
eventHandler.startNonterminal("ArrayConstructor", e0);
|
|
shift(68); // '['
|
|
lookahead1W(271); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | ']' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
if (l1 != 69) // ']'
|
|
{
|
|
whitespace();
|
|
parse_Expr();
|
|
}
|
|
shift(69); // ']'
|
|
eventHandler.endNonterminal("ArrayConstructor", e0);
|
|
}
|
|
|
|
function try_ArrayConstructor()
|
|
{
|
|
shiftT(68); // '['
|
|
lookahead1W(271); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | ']' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|'
|
|
if (l1 != 69) // ']'
|
|
{
|
|
try_Expr();
|
|
}
|
|
shiftT(69); // ']'
|
|
}
|
|
|
|
function parse_BlockExpr()
|
|
{
|
|
eventHandler.startNonterminal("BlockExpr", e0);
|
|
shift(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
whitespace();
|
|
parse_StatementsAndOptionalExpr();
|
|
shift(282); // '}'
|
|
eventHandler.endNonterminal("BlockExpr", e0);
|
|
}
|
|
|
|
function try_BlockExpr()
|
|
{
|
|
shiftT(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
try_StatementsAndOptionalExpr();
|
|
shiftT(282); // '}'
|
|
}
|
|
|
|
function parse_FunctionDecl()
|
|
{
|
|
eventHandler.startNonterminal("FunctionDecl", e0);
|
|
shift(145); // 'function'
|
|
lookahead1W(253); // EQName^Token | S^WS | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery'
|
|
whitespace();
|
|
parse_EQName();
|
|
lookahead1W(22); // S^WS | '(' | '(:'
|
|
shift(34); // '('
|
|
lookahead1W(94); // S^WS | '$' | '(:' | ')'
|
|
if (l1 == 31) // '$'
|
|
{
|
|
whitespace();
|
|
parse_ParamList();
|
|
}
|
|
shift(37); // ')'
|
|
lookahead1W(148); // S^WS | '(:' | 'as' | 'external' | '{'
|
|
if (l1 == 79) // 'as'
|
|
{
|
|
shift(79); // 'as'
|
|
lookahead1W(259); // EQName^Token | S^WS | '%' | '(' | '(:' | 'after' | 'allowing' | 'ancestor' |
|
|
// 'ancestor-or-self' | 'and' | 'array' | 'as' | 'ascending' | 'at' | 'attribute' |
|
|
// 'base-uri' | 'before' | 'boundary-space' | 'break' | 'case' | 'cast' |
|
|
// 'castable' | 'catch' | 'child' | 'collation' | 'comment' | 'constraint' |
|
|
// 'construction' | 'context' | 'continue' | 'copy' | 'copy-namespaces' | 'count' |
|
|
// 'decimal-format' | 'declare' | 'default' | 'delete' | 'descendant' |
|
|
// 'descendant-or-self' | 'descending' | 'div' | 'document' | 'document-node' |
|
|
// 'element' | 'else' | 'empty' | 'empty-sequence' | 'encoding' | 'end' | 'eq' |
|
|
// 'every' | 'except' | 'exit' | 'external' | 'first' | 'following' |
|
|
// 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' | 'group' | 'gt' |
|
|
// 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' | 'instance' | 'integrity' |
|
|
// 'intersect' | 'into' | 'is' | 'item' | 'json-item' | 'last' | 'lax' | 'le' |
|
|
// 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' | 'namespace' |
|
|
// 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' | 'option' |
|
|
// 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'structured-item' | 'switch' | 'text' | 'to' |
|
|
// 'treat' | 'try' | 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' |
|
|
// 'updating' | 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' |
|
|
// 'with' | 'xquery'
|
|
whitespace();
|
|
parse_SequenceType();
|
|
}
|
|
lookahead1W(118); // S^WS | '(:' | 'external' | '{'
|
|
switch (l1)
|
|
{
|
|
case 276: // '{'
|
|
shift(276); // '{'
|
|
lookahead1W(273); // Wildcard | EQName^Token | IntegerLiteral | DecimalLiteral | DoubleLiteral |
|
|
// StringLiteral | S^WS | '$' | '%' | '(' | '(#' | '(:' | '+' | '-' | '.' | '..' |
|
|
// '/' | '//' | '<' | '<!--' | '<?' | '@' | '[' | 'after' | 'allowing' |
|
|
// 'ancestor' | 'ancestor-or-self' | 'and' | 'append' | 'array' | 'as' |
|
|
// 'ascending' | 'at' | 'attribute' | 'base-uri' | 'before' | 'boundary-space' |
|
|
// 'break' | 'case' | 'cast' | 'castable' | 'catch' | 'child' | 'collation' |
|
|
// 'comment' | 'constraint' | 'construction' | 'context' | 'continue' | 'copy' |
|
|
// 'copy-namespaces' | 'count' | 'decimal-format' | 'declare' | 'default' |
|
|
// 'delete' | 'descendant' | 'descendant-or-self' | 'descending' | 'div' |
|
|
// 'document' | 'document-node' | 'element' | 'else' | 'empty' | 'empty-sequence' |
|
|
// 'encoding' | 'end' | 'eq' | 'every' | 'except' | 'exit' | 'external' | 'first' |
|
|
// 'following' | 'following-sibling' | 'for' | 'ft-option' | 'function' | 'ge' |
|
|
// 'group' | 'gt' | 'idiv' | 'if' | 'import' | 'in' | 'index' | 'insert' |
|
|
// 'instance' | 'integrity' | 'intersect' | 'into' | 'is' | 'item' | 'json-item' |
|
|
// 'last' | 'lax' | 'le' | 'let' | 'loop' | 'lt' | 'mod' | 'modify' | 'module' |
|
|
// 'namespace' | 'namespace-node' | 'ne' | 'node' | 'nodes' | 'object' | 'only' |
|
|
// 'option' | 'or' | 'order' | 'ordered' | 'ordering' | 'parent' | 'preceding' |
|
|
// 'preceding-sibling' | 'processing-instruction' | 'rename' | 'replace' |
|
|
// 'return' | 'returning' | 'revalidation' | 'satisfies' | 'schema' |
|
|
// 'schema-attribute' | 'schema-element' | 'score' | 'self' | 'sliding' | 'some' |
|
|
// 'stable' | 'start' | 'strict' | 'switch' | 'text' | 'to' | 'treat' | 'try' |
|
|
// 'tumbling' | 'type' | 'typeswitch' | 'union' | 'unordered' | 'updating' |
|
|
// 'validate' | 'value' | 'variable' | 'version' | 'where' | 'while' | 'with' |
|
|
// 'xquery' | '{' | '{|' | '}'
|
|
whitespace();
|
|
parse_StatementsAndOptionalExpr();
|
|
shift(282); // '}'
|
|
break;
|
|
default:
|
|
shift(133); // 'external'
|
|
}
|
|
eventHandler.endNonterminal("FunctionDecl", e0);
|
|
}
|
|
|
|
var lk, b0, e0;
|
|
var l1, b1, e1;
|
|
var l2, b2, e2;
|
|
var bx, ex, sx, lx, tx;
|
|
var eventHandler;
|
|
var memo;
|
|
|
|
function memoize(i, e, v)
|
|
{
|
|
memo[(e << 4) + i] = v;
|
|
}
|
|
|
|
function memoized(i, e)
|
|
{
|
|
var v = memo[(e << 4) + i];
|
|
return typeof v != "undefined" ? v : 0;
|
|
}
|
|
|
|
function error(b, e, s, l, t)
|
|
{
|
|
if (e > ex)
|
|
{
|
|
bx = b;
|
|
ex = e;
|
|
sx = s;
|
|
lx = l;
|
|
tx = t;
|
|
}
|
|
throw new self.ParseException(bx, ex, sx, lx, tx);
|
|
}
|
|
|
|
function shift(t)
|
|
{
|
|
if (l1 == t)
|
|
{
|
|
whitespace();
|
|
eventHandler.terminal(XQueryParser.TOKEN[l1], b1, e1 > size ? size : e1);
|
|
b0 = b1; e0 = e1; l1 = l2; if (l1 != 0) {
|
|
b1 = b2; e1 = e2; l2 = 0; }
|
|
}
|
|
else
|
|
{
|
|
error(b1, e1, 0, l1, t);
|
|
}
|
|
}
|
|
|
|
function shiftT(t)
|
|
{
|
|
if (l1 == t)
|
|
{
|
|
b0 = b1; e0 = e1; l1 = l2; if (l1 != 0) {
|
|
b1 = b2; e1 = e2; l2 = 0; }
|
|
}
|
|
else
|
|
{
|
|
error(b1, e1, 0, l1, t);
|
|
}
|
|
}
|
|
|
|
function skip(code)
|
|
{
|
|
var b0W = b0; var e0W = e0; var l1W = l1;
|
|
var b1W = b1; var e1W = e1;
|
|
|
|
l1 = code; b1 = begin; e1 = end;
|
|
l2 = 0;
|
|
|
|
try_Whitespace();
|
|
|
|
b0 = b0W; e0 = e0W; l1 = l1W; if (l1 != 0) {
|
|
b1 = b1W; e1 = e1W; }
|
|
}
|
|
|
|
function whitespace()
|
|
{
|
|
if (e0 != b1)
|
|
{
|
|
b0 = e0;
|
|
e0 = b1;
|
|
eventHandler.whitespace(b0, e0);
|
|
}
|
|
}
|
|
|
|
function matchW(set)
|
|
{
|
|
var code;
|
|
for (;;)
|
|
{
|
|
code = match(set);
|
|
if (code != 22) // S^WS
|
|
{
|
|
if (code != 36) // '(:'
|
|
{
|
|
break;
|
|
}
|
|
skip(code);
|
|
}
|
|
}
|
|
return code;
|
|
}
|
|
|
|
function lookahead1W(set)
|
|
{
|
|
if (l1 == 0)
|
|
{
|
|
l1 = matchW(set);
|
|
b1 = begin;
|
|
e1 = end;
|
|
}
|
|
}
|
|
|
|
function lookahead2W(set)
|
|
{
|
|
if (l2 == 0)
|
|
{
|
|
l2 = matchW(set);
|
|
b2 = begin;
|
|
e2 = end;
|
|
}
|
|
lk = (l2 << 9) | l1;
|
|
}
|
|
|
|
function lookahead1(set)
|
|
{
|
|
if (l1 == 0)
|
|
{
|
|
l1 = match(set);
|
|
b1 = begin;
|
|
e1 = end;
|
|
}
|
|
}
|
|
|
|
function lookahead2(set)
|
|
{
|
|
if (l2 == 0)
|
|
{
|
|
l2 = match(set);
|
|
b2 = begin;
|
|
e2 = end;
|
|
}
|
|
lk = (l2 << 9) | l1;
|
|
}
|
|
|
|
var input;
|
|
var size;
|
|
var begin;
|
|
var end;
|
|
|
|
function match(tokenSetId)
|
|
{
|
|
var nonbmp = false;
|
|
begin = end;
|
|
var current = end;
|
|
var result = XQueryParser.INITIAL[tokenSetId];
|
|
var state = 0;
|
|
|
|
for (var code = result & 4095; code != 0; )
|
|
{
|
|
var charclass;
|
|
var c0 = current < size ? input.charCodeAt(current) : 0;
|
|
++current;
|
|
if (c0 < 0x80)
|
|
{
|
|
charclass = XQueryParser.MAP0[c0];
|
|
}
|
|
else if (c0 < 0xd800)
|
|
{
|
|
var c1 = c0 >> 4;
|
|
charclass = XQueryParser.MAP1[(c0 & 15) + XQueryParser.MAP1[(c1 & 31) + XQueryParser.MAP1[c1 >> 5]]];
|
|
}
|
|
else
|
|
{
|
|
if (c0 < 0xdc00)
|
|
{
|
|
var c1 = current < size ? input.charCodeAt(current) : 0;
|
|
if (c1 >= 0xdc00 && c1 < 0xe000)
|
|
{
|
|
++current;
|
|
c0 = ((c0 & 0x3ff) << 10) + (c1 & 0x3ff) + 0x10000;
|
|
nonbmp = true;
|
|
}
|
|
}
|
|
var lo = 0, hi = 5;
|
|
for (var m = 3; ; m = (hi + lo) >> 1)
|
|
{
|
|
if (XQueryParser.MAP2[m] > c0) hi = m - 1;
|
|
else if (XQueryParser.MAP2[6 + m] < c0) lo = m + 1;
|
|
else {charclass = XQueryParser.MAP2[12 + m]; break;}
|
|
if (lo > hi) {charclass = 0; break;}
|
|
}
|
|
}
|
|
|
|
state = code;
|
|
var i0 = (charclass << 12) + code - 1;
|
|
code = XQueryParser.TRANSITION[(i0 & 15) + XQueryParser.TRANSITION[i0 >> 4]];
|
|
|
|
if (code > 4095)
|
|
{
|
|
result = code;
|
|
code &= 4095;
|
|
end = current;
|
|
}
|
|
}
|
|
|
|
result >>= 12;
|
|
if (result == 0)
|
|
{
|
|
end = current - 1;
|
|
var c1 = end < size ? input.charCodeAt(end) : 0;
|
|
if (c1 >= 0xdc00 && c1 < 0xe000) --end;
|
|
return error(begin, end, state, -1, -1);
|
|
}
|
|
|
|
if (nonbmp)
|
|
{
|
|
for (var i = result >> 9; i > 0; --i)
|
|
{
|
|
--end;
|
|
var c1 = end < size ? input.charCodeAt(end) : 0;
|
|
if (c1 >= 0xdc00 && c1 < 0xe000) --end;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
end -= result >> 9;
|
|
}
|
|
|
|
return (result & 511) - 1;
|
|
}
|
|
}
|
|
|
|
XQueryParser.getTokenSet = function(tokenSetId)
|
|
{
|
|
var set = [];
|
|
var s = tokenSetId < 0 ? - tokenSetId : INITIAL[tokenSetId] & 4095;
|
|
for (var i = 0; i < 284; i += 32)
|
|
{
|
|
var j = i;
|
|
var i0 = (i >> 5) * 3684 + s - 1;
|
|
var i1 = i0 >> 2;
|
|
var i2 = i1 >> 2;
|
|
var f = XQueryParser.EXPECTED[(i0 & 3) + XQueryParser.EXPECTED[(i1 & 3) + XQueryParser.EXPECTED[(i2 & 7) + XQueryParser.EXPECTED[i2 >> 3]]]];
|
|
for ( ; f != 0; f >>>= 1, ++j)
|
|
{
|
|
if ((f & 1) != 0)
|
|
{
|
|
set.push(XQueryParser.TOKEN[j]);
|
|
}
|
|
}
|
|
}
|
|
return set;
|
|
};
|
|
|
|
XQueryParser.MAP0 =
|
|
[
|
|
/* 0 */ 70, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4,
|
|
/* 36 */ 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, 19, 20, 21, 22, 23,
|
|
/* 64 */ 24, 25, 26, 27, 28, 29, 26, 30, 30, 30, 30, 30, 31, 32, 33, 30, 30, 34, 30, 30, 35, 30, 30, 30, 36, 30, 30,
|
|
/* 91 */ 37, 38, 39, 38, 30, 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
|
|
/* 118 */ 61, 62, 63, 64, 65, 66, 67, 68, 38, 38
|
|
];
|
|
|
|
XQueryParser.MAP1 =
|
|
[
|
|
/* 0 */ 108, 124, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 156, 181, 181, 181, 181,
|
|
/* 21 */ 181, 214, 215, 213, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214,
|
|
/* 42 */ 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214,
|
|
/* 63 */ 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214,
|
|
/* 84 */ 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214, 214,
|
|
/* 105 */ 214, 214, 214, 247, 261, 277, 293, 309, 355, 371, 387, 423, 423, 423, 415, 339, 331, 339, 331, 339, 339,
|
|
/* 126 */ 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 440, 440, 440, 440, 440, 440, 440,
|
|
/* 147 */ 324, 339, 339, 339, 339, 339, 339, 339, 339, 401, 423, 423, 424, 422, 423, 423, 339, 339, 339, 339, 339,
|
|
/* 168 */ 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 423, 423, 423, 423, 423, 423, 423, 423,
|
|
/* 189 */ 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423,
|
|
/* 210 */ 423, 423, 423, 338, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339,
|
|
/* 231 */ 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 423, 70, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 256 */ 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
|
|
/* 290 */ 14, 15, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 26, 30,
|
|
/* 317 */ 30, 30, 30, 30, 31, 32, 33, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 38, 30, 30, 30, 30, 30,
|
|
/* 344 */ 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 34, 30, 30, 35, 30, 30, 30, 36, 30, 30, 37, 38, 39, 38, 30,
|
|
/* 371 */ 38, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
|
|
/* 398 */ 66, 67, 68, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 30, 30, 38, 38, 38, 38, 38, 38, 38, 69, 38, 38,
|
|
/* 425 */ 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69,
|
|
/* 452 */ 69, 69, 69, 69
|
|
];
|
|
|
|
XQueryParser.MAP2 =
|
|
[
|
|
/* 0 */ 57344, 63744, 64976, 65008, 65536, 983040, 63743, 64975, 65007, 65533, 983039, 1114111, 38, 30, 38, 30, 30,
|
|
/* 17 */ 38
|
|
];
|
|
|
|
XQueryParser.INITIAL =
|
|
[
|
|
/* 0 */ 1, 12290, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
|
|
/* 28 */ 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
|
|
/* 55 */ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82,
|
|
/* 82 */ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107,
|
|
/* 107 */ 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128,
|
|
/* 128 */ 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149,
|
|
/* 149 */ 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170,
|
|
/* 170 */ 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191,
|
|
/* 191 */ 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212,
|
|
/* 212 */ 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233,
|
|
/* 233 */ 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254,
|
|
/* 254 */ 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275,
|
|
/* 275 */ 276, 277, 278, 279, 280, 281, 282, 283, 284
|
|
];
|
|
|
|
XQueryParser.TRANSITION =
|
|
[
|
|
/* 0 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 30 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 45 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 60 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 75 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 90 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 105 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 120 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 135 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 150 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 165 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 180 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 195 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 210 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 225 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 240 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 255 */ 23546, 22007, 18176, 18196, 18196, 18196, 18203, 18196, 18196, 18196, 18196, 18230, 18196, 18196, 18196,
|
|
/* 270 */ 18196, 18219, 18196, 18180, 18246, 23546, 23546, 23546, 35799, 23546, 23546, 51042, 23546, 23546, 23546,
|
|
/* 285 */ 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639, 20660, 19723, 18282, 18849, 18305, 18327,
|
|
/* 300 */ 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479, 18968, 18495, 19670, 18521, 18544,
|
|
/* 315 */ 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620, 23546, 30606, 23546, 23546, 23546, 23582,
|
|
/* 330 */ 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208, 25377, 18724, 26048, 18745, 18766,
|
|
/* 345 */ 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674, 23546, 18792, 18808, 18830, 23628, 18814,
|
|
/* 360 */ 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984, 19036, 19054, 19072, 19090, 26127,
|
|
/* 375 */ 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396, 19137, 19171, 19225, 39246, 19278, 47150,
|
|
/* 390 */ 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477, 25754, 19498, 19451, 25716, 19472, 25749,
|
|
/* 405 */ 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657, 20190, 20797, 20402, 21452, 19692,
|
|
/* 420 */ 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094, 19782, 18942, 19201, 19798, 19825,
|
|
/* 435 */ 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679, 20827, 20042, 20067, 20090, 20113,
|
|
/* 450 */ 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274, 51143, 20301, 20376, 20392, 51127,
|
|
/* 465 */ 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515, 19641, 20555, 20577, 20616, 20632,
|
|
/* 480 */ 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 495 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 510 */ 23546, 23546, 21089, 23546, 23546, 23546, 23546, 25841, 23546, 23546, 23546, 23546, 21369, 18411, 20907,
|
|
/* 525 */ 20920, 20932, 20944, 22539, 18416, 20967, 23546, 23546, 23546, 35799, 23546, 23546, 51042, 37625, 23546,
|
|
/* 540 */ 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639, 21008, 21032, 18282, 18849, 18305,
|
|
/* 555 */ 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479, 18968, 18495, 19670, 18521,
|
|
/* 570 */ 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620, 23546, 30606, 23546, 23546, 23546,
|
|
/* 585 */ 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208, 25377, 18724, 26048, 18745,
|
|
/* 600 */ 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674, 23546, 18792, 18808, 18830, 23628,
|
|
/* 615 */ 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984, 19036, 19054, 19072, 19090,
|
|
/* 630 */ 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396, 19137, 19171, 19225, 39246, 19278,
|
|
/* 645 */ 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477, 25754, 19498, 19451, 25716, 19472,
|
|
/* 660 */ 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657, 20190, 20797, 20402, 21452,
|
|
/* 675 */ 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094, 19782, 18942, 19201, 19798,
|
|
/* 690 */ 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679, 20827, 20042, 20067, 20090,
|
|
/* 705 */ 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274, 51143, 20301, 20376, 20392,
|
|
/* 720 */ 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515, 19641, 20555, 20577, 20616,
|
|
/* 735 */ 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 750 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 765 */ 23546, 23546, 23546, 21632, 21055, 23546, 23546, 23546, 21178, 23546, 23546, 23916, 42362, 21241, 23546,
|
|
/* 780 */ 23546, 23546, 23546, 19298, 47203, 21077, 21110, 23546, 23546, 23546, 35799, 23546, 23546, 21194, 23546,
|
|
/* 795 */ 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639, 20660, 21229, 18282, 18849,
|
|
/* 810 */ 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479, 18968, 18495, 19670,
|
|
/* 825 */ 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620, 23546, 30606, 23546, 23546,
|
|
/* 840 */ 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208, 25377, 18724, 26048,
|
|
/* 855 */ 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674, 23546, 18792, 18808, 18830,
|
|
/* 870 */ 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984, 19036, 19054, 19072,
|
|
/* 885 */ 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396, 19137, 19171, 19225, 39246,
|
|
/* 900 */ 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477, 25754, 19498, 19451, 25716,
|
|
/* 915 */ 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657, 20190, 20797, 20402,
|
|
/* 930 */ 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094, 19782, 18942, 19201,
|
|
/* 945 */ 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679, 20827, 20042, 20067,
|
|
/* 960 */ 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274, 51143, 20301, 20376,
|
|
/* 975 */ 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515, 19641, 20555, 20577,
|
|
/* 990 */ 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 1005 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 1020 */ 23546, 23546, 23546, 23546, 21358, 21323, 23546, 23546, 23546, 26152, 23546, 23546, 27593, 23546, 21369,
|
|
/* 1035 */ 29482, 21257, 21282, 21273, 21304, 21317, 21346, 20967, 23546, 23546, 23546, 28947, 23546, 23546, 21385,
|
|
/* 1050 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639, 20660, 20711, 21423,
|
|
/* 1065 */ 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479, 18968, 18495,
|
|
/* 1080 */ 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620, 23546, 30606, 23546,
|
|
/* 1095 */ 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208, 25377, 21446,
|
|
/* 1110 */ 26048, 18745, 18766, 18771, 20561, 50639, 26053, 18750, 50639, 18776, 19839, 20674, 23546, 18792, 18808,
|
|
/* 1125 */ 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984, 19036, 19054,
|
|
/* 1140 */ 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396, 19137, 19171, 19225,
|
|
/* 1155 */ 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477, 25754, 19498, 19451,
|
|
/* 1170 */ 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657, 20190, 20797,
|
|
/* 1185 */ 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094, 19782, 18942,
|
|
/* 1200 */ 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679, 20827, 20042,
|
|
/* 1215 */ 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274, 51143, 20301,
|
|
/* 1230 */ 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515, 19641, 20555,
|
|
/* 1245 */ 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546, 23546, 23546,
|
|
/* 1260 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 1275 */ 23546, 23546, 23546, 23546, 23546, 21089, 23540, 23546, 23546, 23546, 25880, 23545, 23546, 31245, 23546,
|
|
/* 1290 */ 21468, 23534, 21504, 23546, 21511, 23546, 21527, 21539, 20967, 23546, 23546, 23546, 35799, 23546, 23546,
|
|
/* 1305 */ 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639, 20660, 19723,
|
|
/* 1320 */ 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479, 18968,
|
|
/* 1335 */ 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620, 23546, 30606,
|
|
/* 1350 */ 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208, 25377,
|
|
/* 1365 */ 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674, 23546, 18792,
|
|
/* 1380 */ 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984, 19036,
|
|
/* 1395 */ 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396, 19137, 19171,
|
|
/* 1410 */ 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477, 25754, 19498,
|
|
/* 1425 */ 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657, 20190,
|
|
/* 1440 */ 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094, 19782,
|
|
/* 1455 */ 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679, 20827,
|
|
/* 1470 */ 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274, 51143,
|
|
/* 1485 */ 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515, 19641,
|
|
/* 1500 */ 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546, 23546,
|
|
/* 1515 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 1530 */ 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 25841, 21567, 23546, 23546,
|
|
/* 1545 */ 23546, 31874, 23546, 23546, 21586, 23546, 23546, 21608, 21620, 20967, 23546, 23546, 23546, 35799, 23546,
|
|
/* 1560 */ 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639, 20660,
|
|
/* 1575 */ 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479,
|
|
/* 1590 */ 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620, 23546,
|
|
/* 1605 */ 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208,
|
|
/* 1620 */ 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674, 23546,
|
|
/* 1635 */ 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984,
|
|
/* 1650 */ 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396, 19137,
|
|
/* 1665 */ 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477, 25754,
|
|
/* 1680 */ 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657,
|
|
/* 1695 */ 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094,
|
|
/* 1710 */ 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679,
|
|
/* 1725 */ 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274,
|
|
/* 1740 */ 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515,
|
|
/* 1755 */ 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546,
|
|
/* 1770 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 1785 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 25841, 23546, 23546,
|
|
/* 1800 */ 23546, 23546, 35211, 23546, 23546, 23546, 23546, 23546, 23546, 23424, 21648, 23546, 23546, 23546, 35799,
|
|
/* 1815 */ 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639,
|
|
/* 1830 */ 20660, 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463,
|
|
/* 1845 */ 18479, 18968, 18495, 19670, 21681, 18544, 18567, 18590, 50977, 18528, 18551, 18574, 18597, 20868, 18620,
|
|
/* 1860 */ 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505,
|
|
/* 1875 */ 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674,
|
|
/* 1890 */ 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051,
|
|
/* 1905 */ 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396,
|
|
/* 1920 */ 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477,
|
|
/* 1935 */ 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632,
|
|
/* 1950 */ 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746,
|
|
/* 1965 */ 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016,
|
|
/* 1980 */ 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139,
|
|
/* 1995 */ 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489,
|
|
/* 2010 */ 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546,
|
|
/* 2025 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 2040 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21736, 21705, 23546, 23546, 23546, 44539, 23546,
|
|
/* 2055 */ 23546, 24265, 25689, 25607, 23546, 23546, 23546, 23546, 26450, 47502, 21724, 21752, 23546, 23546, 23546,
|
|
/* 2070 */ 35799, 23546, 23546, 21783, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926,
|
|
/* 2085 */ 50639, 20660, 20237, 21819, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458,
|
|
/* 2100 */ 18463, 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868,
|
|
/* 2115 */ 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024,
|
|
/* 2130 */ 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839,
|
|
/* 2145 */ 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011,
|
|
/* 2160 */ 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668,
|
|
/* 2175 */ 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721,
|
|
/* 2190 */ 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592,
|
|
/* 2205 */ 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492,
|
|
/* 2220 */ 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842,
|
|
/* 2235 */ 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222,
|
|
/* 2250 */ 51139, 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037,
|
|
/* 2265 */ 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546,
|
|
/* 2280 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 2295 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21551, 21857, 21913, 21913, 21913, 21864,
|
|
/* 2310 */ 21908, 21913, 21918, 21967, 21842, 21949, 21880, 21961, 21896, 21934, 21983, 21995, 20967, 23546, 23546,
|
|
/* 2325 */ 23546, 26225, 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639,
|
|
/* 2340 */ 19926, 50639, 20660, 19723, 18282, 18849, 18305, 22023, 23546, 23546, 18368, 23546, 18915, 18388, 18432,
|
|
/* 2355 */ 18458, 18463, 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597,
|
|
/* 2370 */ 20868, 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209,
|
|
/* 2385 */ 26024, 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776,
|
|
/* 2400 */ 19839, 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812,
|
|
/* 2415 */ 26011, 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604,
|
|
/* 2430 */ 20668, 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456,
|
|
/* 2445 */ 25721, 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574,
|
|
/* 2460 */ 19592, 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853,
|
|
/* 2475 */ 26492, 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977,
|
|
/* 2490 */ 20842, 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206,
|
|
/* 2505 */ 20222, 51139, 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258,
|
|
/* 2520 */ 26037, 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884,
|
|
/* 2535 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 2550 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 28636, 23546, 23546, 23546,
|
|
/* 2565 */ 25912, 50946, 23546, 50080, 50952, 21369, 28635, 23546, 22054, 22060, 22076, 22111, 22121, 22137, 23546,
|
|
/* 2580 */ 23546, 23546, 30755, 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208,
|
|
/* 2595 */ 50639, 19926, 50639, 20660, 19723, 18282, 18849, 18305, 22183, 23546, 23546, 18368, 23546, 18915, 18388,
|
|
/* 2610 */ 18432, 18458, 18463, 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574,
|
|
/* 2625 */ 18597, 20868, 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695,
|
|
/* 2640 */ 19209, 26024, 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639,
|
|
/* 2655 */ 18776, 19839, 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958,
|
|
/* 2670 */ 20812, 26011, 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129,
|
|
/* 2685 */ 18604, 20668, 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422,
|
|
/* 2700 */ 19456, 25721, 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717,
|
|
/* 2715 */ 19574, 19592, 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432,
|
|
/* 2730 */ 19853, 26492, 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980,
|
|
/* 2745 */ 23977, 20842, 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175,
|
|
/* 2760 */ 20206, 20222, 51139, 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729,
|
|
/* 2775 */ 32258, 26037, 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858,
|
|
/* 2790 */ 20884, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 2805 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 27655, 23546, 23546,
|
|
/* 2820 */ 23546, 25841, 23546, 23546, 23546, 51066, 39748, 22869, 22242, 22228, 22245, 22261, 22277, 22288, 20967,
|
|
/* 2835 */ 23546, 23546, 23546, 35799, 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629,
|
|
/* 2850 */ 19208, 50639, 19926, 50639, 20660, 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915,
|
|
/* 2865 */ 18388, 18432, 18458, 18463, 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 20285, 18528, 18551,
|
|
/* 2880 */ 18574, 18597, 20868, 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036,
|
|
/* 2895 */ 18695, 19209, 26024, 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750,
|
|
/* 2910 */ 50639, 18776, 19839, 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937,
|
|
/* 2925 */ 18958, 20812, 26011, 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092,
|
|
/* 2940 */ 26129, 18604, 20668, 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380,
|
|
/* 2955 */ 19422, 19456, 25721, 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554,
|
|
/* 2970 */ 23717, 19574, 19592, 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708,
|
|
/* 2985 */ 20432, 19853, 26492, 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905,
|
|
/* 3000 */ 19980, 23977, 20842, 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159,
|
|
/* 3015 */ 20175, 20206, 20222, 51139, 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639,
|
|
/* 3030 */ 18729, 32258, 26037, 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782,
|
|
/* 3045 */ 20858, 20884, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 3060 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546,
|
|
/* 3075 */ 23546, 23546, 25841, 23546, 23546, 23546, 18648, 40763, 24585, 22304, 22324, 22304, 22338, 24585, 22308,
|
|
/* 3090 */ 20967, 23546, 23546, 23546, 35799, 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 3105 */ 25629, 19208, 50639, 19926, 50639, 20660, 19723, 18282, 18849, 18305, 18327, 23546, 23546, 22361, 23546,
|
|
/* 3120 */ 18915, 18388, 18432, 18458, 18463, 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528,
|
|
/* 3135 */ 18551, 18574, 18597, 20868, 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664,
|
|
/* 3150 */ 50036, 18695, 19209, 26024, 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053,
|
|
/* 3165 */ 18750, 50639, 18776, 19839, 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885,
|
|
/* 3180 */ 18937, 18958, 20812, 26011, 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074,
|
|
/* 3195 */ 19092, 26129, 18604, 20668, 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186,
|
|
/* 3210 */ 19380, 19422, 19456, 25721, 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900,
|
|
/* 3225 */ 19554, 23717, 19574, 19592, 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692,
|
|
/* 3240 */ 19708, 20432, 19853, 26492, 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883,
|
|
/* 3255 */ 19905, 19980, 23977, 20842, 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446,
|
|
/* 3270 */ 20159, 20175, 20206, 20222, 51139, 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380,
|
|
/* 3285 */ 50639, 18729, 32258, 26037, 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743,
|
|
/* 3300 */ 20782, 20858, 20884, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 3315 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 22386,
|
|
/* 3330 */ 23546, 23546, 23546, 25841, 18403, 23546, 19576, 22382, 44281, 22402, 22429, 22434, 22434, 22450, 22385,
|
|
/* 3345 */ 22413, 20967, 23546, 23546, 23546, 35799, 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 3360 */ 23546, 25629, 19208, 50639, 19926, 50639, 20660, 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368,
|
|
/* 3375 */ 23546, 18915, 18388, 18432, 18458, 18463, 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663,
|
|
/* 3390 */ 18528, 18551, 18574, 18597, 20868, 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546,
|
|
/* 3405 */ 18664, 50036, 18695, 19209, 26024, 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639,
|
|
/* 3420 */ 26053, 18750, 50639, 18776, 19839, 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195,
|
|
/* 3435 */ 18885, 18937, 18958, 20812, 26011, 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056,
|
|
/* 3450 */ 19074, 19092, 26129, 18604, 20668, 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667,
|
|
/* 3465 */ 19186, 19380, 19422, 19456, 25721, 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530,
|
|
/* 3480 */ 18900, 19554, 23717, 19574, 19592, 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452,
|
|
/* 3495 */ 19692, 19708, 20432, 19853, 26492, 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950,
|
|
/* 3510 */ 19883, 19905, 19980, 23977, 20842, 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129,
|
|
/* 3525 */ 20446, 20159, 20175, 20206, 20222, 51139, 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462,
|
|
/* 3540 */ 25380, 50639, 18729, 32258, 26037, 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727,
|
|
/* 3555 */ 20743, 20782, 20858, 20884, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 3570 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22473,
|
|
/* 3585 */ 23546, 23546, 23546, 23546, 25841, 23546, 23546, 23546, 23546, 21369, 25653, 22498, 22518, 22498, 22532,
|
|
/* 3600 */ 25653, 22502, 22555, 23546, 23546, 23546, 35799, 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546,
|
|
/* 3615 */ 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27132, 23546, 42897, 23546, 44844, 38626, 22584,
|
|
/* 3630 */ 22361, 37471, 23546, 23546, 23546, 23546, 22587, 47563, 46856, 47563, 47563, 22603, 35356, 22824, 22824,
|
|
/* 3645 */ 34828, 22804, 22621, 22804, 22804, 33187, 36943, 23546, 23546, 23546, 23546, 23546, 26071, 23546, 22641,
|
|
/* 3660 */ 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824, 22824, 22824, 49439,
|
|
/* 3675 */ 22804, 22804, 22804, 22804, 22804, 29885, 33201, 43701, 32739, 23546, 23546, 23546, 23546, 23546, 29474,
|
|
/* 3690 */ 22702, 23546, 33124, 44563, 47563, 47563, 47563, 47564, 22719, 35350, 22824, 22764, 22824, 22767, 35689,
|
|
/* 3705 */ 22783, 22804, 22803, 22804, 29879, 33195, 23546, 23546, 23546, 23546, 23546, 27587, 23546, 23546, 47562,
|
|
/* 3720 */ 46826, 47563, 47563, 27195, 22821, 42846, 22824, 22824, 22824, 30376, 22804, 22841, 22804, 22804, 29883,
|
|
/* 3735 */ 33199, 23546, 23546, 21430, 23546, 49502, 48973, 47563, 47563, 36153, 45209, 22824, 22824, 39816, 27834,
|
|
/* 3750 */ 22804, 22804, 43796, 30403, 39964, 23546, 23546, 22861, 23546, 47560, 22885, 47563, 23113, 22903, 22824,
|
|
/* 3765 */ 33078, 22920, 22804, 38116, 23546, 23546, 22937, 29174, 22980, 47563, 34384, 42527, 22825, 23019, 22804,
|
|
/* 3780 */ 31964, 47447, 46606, 23083, 36624, 23105, 32340, 30673, 23131, 36549, 23164, 40907, 43074, 23200, 23229,
|
|
/* 3795 */ 23275, 36645, 36686, 33550, 48975, 23107, 30672, 23141, 39417, 23313, 23334, 47559, 33030, 33552, 39426,
|
|
/* 3810 */ 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 3825 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 3840 */ 21089, 23546, 23546, 23546, 23546, 25841, 23546, 23546, 23546, 24855, 21369, 23546, 23546, 23546, 23546,
|
|
/* 3855 */ 23546, 20980, 20992, 23383, 23546, 23546, 23546, 35799, 23546, 23546, 23420, 23546, 23546, 23546, 23546,
|
|
/* 3870 */ 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 23440, 27132, 23546, 23546, 23546, 44844, 23546,
|
|
/* 3885 */ 23546, 18368, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 22603, 22824, 22824,
|
|
/* 3900 */ 22824, 34828, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 26071, 23546,
|
|
/* 3915 */ 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824, 22824, 22824,
|
|
/* 3930 */ 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 3945 */ 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824, 22767,
|
|
/* 3960 */ 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 3975 */ 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824, 30376, 22804, 22804, 22804, 22804,
|
|
/* 3990 */ 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 45209, 22824, 22824, 22824,
|
|
/* 4005 */ 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824,
|
|
/* 4020 */ 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804,
|
|
/* 4035 */ 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673,
|
|
/* 4050 */ 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 33552,
|
|
/* 4065 */ 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 4080 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 4095 */ 23546, 21089, 23485, 23546, 23546, 23546, 26606, 23546, 23546, 23546, 23546, 21369, 28080, 23505, 23528,
|
|
/* 4110 */ 23563, 23575, 28081, 23512, 20967, 23546, 23546, 23546, 35799, 23546, 23546, 51042, 30821, 23546, 37478,
|
|
/* 4125 */ 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639, 20660, 19723, 18282, 18849, 18305, 18327,
|
|
/* 4140 */ 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479, 18968, 18495, 19670, 18521, 18544,
|
|
/* 4155 */ 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620, 23546, 30606, 23546, 23546, 23546, 23582,
|
|
/* 4170 */ 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208, 25377, 18724, 26048, 18745, 18766,
|
|
/* 4185 */ 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674, 23546, 18792, 18808, 18830, 23628, 18814,
|
|
/* 4200 */ 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984, 19036, 19054, 19072, 19090, 26127,
|
|
/* 4215 */ 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396, 19137, 19171, 19225, 39246, 19278, 47150,
|
|
/* 4230 */ 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477, 25754, 19498, 19451, 25716, 19472, 25749,
|
|
/* 4245 */ 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657, 20190, 20797, 20402, 21452, 19692,
|
|
/* 4260 */ 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094, 19782, 18942, 19201, 19798, 19825,
|
|
/* 4275 */ 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679, 20827, 20042, 20067, 20090, 20113,
|
|
/* 4290 */ 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274, 51143, 20301, 20376, 20392, 51127,
|
|
/* 4305 */ 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515, 19641, 20555, 20577, 20616, 20632,
|
|
/* 4320 */ 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 4335 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 4350 */ 23546, 23546, 21089, 23598, 23546, 23546, 23546, 25841, 23546, 23546, 23546, 23184, 21369, 23546, 23546,
|
|
/* 4365 */ 23546, 23546, 23546, 22653, 22665, 23615, 23546, 23546, 23546, 35799, 23546, 23546, 23644, 23546, 23546,
|
|
/* 4380 */ 23546, 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 23664, 27132, 23546, 23546, 23546,
|
|
/* 4395 */ 44844, 23546, 23546, 23688, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 22603,
|
|
/* 4410 */ 22824, 22824, 22824, 34828, 22804, 22804, 22804, 22804, 39677, 48779, 23733, 23546, 23546, 23546, 23546,
|
|
/* 4425 */ 34921, 23753, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824,
|
|
/* 4440 */ 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 23777, 48792, 23546, 23546, 23546, 23546,
|
|
/* 4455 */ 23546, 50620, 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 41753, 22821, 22824, 22824, 22824,
|
|
/* 4470 */ 22824, 44122, 35849, 22804, 22804, 22804, 22804, 29879, 23672, 23807, 23546, 23546, 23546, 23546, 23546,
|
|
/* 4485 */ 23546, 23546, 47562, 47563, 47563, 47563, 34866, 22821, 22824, 22824, 22824, 22824, 23826, 22804, 22804,
|
|
/* 4500 */ 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 41728, 22824,
|
|
/* 4515 */ 22824, 22824, 41433, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563,
|
|
/* 4530 */ 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824,
|
|
/* 4545 */ 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561,
|
|
/* 4560 */ 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559,
|
|
/* 4575 */ 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 4590 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 4605 */ 23546, 23546, 23546, 21089, 39721, 23546, 23546, 23546, 30797, 25982, 23546, 23546, 23849, 21369, 20313,
|
|
/* 4620 */ 44188, 23887, 23893, 23909, 23546, 49114, 23932, 23546, 23546, 23546, 36603, 23546, 23546, 51042, 23546,
|
|
/* 4635 */ 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 24187, 24465, 24820, 25200, 24258, 18282, 18849,
|
|
/* 4650 */ 18305, 23964, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479, 18968, 18495, 19670,
|
|
/* 4665 */ 23993, 24116, 24017, 24046, 24001, 24088, 25090, 24132, 24812, 24103, 24159, 23546, 30606, 23546, 23546,
|
|
/* 4680 */ 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208, 25377, 24182, 25436,
|
|
/* 4695 */ 24884, 24206, 24190, 24890, 24819, 24363, 24227, 24819, 24414, 24143, 25214, 23546, 18792, 18808, 18830,
|
|
/* 4710 */ 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984, 24243, 24030, 25425,
|
|
/* 4725 */ 24281, 24706, 24308, 24337, 24350, 24389, 24405, 24517, 24423, 25208, 23396, 19137, 19171, 19225, 39246,
|
|
/* 4740 */ 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 24439, 19364, 24455, 25063, 24489, 24505, 24533,
|
|
/* 4755 */ 25266, 24373, 24545, 24561, 24577, 18900, 19554, 23717, 19574, 19592, 19632, 19657, 20190, 20797, 19809,
|
|
/* 4770 */ 24679, 24601, 25048, 19406, 24473, 24617, 25251, 25017, 24736, 26492, 19746, 41094, 19782, 18942, 19201,
|
|
/* 4785 */ 19798, 24633, 24673, 24695, 24722, 24779, 24801, 24836, 23977, 20842, 20016, 18679, 20827, 20042, 24871,
|
|
/* 4800 */ 24906, 24935, 24951, 25006, 25411, 25295, 20159, 20175, 20206, 25033, 24292, 25079, 25281, 25106, 20376,
|
|
/* 4815 */ 20392, 19394, 24919, 24657, 20462, 19676, 24211, 24785, 32258, 19353, 24647, 24966, 20473, 24060, 25136,
|
|
/* 4830 */ 20616, 25172, 25188, 25236, 24072, 25311, 25362, 25396, 25452, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 4845 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 4860 */ 23546, 23546, 23546, 23546, 21089, 21328, 23546, 23546, 23546, 25841, 25477, 23546, 23546, 25472, 32915,
|
|
/* 4875 */ 25493, 25501, 25501, 25501, 25517, 21330, 25540, 20967, 23546, 23546, 23546, 35799, 23546, 23546, 51042,
|
|
/* 4890 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639, 20660, 19723, 18282,
|
|
/* 4905 */ 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479, 18968, 18495,
|
|
/* 4920 */ 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620, 23546, 30606, 23546,
|
|
/* 4935 */ 23546, 23546, 23582, 25581, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208, 25377, 18724,
|
|
/* 4950 */ 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20499, 25597, 18792, 18808,
|
|
/* 4965 */ 18830, 23628, 18814, 25623, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984, 19036, 19054,
|
|
/* 4980 */ 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 21016, 25645, 19137, 19171, 19225,
|
|
/* 4995 */ 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 25669, 25705, 25721, 19477, 25754, 19498, 25737,
|
|
/* 5010 */ 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657, 20190, 20797,
|
|
/* 5025 */ 18708, 21452, 19692, 19708, 20143, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094, 19782, 18942,
|
|
/* 5040 */ 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679, 20827, 20042,
|
|
/* 5055 */ 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274, 51143, 20301,
|
|
/* 5070 */ 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515, 19641, 20555,
|
|
/* 5085 */ 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546, 23546, 23546,
|
|
/* 5100 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 5115 */ 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 25841, 23546, 23546, 23546, 23546,
|
|
/* 5130 */ 50535, 23259, 25770, 25770, 25770, 25779, 21123, 21135, 20967, 23546, 23546, 23546, 35799, 23546, 23546,
|
|
/* 5145 */ 51042, 23546, 23546, 25220, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639, 20660, 25802,
|
|
/* 5160 */ 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479, 18968,
|
|
/* 5175 */ 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620, 23546, 30606,
|
|
/* 5190 */ 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208, 25377,
|
|
/* 5205 */ 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674, 23546, 18792,
|
|
/* 5220 */ 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984, 19036,
|
|
/* 5235 */ 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396, 19137, 19171,
|
|
/* 5250 */ 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477, 25754, 19498,
|
|
/* 5265 */ 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657, 20190,
|
|
/* 5280 */ 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094, 19782,
|
|
/* 5295 */ 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679, 20827,
|
|
/* 5310 */ 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274, 51143,
|
|
/* 5325 */ 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515, 19641,
|
|
/* 5340 */ 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546, 23546,
|
|
/* 5355 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 5370 */ 23546, 23546, 23546, 23546, 23546, 23546, 21147, 20888, 23546, 23546, 23546, 25841, 23546, 23546, 23546,
|
|
/* 5385 */ 23546, 21369, 22959, 25825, 25825, 25825, 25834, 20891, 22964, 25857, 23546, 23546, 23546, 35799, 23546,
|
|
/* 5400 */ 23546, 51042, 23546, 23546, 27140, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639, 20660,
|
|
/* 5415 */ 25873, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479,
|
|
/* 5430 */ 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620, 23546,
|
|
/* 5445 */ 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208,
|
|
/* 5460 */ 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674, 23546,
|
|
/* 5475 */ 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984,
|
|
/* 5490 */ 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396, 19137,
|
|
/* 5505 */ 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477, 25754,
|
|
/* 5520 */ 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657,
|
|
/* 5535 */ 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094,
|
|
/* 5550 */ 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679,
|
|
/* 5565 */ 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274,
|
|
/* 5580 */ 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515,
|
|
/* 5595 */ 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546,
|
|
/* 5610 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 5625 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25552, 25561, 23546, 23546, 23546, 26852, 23546, 23546,
|
|
/* 5640 */ 23546, 23546, 21369, 33245, 25896, 25896, 25896, 25905, 36950, 33250, 25928, 23546, 23546, 23546, 35799,
|
|
/* 5655 */ 23546, 23546, 51042, 23546, 23546, 22366, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639,
|
|
/* 5670 */ 20660, 25964, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463,
|
|
/* 5685 */ 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620,
|
|
/* 5700 */ 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505,
|
|
/* 5715 */ 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674,
|
|
/* 5730 */ 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051,
|
|
/* 5745 */ 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396,
|
|
/* 5760 */ 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477,
|
|
/* 5775 */ 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632,
|
|
/* 5790 */ 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746,
|
|
/* 5805 */ 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016,
|
|
/* 5820 */ 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139,
|
|
/* 5835 */ 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 25998, 25380, 50639, 18729, 32258, 26037, 20489,
|
|
/* 5850 */ 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546,
|
|
/* 5865 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 5880 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 26099, 23546, 23546, 23546, 23546, 25841, 21661,
|
|
/* 5895 */ 23546, 23546, 21094, 43925, 23546, 23546, 23546, 21665, 26069, 21092, 26087, 20967, 23546, 23546, 23546,
|
|
/* 5910 */ 35799, 23546, 23546, 51042, 31389, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926,
|
|
/* 5925 */ 50639, 26115, 26145, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458,
|
|
/* 5940 */ 18463, 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868,
|
|
/* 5955 */ 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024,
|
|
/* 5970 */ 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839,
|
|
/* 5985 */ 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011,
|
|
/* 6000 */ 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668,
|
|
/* 6015 */ 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721,
|
|
/* 6030 */ 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592,
|
|
/* 6045 */ 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492,
|
|
/* 6060 */ 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842,
|
|
/* 6075 */ 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222,
|
|
/* 6090 */ 51139, 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037,
|
|
/* 6105 */ 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546,
|
|
/* 6120 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 6135 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 25841,
|
|
/* 6150 */ 23546, 23546, 23546, 23546, 21369, 23546, 23546, 23546, 23546, 23546, 43987, 26168, 20967, 23546, 23546,
|
|
/* 6165 */ 23546, 35799, 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639,
|
|
/* 6180 */ 19926, 50639, 20660, 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432,
|
|
/* 6195 */ 18458, 18463, 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597,
|
|
/* 6210 */ 20868, 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209,
|
|
/* 6225 */ 26024, 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776,
|
|
/* 6240 */ 19839, 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812,
|
|
/* 6255 */ 26011, 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604,
|
|
/* 6270 */ 20668, 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456,
|
|
/* 6285 */ 25721, 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574,
|
|
/* 6300 */ 19592, 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853,
|
|
/* 6315 */ 26492, 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977,
|
|
/* 6330 */ 20842, 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206,
|
|
/* 6345 */ 20222, 51139, 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258,
|
|
/* 6360 */ 26037, 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884,
|
|
/* 6375 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 6390 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23546, 23546,
|
|
/* 6405 */ 26527, 23546, 23546, 23546, 23546, 21369, 23546, 23546, 23546, 23546, 19262, 39432, 32077, 26204, 23546,
|
|
/* 6420 */ 23546, 23546, 35799, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48973, 47563,
|
|
/* 6435 */ 22824, 35842, 22805, 43066, 27800, 23546, 23546, 23546, 44844, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 6450 */ 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418, 22824, 22824, 22824, 43762, 22804, 22804, 22804,
|
|
/* 6465 */ 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 23546, 50621, 23546, 23546, 23546, 23546, 48975,
|
|
/* 6480 */ 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824, 22824, 22824, 49439, 22804, 22804, 22804, 22804,
|
|
/* 6495 */ 22804, 29885, 40883, 26241, 23546, 23546, 23546, 23546, 23546, 50620, 23546, 23546, 23546, 48976, 47563,
|
|
/* 6510 */ 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824, 22767, 35849, 22804, 22804, 22804, 22804,
|
|
/* 6525 */ 29879, 23672, 23807, 23546, 23546, 23546, 23546, 26285, 23546, 23546, 47562, 47563, 47563, 47563, 29369,
|
|
/* 6540 */ 22821, 22824, 22824, 22824, 22824, 28821, 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546,
|
|
/* 6555 */ 23546, 23546, 48973, 47563, 47563, 47563, 41728, 22824, 22824, 22824, 41433, 22804, 22804, 22804, 30403,
|
|
/* 6570 */ 47447, 23546, 23546, 26302, 23546, 47560, 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804, 31970,
|
|
/* 6585 */ 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585,
|
|
/* 6600 */ 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550,
|
|
/* 6615 */ 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351,
|
|
/* 6630 */ 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 6645 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23546,
|
|
/* 6660 */ 23546, 26527, 23546, 23546, 23546, 23546, 21369, 23546, 23546, 23546, 23546, 19262, 39432, 32077, 26204,
|
|
/* 6675 */ 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48973,
|
|
/* 6690 */ 47563, 22824, 35842, 22805, 43066, 27800, 23546, 23546, 23546, 44844, 23546, 23546, 23546, 23546, 23546,
|
|
/* 6705 */ 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418, 22824, 22824, 22824, 43762, 22804, 22804,
|
|
/* 6720 */ 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 23546, 50621, 23546, 23546, 23546, 23546,
|
|
/* 6735 */ 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824, 22824, 22824, 49439, 22804, 22804, 22804,
|
|
/* 6750 */ 22804, 22804, 29885, 40883, 26241, 23546, 23546, 23546, 23546, 23546, 50620, 23546, 23546, 23546, 48976,
|
|
/* 6765 */ 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824, 22767, 35849, 22804, 22804, 22804,
|
|
/* 6780 */ 22804, 29879, 23672, 23807, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 47562, 47563, 47563, 47563,
|
|
/* 6795 */ 29369, 22821, 22824, 22824, 22824, 22824, 28821, 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546,
|
|
/* 6810 */ 23546, 23546, 23546, 48973, 47563, 47563, 47563, 41728, 22824, 22824, 22824, 41433, 22804, 22804, 22804,
|
|
/* 6825 */ 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804,
|
|
/* 6840 */ 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606,
|
|
/* 6855 */ 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031,
|
|
/* 6870 */ 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448,
|
|
/* 6885 */ 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 6900 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546,
|
|
/* 6915 */ 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369, 23546, 23546, 23546, 23546, 19262, 39432, 32077,
|
|
/* 6930 */ 26204, 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 6945 */ 48973, 47563, 22824, 35842, 22805, 43066, 27800, 23546, 23546, 23546, 44844, 23546, 23546, 23546, 23546,
|
|
/* 6960 */ 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418, 22824, 22824, 22824, 43762, 22804,
|
|
/* 6975 */ 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 23546, 50621, 26321, 23546, 23546,
|
|
/* 6990 */ 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824, 22824, 22824, 49439, 22804, 22804,
|
|
/* 7005 */ 22804, 22804, 22804, 29885, 40883, 26241, 23546, 23546, 23546, 23546, 23546, 50620, 23546, 23546, 23546,
|
|
/* 7020 */ 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824, 22767, 35849, 22804, 22804,
|
|
/* 7035 */ 22804, 22804, 29879, 23672, 23807, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 47562, 47563, 47563,
|
|
/* 7050 */ 47563, 29369, 22821, 22824, 22824, 22824, 22824, 28821, 22804, 22804, 22804, 22804, 29883, 33199, 23546,
|
|
/* 7065 */ 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 41728, 22824, 22824, 22824, 41433, 22804, 22804,
|
|
/* 7080 */ 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824, 22824, 33078, 22804,
|
|
/* 7095 */ 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447,
|
|
/* 7110 */ 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759,
|
|
/* 7125 */ 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729,
|
|
/* 7140 */ 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7155 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546,
|
|
/* 7170 */ 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369, 23546, 23546, 23546, 23546, 19262, 39432,
|
|
/* 7185 */ 32077, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7200 */ 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27800, 23546, 23546, 23546, 44844, 23546, 23546, 23546,
|
|
/* 7215 */ 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418, 22824, 22824, 22824, 43762,
|
|
/* 7230 */ 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 23546, 50621, 23546, 23546,
|
|
/* 7245 */ 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824, 22824, 22824, 49439, 22804,
|
|
/* 7260 */ 22804, 22804, 22804, 22804, 29885, 40883, 26241, 23546, 23546, 23546, 23546, 23546, 19867, 23546, 23546,
|
|
/* 7275 */ 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824, 22767, 35849, 22804,
|
|
/* 7290 */ 22804, 22804, 22804, 29879, 23672, 23807, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 47562, 47563,
|
|
/* 7305 */ 47563, 47563, 29369, 22821, 22824, 22824, 22824, 22824, 28821, 22804, 22804, 22804, 22804, 29883, 33199,
|
|
/* 7320 */ 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 41728, 22824, 22824, 22824, 41433, 22804,
|
|
/* 7335 */ 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824, 22824, 33078,
|
|
/* 7350 */ 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964,
|
|
/* 7365 */ 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673, 39296, 23464,
|
|
/* 7380 */ 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307,
|
|
/* 7395 */ 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7410 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677,
|
|
/* 7425 */ 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369, 23546, 23546, 23546, 23546, 19262,
|
|
/* 7440 */ 39432, 32077, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 26341, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7455 */ 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27800, 23546, 23546, 23546, 44844, 23546, 23546,
|
|
/* 7470 */ 26341, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418, 22824, 22824, 22824,
|
|
/* 7485 */ 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 23546, 50621, 23546,
|
|
/* 7500 */ 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824, 22824, 22824, 49439,
|
|
/* 7515 */ 22804, 22804, 22804, 22804, 22804, 29885, 40883, 26241, 23546, 23546, 23546, 23546, 23546, 50620, 23546,
|
|
/* 7530 */ 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824, 22767, 35849,
|
|
/* 7545 */ 22804, 22804, 22804, 22804, 29879, 23672, 23807, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 47562,
|
|
/* 7560 */ 47563, 47563, 47563, 29369, 22821, 22824, 22824, 22824, 22824, 28821, 22804, 22804, 22804, 22804, 29883,
|
|
/* 7575 */ 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 41728, 22824, 22824, 22824, 41433,
|
|
/* 7590 */ 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824, 22824,
|
|
/* 7605 */ 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804,
|
|
/* 7620 */ 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673, 39296,
|
|
/* 7635 */ 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 33552, 39426,
|
|
/* 7650 */ 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7665 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7680 */ 22677, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369, 23546, 23546, 23546, 23546,
|
|
/* 7695 */ 19262, 39432, 32077, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7710 */ 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27800, 23546, 23546, 23546, 44844, 23546,
|
|
/* 7725 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418, 22824, 22824,
|
|
/* 7740 */ 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7755 */ 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824, 22824, 22824,
|
|
/* 7770 */ 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7785 */ 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824, 22767,
|
|
/* 7800 */ 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7815 */ 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824, 30376, 22804, 22804, 22804, 22804,
|
|
/* 7830 */ 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 45209, 22824, 22824, 22824,
|
|
/* 7845 */ 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824,
|
|
/* 7860 */ 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804,
|
|
/* 7875 */ 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673,
|
|
/* 7890 */ 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 33552,
|
|
/* 7905 */ 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7920 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7935 */ 23546, 22677, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369, 23546, 23546, 23546,
|
|
/* 7950 */ 23546, 19262, 39432, 32077, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 7965 */ 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 23049, 23546, 23546, 23546, 44844,
|
|
/* 7980 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418, 22824,
|
|
/* 7995 */ 22824, 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8010 */ 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824, 22824,
|
|
/* 8025 */ 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8040 */ 23546, 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824,
|
|
/* 8055 */ 22767, 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8070 */ 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824, 30376, 22804, 22804, 22804,
|
|
/* 8085 */ 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 45209, 22824, 22824,
|
|
/* 8100 */ 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113,
|
|
/* 8115 */ 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825,
|
|
/* 8130 */ 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111,
|
|
/* 8145 */ 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030,
|
|
/* 8160 */ 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8175 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8190 */ 23546, 23546, 22677, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369, 23546, 23546,
|
|
/* 8205 */ 23546, 23546, 19262, 39432, 32077, 26364, 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8220 */ 23546, 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27800, 23546, 23546, 23546,
|
|
/* 8235 */ 44844, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418,
|
|
/* 8250 */ 22824, 22824, 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8265 */ 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824,
|
|
/* 8280 */ 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8295 */ 23546, 23546, 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824,
|
|
/* 8310 */ 22824, 22767, 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8325 */ 23546, 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824, 30376, 22804, 22804,
|
|
/* 8340 */ 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 45209, 22824,
|
|
/* 8355 */ 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563,
|
|
/* 8370 */ 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824,
|
|
/* 8385 */ 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561,
|
|
/* 8400 */ 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559,
|
|
/* 8415 */ 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8430 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8445 */ 23546, 23546, 23546, 22677, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369, 19293,
|
|
/* 8460 */ 23546, 23546, 23546, 19262, 39432, 32077, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546,
|
|
/* 8475 */ 23546, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27800, 23546, 23546,
|
|
/* 8490 */ 23546, 44844, 23546, 23546, 23546, 31312, 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563,
|
|
/* 8505 */ 27418, 22824, 22824, 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546,
|
|
/* 8520 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824,
|
|
/* 8535 */ 22824, 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546, 23546, 23546,
|
|
/* 8550 */ 23546, 23546, 23546, 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824,
|
|
/* 8565 */ 22824, 22824, 22767, 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8580 */ 23546, 23546, 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824, 30376, 22804,
|
|
/* 8595 */ 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 45209,
|
|
/* 8610 */ 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563,
|
|
/* 8625 */ 47563, 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109,
|
|
/* 8640 */ 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609,
|
|
/* 8655 */ 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551,
|
|
/* 8670 */ 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8685 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8700 */ 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369,
|
|
/* 8715 */ 23546, 23546, 23546, 23546, 37937, 26399, 26410, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 23546,
|
|
/* 8730 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27800, 23546,
|
|
/* 8745 */ 23546, 23546, 44844, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563,
|
|
/* 8760 */ 47563, 27418, 22824, 22824, 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546,
|
|
/* 8775 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823,
|
|
/* 8790 */ 22824, 22824, 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546, 23546,
|
|
/* 8805 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824,
|
|
/* 8820 */ 22824, 22824, 22824, 22767, 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546, 23546,
|
|
/* 8835 */ 23546, 23546, 23546, 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824, 30376,
|
|
/* 8850 */ 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563,
|
|
/* 8865 */ 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560,
|
|
/* 8880 */ 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563,
|
|
/* 8895 */ 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549,
|
|
/* 8910 */ 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030,
|
|
/* 8925 */ 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8940 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 8955 */ 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546,
|
|
/* 8970 */ 21369, 23546, 23546, 23546, 23546, 19262, 39432, 32077, 26204, 23546, 23546, 23546, 35799, 23546, 23546,
|
|
/* 8985 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27800,
|
|
/* 9000 */ 23546, 23546, 23546, 44844, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563,
|
|
/* 9015 */ 47563, 47563, 27418, 22824, 22824, 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546,
|
|
/* 9030 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135,
|
|
/* 9045 */ 22823, 22824, 22824, 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546,
|
|
/* 9060 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821,
|
|
/* 9075 */ 22824, 22824, 22824, 22824, 22767, 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546,
|
|
/* 9090 */ 23546, 23546, 23546, 23546, 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824,
|
|
/* 9105 */ 30376, 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546, 26426, 23546, 48973, 47563, 47563,
|
|
/* 9120 */ 47563, 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546,
|
|
/* 9135 */ 47560, 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563,
|
|
/* 9150 */ 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804,
|
|
/* 9165 */ 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756,
|
|
/* 9180 */ 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546,
|
|
/* 9195 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 9210 */ 23546, 23546, 23546, 23546, 23546, 23546, 26445, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546,
|
|
/* 9225 */ 23546, 21369, 23546, 23546, 23546, 23546, 19262, 39432, 32077, 26204, 23546, 23546, 23546, 35799, 23546,
|
|
/* 9240 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066,
|
|
/* 9255 */ 27800, 23546, 23546, 23546, 44844, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22587, 47563,
|
|
/* 9270 */ 47563, 47563, 47563, 27418, 22824, 22824, 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546,
|
|
/* 9285 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563,
|
|
/* 9300 */ 37135, 22823, 22824, 22824, 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546,
|
|
/* 9315 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564,
|
|
/* 9330 */ 22821, 22824, 22824, 22824, 22824, 22767, 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546,
|
|
/* 9345 */ 23546, 23546, 23546, 23546, 23546, 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824,
|
|
/* 9360 */ 22824, 30376, 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563,
|
|
/* 9375 */ 47563, 47563, 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546,
|
|
/* 9390 */ 23546, 47560, 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586,
|
|
/* 9405 */ 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673,
|
|
/* 9420 */ 22804, 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141,
|
|
/* 9435 */ 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546,
|
|
/* 9450 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 9465 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 25841, 23546, 23546,
|
|
/* 9480 */ 23546, 23546, 21369, 41698, 26466, 26486, 26508, 26520, 41701, 26470, 20967, 23546, 23546, 23546, 35799,
|
|
/* 9495 */ 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926, 50639,
|
|
/* 9510 */ 20660, 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 38227, 18915, 18388, 18432, 18458, 18463,
|
|
/* 9525 */ 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620,
|
|
/* 9540 */ 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505,
|
|
/* 9555 */ 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674,
|
|
/* 9570 */ 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051,
|
|
/* 9585 */ 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396,
|
|
/* 9600 */ 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477,
|
|
/* 9615 */ 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632,
|
|
/* 9630 */ 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746,
|
|
/* 9645 */ 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 26543,
|
|
/* 9660 */ 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139,
|
|
/* 9675 */ 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489,
|
|
/* 9690 */ 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546,
|
|
/* 9705 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 9720 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 25841, 23546,
|
|
/* 9735 */ 23546, 23546, 23546, 21369, 23546, 23546, 23546, 23546, 23546, 23546, 23424, 20967, 23546, 23546, 23546,
|
|
/* 9750 */ 35799, 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639, 19926,
|
|
/* 9765 */ 50639, 20660, 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458,
|
|
/* 9780 */ 18463, 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868,
|
|
/* 9795 */ 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024,
|
|
/* 9810 */ 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839,
|
|
/* 9825 */ 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011,
|
|
/* 9840 */ 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668,
|
|
/* 9855 */ 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721,
|
|
/* 9870 */ 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592,
|
|
/* 9885 */ 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492,
|
|
/* 9900 */ 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842,
|
|
/* 9915 */ 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222,
|
|
/* 9930 */ 51139, 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037,
|
|
/* 9945 */ 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546,
|
|
/* 9960 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 9975 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 25841,
|
|
/* 9990 */ 23546, 23546, 23546, 23546, 21369, 28554, 23546, 26577, 26583, 26599, 47449, 44239, 20967, 23546, 23546,
|
|
/* 10005 */ 23546, 35799, 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50639,
|
|
/* 10020 */ 19926, 50639, 20660, 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432,
|
|
/* 10035 */ 18458, 18463, 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597,
|
|
/* 10050 */ 20868, 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209,
|
|
/* 10065 */ 26024, 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776,
|
|
/* 10080 */ 19839, 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812,
|
|
/* 10095 */ 26011, 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604,
|
|
/* 10110 */ 20668, 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456,
|
|
/* 10125 */ 25721, 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574,
|
|
/* 10140 */ 19592, 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853,
|
|
/* 10155 */ 26492, 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977,
|
|
/* 10170 */ 20842, 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 26622, 20175, 20206,
|
|
/* 10185 */ 20222, 51139, 20274, 51143, 20301, 26638, 20392, 51127, 20418, 50802, 26654, 25380, 50639, 18729, 32258,
|
|
/* 10200 */ 26037, 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884,
|
|
/* 10215 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 10230 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 27306, 23546, 23546, 23546,
|
|
/* 10245 */ 26527, 26683, 26714, 28322, 26699, 26731, 50814, 50823, 26775, 26789, 26801, 26817, 26829, 26204, 26845,
|
|
/* 10260 */ 23599, 23546, 25326, 21171, 35898, 34903, 26868, 26909, 26948, 33311, 26979, 26959, 26995, 27011, 45967,
|
|
/* 10275 */ 27047, 27063, 27101, 27117, 34536, 27156, 23546, 23546, 44844, 41240, 34846, 23546, 42415, 27173, 27664,
|
|
/* 10290 */ 23546, 42356, 28101, 47563, 47563, 47563, 27192, 27418, 22824, 22824, 42533, 43762, 22804, 22804, 22804,
|
|
/* 10305 */ 27211, 27231, 36943, 23546, 44839, 40944, 23546, 27267, 27287, 46640, 23546, 27304, 35519, 43402, 27322,
|
|
/* 10320 */ 27344, 47563, 47563, 27380, 27403, 27436, 31453, 22824, 33011, 27464, 27493, 27533, 27556, 22804, 38069,
|
|
/* 10335 */ 35418, 30315, 27573, 26241, 27609, 23546, 44532, 27629, 39107, 50620, 23546, 45009, 27646, 31107, 27698,
|
|
/* 10350 */ 47563, 27746, 27765, 23297, 27785, 27825, 36368, 22824, 27859, 48139, 23833, 27991, 44504, 49256, 22804,
|
|
/* 10365 */ 43572, 23672, 27877, 42988, 25683, 23546, 27893, 27913, 46094, 23546, 21213, 44018, 47563, 30489, 32462,
|
|
/* 10380 */ 27941, 34820, 22824, 45399, 49012, 28821, 27978, 22804, 22804, 28014, 28034, 49064, 28072, 35792, 28097,
|
|
/* 10395 */ 51046, 28117, 50856, 22994, 28137, 47563, 41728, 28206, 28229, 22824, 41433, 28267, 28290, 22804, 34572,
|
|
/* 10410 */ 28320, 28338, 23546, 23546, 39715, 47560, 28358, 45550, 23113, 28379, 35308, 33078, 28399, 36714, 31970,
|
|
/* 10425 */ 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585,
|
|
/* 10440 */ 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673, 41649, 28419, 28455, 40472, 38341,
|
|
/* 10455 */ 28471, 38828, 40452, 28791, 24756, 33030, 27540, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351,
|
|
/* 10470 */ 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 10485 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 28526, 23546,
|
|
/* 10500 */ 23546, 26527, 23546, 23546, 23546, 23546, 34078, 28545, 23546, 28652, 28658, 28674, 28690, 28701, 26204,
|
|
/* 10515 */ 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546, 26963, 23546, 23546, 23546, 23546, 23546, 48973,
|
|
/* 10530 */ 47563, 22605, 35842, 45303, 43066, 27800, 23546, 23546, 23546, 44844, 23546, 23546, 23546, 23546, 23546,
|
|
/* 10545 */ 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418, 22824, 22824, 22824, 43762, 22804, 22804,
|
|
/* 10560 */ 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 46230, 50621, 28718, 23546, 28717, 23546,
|
|
/* 10575 */ 48975, 47563, 47563, 47563, 27769, 28735, 22823, 22824, 22824, 22824, 49361, 49439, 22804, 22804, 22804,
|
|
/* 10590 */ 22804, 28781, 29885, 40883, 26241, 23546, 23546, 23546, 23546, 23546, 50620, 23546, 23546, 23546, 48976,
|
|
/* 10605 */ 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824, 22767, 35849, 22804, 22804, 22804,
|
|
/* 10620 */ 22804, 29879, 23672, 23807, 23546, 18289, 23546, 23546, 44779, 49528, 23546, 36898, 47563, 47563, 47563,
|
|
/* 10635 */ 40417, 28807, 22824, 22824, 22824, 50340, 31197, 28844, 22804, 22804, 22804, 28863, 33199, 23546, 23546,
|
|
/* 10650 */ 23546, 23546, 23546, 48973, 47563, 47563, 47563, 41728, 22824, 22824, 22824, 41433, 22804, 22804, 22804,
|
|
/* 10665 */ 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804,
|
|
/* 10680 */ 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606,
|
|
/* 10695 */ 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031,
|
|
/* 10710 */ 33550, 21205, 28900, 28924, 28940, 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448,
|
|
/* 10725 */ 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 10740 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 28963,
|
|
/* 10755 */ 23546, 23546, 26527, 23546, 28992, 23546, 29010, 36977, 29029, 29038, 29054, 29069, 29081, 29097, 29109,
|
|
/* 10770 */ 26204, 23546, 23546, 33645, 49739, 23546, 28529, 23546, 23546, 31365, 23546, 23546, 23546, 35995, 23546,
|
|
/* 10785 */ 29125, 31167, 22824, 29149, 40337, 48749, 32108, 23546, 29172, 23546, 44844, 29190, 42384, 23546, 31347,
|
|
/* 10800 */ 50774, 29209, 23546, 25948, 29214, 29230, 29291, 47563, 47563, 29309, 29325, 22824, 22824, 45608, 49036,
|
|
/* 10815 */ 29349, 22804, 22804, 39677, 36943, 30220, 23546, 23546, 47099, 23546, 22095, 50621, 37205, 27682, 23546,
|
|
/* 10830 */ 23546, 48975, 28152, 40051, 47563, 29366, 37135, 45217, 46920, 46953, 36665, 22824, 49439, 49901, 29385,
|
|
/* 10845 */ 29404, 34563, 22804, 29885, 40883, 26241, 23546, 23546, 47600, 23546, 23546, 29423, 23546, 29445, 23546,
|
|
/* 10860 */ 48976, 47563, 47563, 47563, 44406, 47564, 22821, 22824, 22824, 49328, 42575, 22767, 35849, 22804, 22804,
|
|
/* 10875 */ 39288, 28274, 50448, 23672, 29464, 23546, 23546, 23546, 29498, 42828, 23546, 23546, 47562, 47563, 47563,
|
|
/* 10890 */ 46820, 29369, 22821, 22824, 22824, 37856, 22824, 28821, 22804, 22804, 30184, 22804, 29883, 33199, 23546,
|
|
/* 10905 */ 23546, 29517, 23546, 47519, 29538, 47563, 46768, 47563, 41728, 22824, 49353, 22824, 41433, 22804, 41641,
|
|
/* 10920 */ 22804, 27843, 29565, 23546, 23546, 23546, 29581, 33988, 49629, 29610, 50265, 49148, 29627, 30732, 37573,
|
|
/* 10935 */ 29644, 31970, 23546, 23546, 28626, 22586, 47563, 47563, 29661, 22824, 47375, 22804, 22804, 29679, 47447,
|
|
/* 10950 */ 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759,
|
|
/* 10965 */ 33031, 45087, 23089, 29701, 47077, 23141, 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307, 27251,
|
|
/* 10980 */ 29717, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 10995 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546,
|
|
/* 11010 */ 21570, 23546, 23546, 26527, 23546, 29745, 24166, 23546, 32508, 29764, 29773, 29789, 29803, 29812, 29828,
|
|
/* 11025 */ 29839, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546, 23546, 23546, 34673, 34671, 23546,
|
|
/* 11040 */ 38486, 38493, 29855, 28213, 35842, 29875, 43066, 27800, 23546, 40629, 29901, 44844, 23546, 29926, 30774,
|
|
/* 11055 */ 23546, 23546, 41541, 20026, 29946, 29989, 29293, 38320, 30005, 40270, 30031, 42116, 30052, 30082, 30100,
|
|
/* 11070 */ 49972, 39453, 30135, 41942, 39677, 36943, 23546, 23546, 23546, 42078, 23546, 30162, 50621, 23546, 23546,
|
|
/* 11085 */ 23546, 39564, 48975, 47563, 47563, 47563, 48721, 37135, 22823, 22824, 22824, 22824, 42777, 49439, 22804,
|
|
/* 11100 */ 22804, 22804, 22804, 30182, 30146, 30200, 30236, 23546, 23546, 23546, 30252, 30271, 50620, 23546, 23546,
|
|
/* 11115 */ 45468, 23469, 31420, 34156, 47563, 47563, 45201, 30292, 30331, 30348, 22824, 22824, 30365, 29156, 29407,
|
|
/* 11130 */ 22804, 22804, 22804, 30399, 23672, 23807, 23546, 23546, 23546, 23546, 45523, 28572, 23546, 33872, 47563,
|
|
/* 11145 */ 47563, 30419, 29369, 30438, 22824, 22824, 48645, 22824, 31904, 22804, 22804, 50360, 22804, 30539, 33199,
|
|
/* 11160 */ 49920, 23546, 30462, 23546, 50724, 48973, 36270, 47563, 30480, 41728, 35391, 22824, 30505, 41433, 50493,
|
|
/* 11175 */ 22804, 30530, 30403, 47447, 49732, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824, 22824, 33078,
|
|
/* 11190 */ 22804, 22804, 31970, 23546, 23251, 23546, 22586, 47563, 47563, 30555, 22824, 36108, 22804, 22804, 30575,
|
|
/* 11205 */ 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 30597, 46609, 47561, 23111, 30673, 39296, 30622,
|
|
/* 11220 */ 30648, 30668, 30689, 19013, 30707, 30727, 30748, 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307,
|
|
/* 11235 */ 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 11250 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677,
|
|
/* 11265 */ 23546, 23547, 30771, 23546, 26527, 25156, 30790, 23546, 30813, 24321, 30837, 30846, 30862, 30876, 30888,
|
|
/* 11280 */ 30904, 30915, 26204, 22703, 30931, 26561, 35799, 30978, 26921, 26341, 27925, 30994, 31013, 31032, 31061,
|
|
/* 11295 */ 31045, 31097, 31131, 31147, 31183, 31227, 31261, 31277, 39237, 39476, 31293, 33748, 31328, 22212, 31363,
|
|
/* 11310 */ 31381, 41158, 23546, 23546, 40033, 23546, 22587, 32449, 31405, 47817, 28510, 31441, 31475, 46890, 31498,
|
|
/* 11325 */ 30304, 31538, 22625, 36744, 47681, 39677, 36943, 23698, 29973, 31554, 29930, 31590, 23708, 31634, 39997,
|
|
/* 11340 */ 31661, 48812, 31689, 31711, 31727, 31763, 31798, 31814, 29245, 31850, 40093, 31890, 34721, 31940, 35662,
|
|
/* 11355 */ 31956, 31986, 27076, 32035, 32066, 32093, 32133, 26241, 50755, 23546, 43683, 23546, 32169, 19239, 32192,
|
|
/* 11370 */ 32249, 22951, 24750, 43255, 32274, 47563, 32292, 45560, 22821, 32317, 22824, 42593, 48588, 50230, 35849,
|
|
/* 11385 */ 32356, 22804, 45665, 32384, 32405, 32421, 23807, 25150, 32478, 32497, 47176, 23546, 32524, 45835, 36145,
|
|
/* 11400 */ 40407, 31425, 32550, 44054, 32586, 34739, 22824, 32631, 32657, 30066, 33080, 32683, 47042, 40501, 29883,
|
|
/* 11415 */ 33199, 23546, 45717, 33237, 23546, 23546, 32701, 31115, 42955, 32563, 41728, 45894, 41614, 32608, 41433,
|
|
/* 11430 */ 33712, 42499, 35727, 30403, 47447, 28590, 32719, 48060, 32755, 32790, 42232, 33671, 32806, 37745, 39609,
|
|
/* 11445 */ 32837, 40736, 33730, 32892, 32931, 32953, 19435, 22586, 32974, 48106, 28046, 33009, 33027, 33047, 48381,
|
|
/* 11460 */ 35461, 47447, 40617, 22585, 47563, 50257, 22824, 33074, 36473, 36549, 33096, 40786, 36807, 32667, 39296,
|
|
/* 11475 */ 33119, 43227, 48451, 49953, 33140, 24763, 23318, 45645, 33156, 33172, 33217, 47559, 33030, 30691, 33266,
|
|
/* 11490 */ 33282, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 11505 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 11520 */ 22677, 23546, 23546, 33306, 23546, 26527, 33327, 33345, 25456, 24849, 33370, 33400, 23546, 33386, 33428,
|
|
/* 11535 */ 33437, 33453, 33464, 26204, 23546, 23546, 33480, 35799, 23546, 23546, 23546, 23546, 27288, 23546, 23546,
|
|
/* 11550 */ 34477, 23546, 34484, 31605, 33499, 33519, 43660, 33545, 33568, 27800, 23546, 33621, 23546, 44844, 33621,
|
|
/* 11565 */ 23546, 23546, 30997, 23546, 33640, 34051, 23546, 22587, 33661, 47563, 47563, 47563, 33687, 22824, 22824,
|
|
/* 11580 */ 22824, 43762, 33703, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 23546, 50621,
|
|
/* 11595 */ 23546, 23546, 23546, 33746, 48975, 47563, 47563, 47563, 43863, 37135, 22823, 22824, 22824, 22824, 34733,
|
|
/* 11610 */ 49439, 22804, 22804, 22804, 22804, 33764, 29885, 40883, 26241, 23546, 23546, 23546, 23546, 23546, 50620,
|
|
/* 11625 */ 23546, 20258, 23546, 48976, 47563, 47563, 46759, 47563, 47564, 22821, 22824, 22824, 37850, 22824, 22767,
|
|
/* 11640 */ 35849, 22804, 22804, 33781, 22804, 29879, 23672, 23807, 23546, 23546, 23546, 23546, 23546, 43159, 23546,
|
|
/* 11655 */ 47562, 47563, 47563, 31773, 29369, 22821, 22824, 22824, 49239, 22824, 28821, 22804, 22804, 22804, 33801,
|
|
/* 11670 */ 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 41728, 22824, 22824, 22824,
|
|
/* 11685 */ 41433, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824,
|
|
/* 11700 */ 22824, 33078, 22804, 22804, 31970, 33820, 23546, 23546, 22586, 44762, 47563, 23109, 33840, 22825, 34299,
|
|
/* 11715 */ 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673,
|
|
/* 11730 */ 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 23335,
|
|
/* 11745 */ 32233, 42307, 22729, 33859, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 11760 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 11775 */ 23546, 22677, 23546, 23546, 23546, 23546, 26527, 23546, 32176, 23546, 23546, 41552, 33893, 33902, 33918,
|
|
/* 11790 */ 33924, 33940, 33956, 33967, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 37894, 23546, 23546, 23546,
|
|
/* 11805 */ 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 28765, 41920, 23546, 23546, 44844,
|
|
/* 11820 */ 23546, 23546, 23546, 39585, 23546, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418, 22824,
|
|
/* 11835 */ 22824, 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 11850 */ 23546, 43177, 23546, 23546, 45738, 48975, 47563, 47563, 47563, 47563, 37135, 41960, 22824, 22824, 22824,
|
|
/* 11865 */ 22824, 47410, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546, 23546, 20340, 23546, 23178,
|
|
/* 11880 */ 20358, 23546, 23546, 20360, 33983, 47563, 47563, 34004, 47563, 47564, 22821, 22824, 36824, 22824, 22824,
|
|
/* 11895 */ 22767, 35849, 22804, 33785, 22804, 22804, 29879, 34024, 23546, 23546, 23546, 34050, 23546, 23546, 23546,
|
|
/* 11910 */ 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824, 30376, 22804, 22804, 22804,
|
|
/* 11925 */ 22804, 29883, 33199, 23546, 23546, 32147, 47539, 23546, 48973, 47563, 47563, 39206, 45209, 22824, 22824,
|
|
/* 11940 */ 43898, 27834, 22804, 22804, 34943, 30403, 47447, 34067, 47158, 34094, 23546, 34121, 32984, 34141, 34177,
|
|
/* 11955 */ 43533, 34196, 34244, 36447, 34263, 31970, 28608, 23546, 34315, 34336, 34355, 34372, 28875, 33605, 34412,
|
|
/* 11970 */ 34436, 34454, 31964, 47447, 46606, 43054, 32993, 34501, 34521, 30673, 34552, 36549, 46609, 47561, 23111,
|
|
/* 11985 */ 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030,
|
|
/* 12000 */ 33552, 39426, 43326, 34588, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 12015 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 12030 */ 23546, 23546, 22677, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369, 23546, 23546,
|
|
/* 12045 */ 23546, 23546, 19262, 39432, 32077, 26204, 41690, 23546, 26286, 34628, 23546, 23546, 23546, 34692, 23546,
|
|
/* 12060 */ 34693, 23546, 23546, 34656, 34689, 40521, 22887, 37164, 34396, 43815, 34709, 34755, 23546, 23546, 29501,
|
|
/* 12075 */ 44844, 26383, 30255, 23546, 23546, 41921, 23546, 23546, 23546, 22587, 47563, 47563, 32276, 47563, 27418,
|
|
/* 12090 */ 22824, 22824, 35655, 43762, 22804, 22804, 35850, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546,
|
|
/* 12105 */ 23546, 23546, 23546, 23546, 34780, 43953, 48975, 47563, 47563, 47563, 47563, 29859, 22823, 22824, 22824,
|
|
/* 12120 */ 22824, 22824, 30446, 22804, 22804, 22804, 22804, 22804, 34799, 33201, 23546, 34844, 23546, 23546, 23546,
|
|
/* 12135 */ 23546, 23546, 23546, 23546, 42714, 48976, 34862, 47563, 47563, 47563, 47564, 34882, 22824, 22824, 22824,
|
|
/* 12150 */ 22824, 22767, 30383, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546, 34898, 23546, 23546,
|
|
/* 12165 */ 23546, 23546, 47562, 47563, 47563, 49594, 27195, 22821, 22824, 22824, 22824, 49007, 30376, 22804, 22804,
|
|
/* 12180 */ 22804, 28251, 29883, 33199, 23546, 23546, 45156, 23546, 23546, 48973, 47563, 47563, 47563, 45209, 22824,
|
|
/* 12195 */ 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563,
|
|
/* 12210 */ 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 28617, 23546, 48860, 47563, 47563, 23109, 22824,
|
|
/* 12225 */ 22825, 22804, 22804, 48020, 34919, 46606, 50168, 47563, 35289, 22824, 34937, 22804, 34959, 46609, 47561,
|
|
/* 12240 */ 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559,
|
|
/* 12255 */ 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 12270 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 12285 */ 23546, 23546, 23546, 22677, 23546, 23546, 26217, 23546, 26527, 28994, 29429, 32937, 21397, 21407, 19607,
|
|
/* 12300 */ 19616, 34984, 34999, 35011, 35027, 35038, 26204, 23546, 23546, 23546, 21159, 35548, 23546, 23546, 29013,
|
|
/* 12315 */ 35054, 32876, 23546, 35263, 35074, 35112, 39498, 35166, 47961, 27448, 49402, 46199, 35202, 23546, 23546,
|
|
/* 12330 */ 23546, 38910, 23546, 47123, 35227, 23546, 23546, 23546, 35244, 44990, 22587, 44754, 35279, 47563, 35324,
|
|
/* 12345 */ 35372, 48187, 22824, 29333, 35407, 49176, 35434, 22804, 35477, 39677, 36943, 23546, 35515, 50019, 41319,
|
|
/* 12360 */ 42187, 35535, 23546, 19253, 43384, 35575, 35592, 35612, 35186, 47563, 42920, 37391, 20600, 22823, 35386,
|
|
/* 12375 */ 22824, 40181, 35635, 35678, 29350, 22804, 33765, 35713, 35750, 48433, 33201, 23546, 23546, 23546, 23546,
|
|
/* 12390 */ 35766, 20349, 35815, 44388, 23546, 23546, 40380, 47253, 47563, 47563, 41209, 36250, 35833, 43893, 22824,
|
|
/* 12405 */ 22824, 48653, 43541, 43789, 35866, 22804, 22804, 31917, 36853, 33195, 23546, 19730, 35885, 35914, 32534,
|
|
/* 12420 */ 35930, 35957, 45488, 36011, 28363, 36030, 36050, 36074, 36103, 39870, 50408, 42260, 32597, 45635, 22804,
|
|
/* 12435 */ 36124, 36169, 36204, 27085, 31863, 36220, 46659, 44955, 21826, 38142, 32958, 36266, 47872, 36286, 36321,
|
|
/* 12450 */ 36366, 36384, 36409, 36435, 36471, 36489, 36514, 36540, 36572, 23546, 23546, 18340, 36595, 30632, 36619,
|
|
/* 12465 */ 36640, 39370, 36661, 36681, 36702, 36740, 36760, 31970, 23546, 36781, 18841, 22586, 47563, 47563, 23109,
|
|
/* 12480 */ 22824, 22825, 22804, 22804, 31964, 34034, 46606, 22585, 31741, 36801, 36823, 36840, 38424, 36549, 46609,
|
|
/* 12495 */ 36869, 23111, 30673, 39296, 36886, 35338, 36933, 36966, 48975, 23107, 30672, 23141, 24756, 33030, 33551,
|
|
/* 12510 */ 42313, 47646, 36993, 39426, 42307, 22729, 23448, 37021, 23363, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 12525 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 12540 */ 23546, 23546, 23546, 23546, 22677, 23546, 23546, 39988, 23546, 26527, 23546, 23546, 23546, 23546, 21369,
|
|
/* 12555 */ 50028, 21708, 39996, 40225, 24990, 37071, 37082, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 23546,
|
|
/* 12570 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27800, 23546,
|
|
/* 12585 */ 23546, 23546, 44844, 23546, 23546, 23546, 23546, 31016, 23546, 23546, 23546, 22587, 47563, 47563, 47563,
|
|
/* 12600 */ 47563, 27418, 22824, 27420, 22824, 43762, 22804, 22804, 48012, 22804, 39677, 36943, 23546, 23546, 23546,
|
|
/* 12615 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823,
|
|
/* 12630 */ 22824, 22824, 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546, 23546,
|
|
/* 12645 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824,
|
|
/* 12660 */ 22824, 22824, 22824, 22767, 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546, 23546,
|
|
/* 12675 */ 23546, 23546, 23546, 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824, 30376,
|
|
/* 12690 */ 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563,
|
|
/* 12705 */ 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560,
|
|
/* 12720 */ 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563,
|
|
/* 12735 */ 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549,
|
|
/* 12750 */ 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030,
|
|
/* 12765 */ 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546,
|
|
/* 12780 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 12795 */ 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 25524, 23546, 26527, 23546, 23546, 23546, 23546,
|
|
/* 12810 */ 21369, 23546, 23546, 23546, 23546, 19262, 39432, 32077, 26204, 23546, 23546, 23546, 35799, 23546, 23546,
|
|
/* 12825 */ 37098, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27800,
|
|
/* 12840 */ 23546, 23546, 23546, 44844, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563,
|
|
/* 12855 */ 47563, 47563, 27418, 22824, 22824, 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546,
|
|
/* 12870 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135,
|
|
/* 12885 */ 22823, 22824, 22824, 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 37115,
|
|
/* 12900 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48976, 37134, 47563, 47563, 47563, 47564, 37151,
|
|
/* 12915 */ 22824, 22824, 22824, 22824, 22767, 28828, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546,
|
|
/* 12930 */ 23546, 23546, 23546, 23546, 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824,
|
|
/* 12945 */ 30376, 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563,
|
|
/* 12960 */ 47563, 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546,
|
|
/* 12975 */ 47560, 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563,
|
|
/* 12990 */ 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804,
|
|
/* 13005 */ 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756,
|
|
/* 13020 */ 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546,
|
|
/* 13035 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 13050 */ 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 41164, 23546, 26527, 23546, 34764, 23546,
|
|
/* 13065 */ 19155, 37185, 37221, 37234, 37250, 37256, 37272, 37288, 37299, 26204, 23546, 37315, 23546, 35799, 23546,
|
|
/* 13080 */ 43426, 26746, 23546, 23546, 37335, 23546, 32153, 42194, 37334, 37351, 37380, 37407, 37443, 40833, 37430,
|
|
/* 13095 */ 32821, 37459, 23546, 23546, 34612, 23546, 23546, 40581, 34220, 23546, 41122, 29193, 49795, 34228, 47262,
|
|
/* 13110 */ 37494, 29549, 41774, 37514, 42784, 22904, 45886, 37530, 38036, 37570, 36188, 37589, 23034, 37618, 28342,
|
|
/* 13125 */ 23546, 23546, 23546, 23546, 50126, 23546, 23546, 23546, 23546, 23546, 48975, 28498, 44484, 47563, 28434,
|
|
/* 13140 */ 44023, 37641, 37671, 39810, 30349, 22824, 39853, 47704, 29645, 22804, 49383, 22804, 37657, 33201, 23546,
|
|
/* 13155 */ 23546, 50909, 37693, 23546, 32019, 38379, 23546, 23546, 23546, 48976, 47563, 47563, 46474, 32220, 37710,
|
|
/* 13170 */ 22821, 22824, 22824, 49321, 37734, 37761, 35849, 22804, 22804, 37788, 37809, 29879, 33195, 23546, 37872,
|
|
/* 13185 */ 23546, 23546, 37889, 23546, 23546, 23546, 47562, 27357, 47563, 47563, 27195, 22821, 40293, 22824, 22824,
|
|
/* 13200 */ 22824, 30376, 34247, 22804, 22804, 22804, 29883, 33199, 37910, 31075, 23546, 37928, 47744, 48973, 37953,
|
|
/* 13215 */ 47563, 47563, 37979, 38003, 22824, 22824, 38027, 38061, 22804, 22804, 38085, 47447, 23404, 23546, 28599,
|
|
/* 13230 */ 23546, 47560, 31782, 47563, 23113, 38011, 22824, 33078, 33721, 22804, 31970, 23546, 21592, 23546, 22586,
|
|
/* 13245 */ 47563, 50097, 23109, 22824, 40810, 22804, 22804, 38110, 47447, 46606, 22585, 47563, 24761, 22824, 30673,
|
|
/* 13260 */ 22804, 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141,
|
|
/* 13275 */ 33290, 45056, 38132, 38158, 38179, 33552, 39426, 27505, 38215, 23448, 23351, 23363, 23546, 23546, 23546,
|
|
/* 13290 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 13305 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23648, 23546, 26527, 23546, 26305,
|
|
/* 13320 */ 23546, 23546, 29594, 20530, 20539, 38250, 38264, 38273, 38289, 38300, 26364, 23546, 23948, 23546, 35799,
|
|
/* 13335 */ 23546, 34320, 23546, 23546, 23546, 23948, 23546, 35554, 36579, 23947, 35559, 38316, 33588, 36393, 38336,
|
|
/* 13350 */ 43066, 27800, 23546, 23546, 38357, 44844, 23546, 39344, 42555, 23546, 39071, 23546, 23546, 38375, 41192,
|
|
/* 13365 */ 48530, 47563, 47812, 38395, 28750, 22824, 42121, 31482, 43762, 38449, 22804, 38419, 38440, 32050, 38473,
|
|
/* 13380 */ 38509, 46688, 34783, 23546, 23546, 23546, 23546, 23546, 38530, 23546, 23546, 48975, 47883, 38550, 42949,
|
|
/* 13395 */ 47563, 37135, 22823, 38568, 30084, 22824, 22824, 49439, 42031, 34293, 41837, 22804, 22804, 29885, 33201,
|
|
/* 13410 */ 23546, 38929, 23546, 38602, 23546, 44369, 37873, 23791, 38621, 23546, 48976, 27031, 38642, 47563, 38659,
|
|
/* 13425 */ 47564, 38683, 47916, 22824, 22824, 38702, 33843, 35849, 39277, 22804, 33804, 38724, 29879, 33195, 23546,
|
|
/* 13440 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824,
|
|
/* 13455 */ 22824, 22824, 30376, 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973,
|
|
/* 13470 */ 47563, 47563, 47563, 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 36556, 23546, 23546,
|
|
/* 13485 */ 23546, 23546, 47560, 38744, 47563, 30559, 22824, 22824, 46066, 22804, 22804, 31970, 23546, 23546, 49685,
|
|
/* 13500 */ 22586, 47563, 47563, 23109, 47427, 22825, 22804, 35452, 31964, 47447, 46606, 22585, 47563, 24761, 22824,
|
|
/* 13515 */ 30673, 22804, 36549, 38761, 47561, 38782, 38802, 43621, 23464, 38824, 38844, 33550, 48975, 23107, 30672,
|
|
/* 13530 */ 23141, 24756, 33030, 33551, 47559, 33030, 38045, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546,
|
|
/* 13545 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 13560 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23810, 23546, 46101, 23546,
|
|
/* 13575 */ 29522, 38860, 33103, 38895, 38945, 38984, 38970, 38989, 38954, 39005, 39016, 26204, 23546, 24981, 39032,
|
|
/* 13590 */ 39052, 39135, 26183, 26715, 27157, 23546, 39087, 39123, 35972, 23871, 39151, 32436, 39187, 39222, 39262,
|
|
/* 13605 */ 39312, 39360, 27800, 27271, 23546, 23546, 40856, 29748, 35256, 26269, 47340, 39386, 28121, 33483, 41086,
|
|
/* 13620 */ 39406, 48539, 39200, 45029, 47563, 29260, 30036, 22824, 47369, 43762, 41883, 39448, 22787, 22804, 32852,
|
|
/* 13635 */ 39469, 27673, 33624, 23546, 39492, 23546, 23546, 30166, 23546, 19760, 23546, 25974, 48975, 39514, 47563,
|
|
/* 13650 */ 47563, 47563, 37135, 37987, 39541, 30332, 22824, 22824, 49439, 34278, 22804, 48403, 22804, 22804, 29885,
|
|
/* 13665 */ 33201, 23546, 23546, 23546, 23546, 49277, 23546, 23546, 39561, 44662, 39580, 20000, 47563, 47563, 38745,
|
|
/* 13680 */ 47563, 41583, 39601, 22824, 22824, 42751, 22824, 39625, 36344, 22804, 22804, 49650, 22804, 39663, 33195,
|
|
/* 13695 */ 39390, 39701, 21803, 40964, 23546, 28563, 39737, 39764, 42864, 39780, 30015, 27711, 27195, 22821, 39796,
|
|
/* 13710 */ 39832, 37838, 39869, 30376, 37543, 39886, 39910, 39936, 47724, 39958, 49087, 33227, 48840, 39980, 40013,
|
|
/* 13725 */ 20680, 50204, 40049, 40067, 40083, 45419, 22824, 40109, 40125, 36765, 22804, 40151, 40167, 47447, 40217,
|
|
/* 13740 */ 23546, 23546, 19121, 40241, 48114, 40263, 48445, 44596, 40286, 40309, 42808, 40330, 30581, 40353, 23546,
|
|
/* 13755 */ 23546, 40374, 28485, 40396, 27517, 40433, 40468, 40722, 40488, 31964, 30114, 48477, 40517, 36058, 24761,
|
|
/* 13770 */ 45115, 30673, 40537, 36549, 40555, 19020, 29663, 30673, 40603, 40652, 40668, 40708, 40752, 40779, 40802,
|
|
/* 13785 */ 40826, 40849, 24756, 33030, 33551, 47559, 33030, 33552, 40872, 40899, 22729, 23448, 40923, 23363, 23546,
|
|
/* 13800 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 13815 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23546, 40939, 26527,
|
|
/* 13830 */ 23546, 35150, 40960, 23546, 26932, 40980, 40989, 41005, 41019, 41028, 41044, 41055, 26204, 41071, 27176,
|
|
/* 13845 */ 35142, 41110, 22748, 41145, 23546, 41180, 29961, 41225, 35127, 41274, 41299, 41335, 41350, 41366, 41401,
|
|
/* 13860 */ 41487, 41458, 41474, 41503, 23546, 18442, 27630, 46235, 23546, 41314, 19147, 41528, 40358, 23546, 23546,
|
|
/* 13875 */ 45375, 22587, 47563, 36909, 41568, 47891, 27418, 38686, 27953, 41607, 41630, 22804, 23213, 41665, 46983,
|
|
/* 13890 */ 39677, 36943, 23546, 45937, 23546, 37118, 23546, 39337, 41681, 33824, 35058, 38605, 23546, 41717, 41752,
|
|
/* 13905 */ 28167, 41769, 47563, 43475, 41790, 42050, 41800, 22824, 22824, 41816, 41853, 50302, 41874, 22804, 49204,
|
|
/* 13920 */ 29885, 47656, 41907, 23546, 38879, 36785, 23546, 23546, 23546, 23546, 23546, 39036, 48976, 47563, 46791,
|
|
/* 13935 */ 34008, 47563, 47564, 22821, 22824, 44589, 46895, 22824, 22767, 35849, 22804, 41937, 38457, 22804, 29879,
|
|
/* 13950 */ 33195, 23546, 23546, 49550, 23546, 45766, 23546, 23546, 23546, 47562, 47563, 47563, 47563, 32301, 41958,
|
|
/* 13965 */ 22824, 22824, 22824, 46046, 28243, 22804, 22804, 22804, 22804, 41977, 33199, 20951, 42005, 23546, 23546,
|
|
/* 13980 */ 23546, 44350, 47563, 31827, 47563, 41591, 22824, 49433, 22824, 28884, 22804, 42026, 22804, 30403, 31211,
|
|
/* 13995 */ 23546, 23546, 23546, 23546, 27328, 40247, 47563, 27241, 38708, 22824, 42285, 31924, 22804, 29685, 23546,
|
|
/* 14010 */ 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964, 22739, 46606, 49667, 46712,
|
|
/* 14025 */ 38403, 42047, 44103, 22804, 44463, 42066, 42221, 42103, 42137, 42175, 42210, 42248, 42276, 42301, 48975,
|
|
/* 14040 */ 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 35697, 39426, 36136, 22729, 23448, 42329, 23363,
|
|
/* 14055 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 14070 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23546, 26377,
|
|
/* 14085 */ 26527, 23546, 23546, 42378, 33354, 42400, 20758, 23546, 26429, 42436, 42448, 42464, 42475, 26204, 23546,
|
|
/* 14100 */ 23546, 25120, 35799, 23546, 23546, 23546, 31573, 31305, 23546, 23546, 31567, 25118, 23546, 48973, 37963,
|
|
/* 14115 */ 23115, 42491, 47011, 42515, 27800, 23546, 42549, 23546, 44844, 23546, 38766, 18352, 23546, 39064, 23546,
|
|
/* 14130 */ 23546, 22159, 22587, 48548, 38163, 45793, 48521, 47316, 42571, 42591, 47404, 42609, 44147, 39942, 22845,
|
|
/* 14145 */ 35499, 47057, 42343, 42636, 23546, 42657, 23546, 42010, 42641, 26759, 23546, 23546, 23546, 23546, 48975,
|
|
/* 14160 */ 47563, 47563, 36917, 47563, 37135, 22823, 22824, 22824, 42693, 22824, 49439, 22804, 22804, 28847, 22804,
|
|
/* 14175 */ 22804, 29885, 45066, 44270, 23546, 42713, 23546, 23546, 26553, 42677, 42730, 31574, 23546, 48976, 47563,
|
|
/* 14190 */ 48931, 47563, 47563, 47564, 42748, 22824, 42767, 22824, 22824, 34180, 35849, 22804, 42800, 22804, 22804,
|
|
/* 14205 */ 29879, 33195, 23546, 44983, 23546, 23546, 23546, 23546, 42824, 23546, 47562, 47563, 36034, 47563, 27749,
|
|
/* 14220 */ 22821, 22824, 22824, 42844, 22824, 48373, 22804, 22804, 38192, 22804, 29883, 33199, 23546, 23546, 23546,
|
|
/* 14235 */ 23546, 23546, 48973, 47563, 47563, 47563, 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403,
|
|
/* 14250 */ 47447, 23546, 18259, 23546, 23546, 42862, 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804, 39325,
|
|
/* 14265 */ 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585,
|
|
/* 14280 */ 47563, 24761, 22824, 30673, 22804, 48281, 42880, 42913, 28181, 33529, 39296, 42936, 24759, 33031, 33550,
|
|
/* 14295 */ 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351,
|
|
/* 14310 */ 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 14325 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23546,
|
|
/* 14340 */ 23546, 26527, 23546, 23546, 23546, 23546, 21369, 23546, 23546, 23546, 23546, 19262, 39432, 32077, 26204,
|
|
/* 14355 */ 23546, 23546, 23546, 35799, 23546, 23546, 38514, 23546, 23546, 23546, 44073, 44076, 50916, 44069, 36233,
|
|
/* 14370 */ 42971, 33598, 40201, 40539, 43066, 29275, 42987, 23546, 23546, 44844, 23546, 23546, 23546, 23546, 23546,
|
|
/* 14385 */ 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418, 22824, 22824, 22824, 43762, 22804, 22804,
|
|
/* 14400 */ 22804, 22804, 39677, 36943, 23546, 23546, 23546, 43004, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 14415 */ 48975, 47563, 47563, 47563, 47563, 37135, 43023, 22824, 22824, 22824, 22824, 43497, 22804, 22804, 22804,
|
|
/* 14430 */ 22804, 22804, 29885, 33201, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48976,
|
|
/* 14445 */ 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824, 22767, 35849, 22804, 22804, 22804,
|
|
/* 14460 */ 22804, 29879, 33195, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 47562, 47563, 47563, 47563,
|
|
/* 14475 */ 27195, 22821, 22824, 22824, 22824, 22824, 30376, 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546,
|
|
/* 14490 */ 23546, 23546, 23546, 48973, 47563, 47563, 47563, 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804,
|
|
/* 14505 */ 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804,
|
|
/* 14520 */ 31970, 23546, 23546, 23546, 22586, 30422, 47563, 23109, 38579, 22825, 32685, 22804, 31964, 47447, 46606,
|
|
/* 14535 */ 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031,
|
|
/* 14550 */ 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448,
|
|
/* 14565 */ 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 14580 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546,
|
|
/* 14595 */ 23546, 22195, 38234, 23546, 23546, 22088, 23546, 31645, 43040, 31695, 43090, 43103, 43112, 43128, 43139,
|
|
/* 14610 */ 26204, 23546, 31341, 32732, 35799, 43366, 43155, 43175, 36087, 40692, 50768, 31673, 43193, 32904, 31522,
|
|
/* 14625 */ 31081, 43243, 43271, 43287, 43315, 43342, 40683, 23546, 23546, 23546, 45381, 43358, 40568, 43382, 43400,
|
|
/* 14640 */ 43418, 23546, 23546, 30119, 43208, 47563, 43442, 27364, 43462, 43491, 28908, 22824, 43513, 43557, 22804,
|
|
/* 14655 */ 43588, 41858, 43607, 43637, 43676, 23546, 23546, 23546, 18266, 35576, 23546, 23546, 43699, 43717, 43736,
|
|
/* 14670 */ 20331, 32703, 47563, 41378, 47563, 46720, 41989, 43754, 29628, 22824, 22824, 43651, 43778, 43812, 46171,
|
|
/* 14685 */ 22804, 44212, 43831, 43879, 33201, 23546, 23546, 45346, 23546, 43914, 43941, 23546, 27809, 23863, 43976,
|
|
/* 14700 */ 44003, 47563, 48620, 44039, 35181, 49990, 44092, 22824, 45449, 39545, 44119, 42697, 44138, 22804, 44163,
|
|
/* 14715 */ 27998, 44211, 35734, 33195, 39171, 23546, 23546, 23067, 44228, 32012, 23546, 44255, 36870, 46433, 23003,
|
|
/* 14730 */ 47563, 27195, 22821, 44297, 46134, 22824, 22824, 30376, 39647, 22804, 44322, 22804, 41442, 44340, 23546,
|
|
/* 14745 */ 44366, 44385, 23546, 23546, 34339, 44404, 47563, 47563, 44422, 22824, 22824, 22824, 44438, 22804, 22804,
|
|
/* 14760 */ 22804, 44454, 47447, 48298, 23546, 23546, 23546, 44479, 47563, 47563, 46130, 22824, 22824, 44500, 22804,
|
|
/* 14775 */ 22804, 44520, 23546, 40027, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447,
|
|
/* 14790 */ 46606, 22585, 47563, 24761, 22824, 30673, 22804, 38094, 49704, 44555, 44579, 44612, 44650, 23464, 24759,
|
|
/* 14805 */ 33031, 33550, 44685, 30652, 34420, 36724, 24756, 33030, 33551, 47559, 33030, 45310, 44716, 44744, 32641,
|
|
/* 14820 */ 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 14835 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677, 23546,
|
|
/* 14850 */ 23546, 23546, 25786, 26527, 44778, 28976, 18999, 44795, 44824, 44860, 44808, 44885, 44899, 44911, 44927,
|
|
/* 14865 */ 44938, 26204, 44954, 40587, 23546, 44971, 23546, 23546, 43960, 23546, 50132, 23546, 45006, 35089, 26325,
|
|
/* 14880 */ 35096, 32207, 45025, 45045, 44306, 45082, 45103, 27800, 35987, 37200, 44669, 44844, 34640, 23546, 23546,
|
|
/* 14895 */ 23546, 23546, 45137, 45172, 23546, 19324, 45188, 43446, 47563, 47563, 45233, 45249, 45268, 22824, 43762,
|
|
/* 14910 */ 45291, 40314, 22804, 22804, 39677, 36943, 37912, 23546, 23546, 45326, 45362, 23546, 23546, 23546, 23546,
|
|
/* 14925 */ 23546, 37055, 48975, 48512, 31834, 47563, 47563, 46028, 22823, 45397, 45415, 22824, 22824, 36333, 38728,
|
|
/* 14940 */ 44324, 22804, 22804, 22804, 45435, 33201, 23546, 23546, 26251, 43720, 23546, 45465, 26758, 45484, 45504,
|
|
/* 14955 */ 23546, 45539, 47563, 47563, 47285, 43856, 45576, 45600, 22824, 22824, 47994, 48169, 45624, 45661, 22804,
|
|
/* 14970 */ 22804, 42152, 45681, 29879, 45697, 45713, 45733, 23546, 25942, 23546, 23546, 30214, 45754, 47562, 47563,
|
|
/* 14985 */ 27730, 45789, 27195, 22821, 22824, 47619, 47969, 22824, 30376, 22804, 22804, 45809, 22804, 29883, 33199,
|
|
/* 15000 */ 23546, 21039, 23546, 49467, 37049, 48973, 47563, 45851, 48716, 45584, 47934, 22824, 45868, 48003, 35869,
|
|
/* 15015 */ 22804, 45910, 30403, 47447, 23546, 48332, 18869, 22345, 47560, 47563, 47563, 23113, 22824, 22824, 33078,
|
|
/* 15030 */ 22804, 22804, 32000, 21288, 23546, 45931, 45953, 47563, 37498, 23109, 22824, 40444, 22804, 34438, 36455,
|
|
/* 15045 */ 45997, 44634, 19558, 46021, 50382, 46044, 28056, 22804, 34468, 46609, 35619, 30711, 46062, 46082, 23464,
|
|
/* 15060 */ 24759, 33031, 33550, 19538, 36296, 49945, 23141, 46117, 38586, 45823, 48503, 46150, 46187, 39426, 42307,
|
|
/* 15075 */ 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15090 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22677,
|
|
/* 15105 */ 23546, 23546, 23546, 23737, 26527, 23546, 23546, 34968, 23546, 46215, 26881, 26893, 46251, 46267, 46279,
|
|
/* 15120 */ 46295, 46306, 26204, 46322, 23241, 25565, 35799, 25341, 42889, 46340, 22204, 44869, 46352, 46368, 46377,
|
|
/* 15135 */ 46393, 46349, 46420, 46455, 46490, 46547, 46518, 46534, 32867, 46005, 19766, 34600, 44844, 46563, 23546,
|
|
/* 15150 */ 26188, 46580, 41258, 46596, 46625, 46675, 46736, 46784, 46807, 46842, 38552, 46877, 45877, 46911, 46944,
|
|
/* 15165 */ 36419, 46977, 46999, 47027, 27557, 39677, 37035, 47093, 47115, 35228, 23546, 47139, 47174, 23546, 47766,
|
|
/* 15180 */ 23546, 49770, 47192, 20591, 47219, 47244, 47278, 38643, 47301, 41736, 47356, 47391, 47426, 31459, 49439,
|
|
/* 15195 */ 36524, 39920, 40135, 22804, 35492, 33058, 47443, 23546, 20251, 43007, 37694, 47465, 46324, 47491, 47518,
|
|
/* 15210 */ 23546, 47535, 47555, 39525, 47841, 47563, 34125, 47580, 47616, 47635, 39844, 22824, 37169, 48362, 35849,
|
|
/* 15225 */ 47672, 47697, 22804, 41891, 47720, 33195, 23058, 47740, 23546, 45516, 47760, 23546, 47782, 18627, 47798,
|
|
/* 15240 */ 50186, 47833, 47857, 27195, 47907, 47932, 47950, 47985, 48036, 39636, 46165, 37602, 50472, 50517, 37554,
|
|
/* 15255 */ 27477, 48056, 18311, 23546, 35780, 48076, 48095, 44700, 47563, 47563, 48130, 48155, 37677, 22824, 48203,
|
|
/* 15270 */ 48236, 49183, 22804, 48272, 47447, 18372, 48297, 48314, 48330, 41202, 45981, 33877, 34811, 48348, 48040,
|
|
/* 15285 */ 48397, 48419, 37793, 31970, 48467, 23546, 23546, 48493, 46466, 31618, 34505, 49612, 47069, 35443, 43299,
|
|
/* 15300 */ 48564, 28304, 47475, 19993, 48611, 37364, 48636, 48669, 43591, 36549, 46609, 47561, 23111, 30673, 39296,
|
|
/* 15315 */ 23464, 24759, 33031, 33550, 48975, 23107, 30672, 44177, 29729, 48685, 36498, 48701, 45275, 48737, 39426,
|
|
/* 15330 */ 42307, 22729, 39685, 48765, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15345 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15360 */ 22677, 23546, 23546, 23546, 23546, 48828, 23546, 23546, 48856, 23546, 35941, 30944, 30953, 48876, 30953,
|
|
/* 15375 */ 30962, 48892, 48903, 26204, 23546, 23546, 23546, 40636, 23546, 26348, 23546, 23546, 23546, 23546, 26345,
|
|
/* 15390 */ 23546, 38923, 23546, 48973, 48919, 48178, 48947, 38808, 37005, 31513, 38873, 23546, 23546, 44844, 23546,
|
|
/* 15405 */ 23546, 27897, 48963, 23546, 23546, 23546, 23546, 48971, 46750, 47563, 47563, 34356, 48992, 22824, 22824,
|
|
/* 15420 */ 22824, 36305, 49028, 22804, 22804, 22804, 49052, 44728, 49080, 23546, 49103, 45341, 23546, 23546, 42732,
|
|
/* 15435 */ 48802, 47595, 38359, 35596, 48975, 47563, 49130, 41385, 43221, 47228, 22823, 48595, 46928, 41415, 49146,
|
|
/* 15450 */ 49164, 22804, 49199, 49220, 45915, 29388, 37824, 33201, 23546, 25346, 23546, 26261, 23546, 23546, 23546,
|
|
/* 15465 */ 49474, 23546, 23546, 48976, 33503, 47563, 47563, 47563, 47564, 49236, 37414, 22824, 22824, 22824, 22767,
|
|
/* 15480 */ 49255, 36180, 22804, 22804, 22804, 29879, 33195, 49272, 23546, 49293, 23546, 23546, 23546, 23546, 28581,
|
|
/* 15495 */ 36243, 47563, 47563, 47563, 27195, 49311, 22824, 22824, 22824, 22824, 37772, 22804, 22804, 22804, 22804,
|
|
/* 15510 */ 29883, 46502, 23546, 23546, 50321, 46564, 23546, 30276, 23289, 47563, 47563, 37718, 49344, 22824, 22824,
|
|
/* 15525 */ 30514, 49377, 22804, 22804, 42620, 47447, 39101, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824,
|
|
/* 15540 */ 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804,
|
|
/* 15555 */ 22804, 31964, 47447, 46606, 22585, 46439, 24761, 43524, 30673, 49399, 36549, 46609, 47561, 23111, 30673,
|
|
/* 15570 */ 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 49418, 45121, 44624, 47559, 33030, 33552,
|
|
/* 15585 */ 39426, 32368, 49455, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15600 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15615 */ 23546, 22677, 23546, 23546, 23546, 23546, 49490, 49547, 33412, 49525, 23546, 34105, 23546, 33409, 49544,
|
|
/* 15630 */ 42420, 41283, 49566, 49577, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15645 */ 23546, 23546, 23546, 23546, 48973, 49593, 35299, 27962, 22805, 43066, 27800, 23546, 33329, 27613, 44844,
|
|
/* 15660 */ 23546, 23546, 23546, 23546, 23546, 32481, 23546, 23546, 22587, 32570, 47563, 46861, 47563, 27418, 49610,
|
|
/* 15675 */ 22824, 32331, 43762, 42159, 22804, 27215, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546, 37318,
|
|
/* 15690 */ 23546, 23546, 23546, 20322, 23546, 48975, 47563, 47563, 49628, 47563, 37135, 22823, 22824, 32615, 22824,
|
|
/* 15705 */ 22824, 49439, 22804, 22804, 49645, 22804, 22804, 29885, 33201, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15720 */ 23546, 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824,
|
|
/* 15735 */ 22767, 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15750 */ 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824, 30376, 22804, 22804, 22804,
|
|
/* 15765 */ 22804, 29883, 33199, 23546, 23546, 49666, 23546, 23546, 48973, 47563, 47563, 47563, 45209, 22824, 22824,
|
|
/* 15780 */ 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 49683, 23546, 23546, 47560, 47563, 47563, 23113,
|
|
/* 15795 */ 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825,
|
|
/* 15810 */ 22804, 22804, 31964, 47447, 49701, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111,
|
|
/* 15825 */ 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030,
|
|
/* 15840 */ 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15855 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15870 */ 23546, 23546, 22677, 23546, 23546, 23546, 23546, 49720, 23546, 50953, 23546, 25809, 49755, 49786, 23546,
|
|
/* 15885 */ 49811, 49825, 49837, 49853, 49864, 26204, 23546, 23546, 23546, 35799, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15900 */ 23546, 23546, 23546, 23546, 23546, 48973, 27387, 22824, 49893, 38199, 49880, 34211, 23546, 23546, 23546,
|
|
/* 15915 */ 44844, 23546, 23546, 23546, 23546, 42672, 23546, 23546, 23546, 22587, 47563, 47563, 47563, 47563, 27418,
|
|
/* 15930 */ 22824, 22824, 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15945 */ 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824, 22824,
|
|
/* 15960 */ 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546, 23546, 23546, 23546,
|
|
/* 15975 */ 23546, 49917, 23546, 23546, 23546, 22167, 47563, 47563, 47563, 47563, 47564, 49936, 22824, 22824, 22824,
|
|
/* 15990 */ 22824, 22767, 49969, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 45149, 23546, 23546, 23546,
|
|
/* 16005 */ 23546, 23546, 47562, 47563, 49988, 47563, 50006, 22821, 22824, 48578, 22824, 41424, 30376, 22804, 39894,
|
|
/* 16020 */ 22804, 32389, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 45209, 22824,
|
|
/* 16035 */ 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563, 47563,
|
|
/* 16050 */ 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109, 22824,
|
|
/* 16065 */ 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609, 47561,
|
|
/* 16080 */ 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551, 47559,
|
|
/* 16095 */ 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 16110 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 16125 */ 23546, 23546, 23546, 26445, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369, 23546,
|
|
/* 16140 */ 23546, 23546, 23546, 41512, 50052, 50063, 26204, 23546, 23546, 23546, 35799, 50079, 30464, 23546, 23546,
|
|
/* 16155 */ 23546, 23546, 32774, 23546, 41129, 32770, 46701, 50096, 40191, 28190, 22805, 43066, 27800, 23546, 23546,
|
|
/* 16170 */ 23546, 50113, 28719, 34485, 45773, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 29611, 47563, 27026,
|
|
/* 16185 */ 27418, 22824, 35645, 28383, 43762, 22804, 22921, 22804, 48250, 39677, 50148, 50164, 23546, 23546, 23546,
|
|
/* 16200 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135, 22823, 22824,
|
|
/* 16215 */ 22824, 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546, 23546, 23546,
|
|
/* 16230 */ 23546, 23546, 41250, 23546, 23546, 23546, 48976, 47563, 47563, 50184, 47563, 45852, 22821, 22824, 38786,
|
|
/* 16245 */ 22824, 22824, 45252, 35849, 22804, 48256, 22804, 22804, 29879, 33195, 48079, 23546, 23546, 23546, 23546,
|
|
/* 16260 */ 23546, 23546, 23546, 47562, 50202, 47563, 47563, 27195, 22821, 50220, 22824, 22824, 22824, 30376, 48220,
|
|
/* 16275 */ 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563, 47563, 45209,
|
|
/* 16290 */ 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546, 47560, 47563,
|
|
/* 16305 */ 47563, 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563, 47563, 23109,
|
|
/* 16320 */ 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549, 46609,
|
|
/* 16335 */ 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030, 33551,
|
|
/* 16350 */ 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 16365 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 16380 */ 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546, 21369,
|
|
/* 16395 */ 23546, 23546, 23546, 23546, 19262, 39432, 32077, 26204, 21798, 23546, 23546, 35799, 23546, 23546, 46652,
|
|
/* 16410 */ 23546, 23546, 23546, 23546, 46656, 23546, 23546, 50246, 28439, 22824, 50294, 36350, 50281, 47331, 23546,
|
|
/* 16425 */ 29448, 23546, 44844, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 35817, 22587, 47563, 47563, 47563,
|
|
/* 16440 */ 27723, 27418, 22824, 22824, 27861, 43762, 22804, 22804, 22804, 48212, 39677, 36943, 23546, 50318, 23546,
|
|
/* 16455 */ 23546, 23546, 23546, 23546, 23546, 37099, 23546, 23546, 48975, 38667, 47563, 36014, 47563, 37135, 22823,
|
|
/* 16470 */ 50337, 22824, 46961, 22824, 49439, 28018, 22804, 22804, 50356, 22804, 29885, 33201, 23546, 43738, 23546,
|
|
/* 16485 */ 23546, 23546, 23546, 23546, 38534, 23546, 23546, 48976, 47563, 50376, 47563, 47563, 47564, 50398, 41961,
|
|
/* 16500 */ 50424, 22824, 22824, 22767, 50443, 28403, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546, 23546,
|
|
/* 16515 */ 23546, 23546, 21488, 23546, 47562, 47563, 31747, 47563, 34161, 22821, 22824, 43024, 22824, 22824, 50464,
|
|
/* 16530 */ 22804, 22804, 50488, 22804, 43844, 33199, 23546, 23546, 18921, 23546, 23546, 48973, 47563, 47563, 47563,
|
|
/* 16545 */ 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 31241, 23546, 23546, 39165, 23546, 29133,
|
|
/* 16560 */ 47563, 47563, 33578, 22824, 22824, 50509, 22804, 22804, 31970, 23546, 49295, 23546, 22586, 47563, 31161,
|
|
/* 16575 */ 23109, 50427, 22825, 22804, 41830, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804, 36549,
|
|
/* 16590 */ 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756, 33030,
|
|
/* 16605 */ 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546, 23546,
|
|
/* 16620 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 16635 */ 23546, 23546, 23546, 23546, 23546, 22677, 23546, 23546, 23546, 23546, 26527, 23546, 23546, 23546, 23546,
|
|
/* 16650 */ 21369, 21483, 23546, 23546, 23546, 19262, 39432, 32077, 26204, 23546, 23546, 23546, 35799, 23546, 23546,
|
|
/* 16665 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 22824, 35842, 22805, 43066, 27800,
|
|
/* 16680 */ 23546, 23546, 23546, 44844, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 22587, 47563, 47563,
|
|
/* 16695 */ 47563, 47563, 27418, 22824, 22824, 22824, 43762, 22804, 22804, 22804, 22804, 39677, 36943, 23546, 23546,
|
|
/* 16710 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563, 47563, 47563, 47563, 37135,
|
|
/* 16725 */ 22823, 22824, 22824, 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804, 29885, 33201, 23546, 23546,
|
|
/* 16740 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48976, 47563, 47563, 47563, 47563, 47564, 22821,
|
|
/* 16755 */ 22824, 22824, 22824, 22824, 22767, 35849, 22804, 22804, 22804, 22804, 29879, 33195, 23546, 23546, 23546,
|
|
/* 16770 */ 23546, 23546, 23546, 23546, 23546, 47562, 47563, 47563, 47563, 27195, 22821, 22824, 22824, 22824, 22824,
|
|
/* 16785 */ 30376, 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 47563,
|
|
/* 16800 */ 47563, 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447, 23546, 23546, 23546, 23546,
|
|
/* 16815 */ 47560, 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546, 23546, 23546, 22586, 47563,
|
|
/* 16830 */ 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563, 24761, 22824, 30673, 22804,
|
|
/* 16845 */ 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975, 23107, 30672, 23141, 24756,
|
|
/* 16860 */ 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363, 23546, 23546, 23546, 23546,
|
|
/* 16875 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 16890 */ 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 46404, 21767, 21765, 32117,
|
|
/* 16905 */ 22038, 50563, 21058, 21061, 50533, 22036, 50551, 50579, 50591, 20967, 23546, 23546, 23546, 35799, 23546,
|
|
/* 16920 */ 23546, 50607, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208, 50637, 19916, 50639, 20660,
|
|
/* 16935 */ 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463, 18479,
|
|
/* 16950 */ 18968, 18495, 19670, 50655, 18544, 18567, 18590, 19934, 18528, 18551, 18574, 18597, 20868, 18620, 23546,
|
|
/* 16965 */ 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505, 19208,
|
|
/* 16980 */ 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674, 23546,
|
|
/* 16995 */ 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051, 18984,
|
|
/* 17010 */ 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396, 19137,
|
|
/* 17025 */ 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477, 25754,
|
|
/* 17040 */ 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632, 19657,
|
|
/* 17055 */ 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746, 41094,
|
|
/* 17070 */ 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016, 18679,
|
|
/* 17085 */ 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139, 20274,
|
|
/* 17100 */ 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489, 20515,
|
|
/* 17115 */ 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546, 23546,
|
|
/* 17130 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 17145 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 25841, 23546, 23546,
|
|
/* 17160 */ 22150, 23546, 21369, 20766, 50679, 50692, 50708, 50717, 49509, 50740, 20967, 23546, 23546, 23546, 35799,
|
|
/* 17175 */ 23546, 23546, 51042, 23546, 23546, 23546, 23761, 23546, 23546, 23758, 25629, 19208, 50639, 19926, 50639,
|
|
/* 17190 */ 50790, 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458, 18463,
|
|
/* 17205 */ 18479, 18968, 18495, 19670, 18521, 18544, 18567, 18590, 50663, 18528, 18551, 18574, 18597, 20868, 18620,
|
|
/* 17220 */ 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024, 18505,
|
|
/* 17235 */ 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839, 20674,
|
|
/* 17250 */ 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011, 20051,
|
|
/* 17265 */ 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668, 23396,
|
|
/* 17280 */ 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721, 19477,
|
|
/* 17295 */ 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592, 19632,
|
|
/* 17310 */ 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492, 19746,
|
|
/* 17325 */ 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842, 20016,
|
|
/* 17340 */ 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222, 51139,
|
|
/* 17355 */ 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037, 20489,
|
|
/* 17370 */ 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546, 23546,
|
|
/* 17385 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 17400 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 42087, 23546,
|
|
/* 17415 */ 23546, 23546, 23546, 22568, 29910, 50839, 50872, 50878, 50849, 23148, 50894, 20967, 23546, 23546, 23546,
|
|
/* 17430 */ 35799, 23546, 23546, 50932, 23546, 23546, 22686, 23546, 23546, 23546, 22682, 25629, 19208, 50639, 19926,
|
|
/* 17445 */ 50639, 20660, 19723, 18282, 18849, 18305, 18327, 23546, 23546, 18368, 23546, 18915, 18388, 18432, 18458,
|
|
/* 17460 */ 18463, 18479, 18968, 18495, 19670, 50969, 18544, 18567, 18590, 21689, 18528, 18551, 18574, 18597, 20868,
|
|
/* 17475 */ 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695, 19209, 26024,
|
|
/* 17490 */ 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639, 18776, 19839,
|
|
/* 17505 */ 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958, 20812, 26011,
|
|
/* 17520 */ 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129, 18604, 20668,
|
|
/* 17535 */ 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422, 19456, 25721,
|
|
/* 17550 */ 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717, 19574, 19592,
|
|
/* 17565 */ 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432, 19853, 26492,
|
|
/* 17580 */ 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980, 23977, 20842,
|
|
/* 17595 */ 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 20159, 20175, 20206, 20222,
|
|
/* 17610 */ 51139, 20274, 51143, 20301, 20376, 20392, 51127, 20418, 50802, 20462, 25380, 50639, 18729, 32258, 26037,
|
|
/* 17625 */ 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858, 20884, 23546,
|
|
/* 17640 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 17655 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 21089, 23546, 23546, 23546, 23546, 25841,
|
|
/* 17670 */ 23546, 23546, 23546, 23546, 21369, 23546, 23546, 23546, 23546, 23546, 23546, 23489, 26204, 23546, 23546,
|
|
/* 17685 */ 23546, 35799, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48973, 47563, 22824,
|
|
/* 17700 */ 35842, 22805, 43066, 27132, 23546, 23546, 23546, 44844, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 17715 */ 23546, 22587, 47563, 47563, 47563, 47563, 22603, 22824, 22824, 22824, 34828, 22804, 22804, 22804, 22804,
|
|
/* 17730 */ 39677, 36943, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48975, 47563,
|
|
/* 17745 */ 47563, 47563, 47563, 37135, 22823, 22824, 22824, 22824, 22824, 49439, 22804, 22804, 22804, 22804, 22804,
|
|
/* 17760 */ 29885, 33201, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 48976, 47563, 47563,
|
|
/* 17775 */ 47563, 47563, 47564, 22821, 22824, 22824, 22824, 22824, 22767, 35849, 22804, 22804, 22804, 22804, 29879,
|
|
/* 17790 */ 33195, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 47562, 47563, 47563, 47563, 27195, 22821,
|
|
/* 17805 */ 22824, 22824, 22824, 22824, 30376, 22804, 22804, 22804, 22804, 29883, 33199, 23546, 23546, 23546, 23546,
|
|
/* 17820 */ 23546, 48973, 47563, 47563, 47563, 45209, 22824, 22824, 22824, 27834, 22804, 22804, 22804, 30403, 47447,
|
|
/* 17835 */ 23546, 23546, 23546, 23546, 47560, 47563, 47563, 23113, 22824, 22824, 33078, 22804, 22804, 31970, 23546,
|
|
/* 17850 */ 23546, 23546, 22586, 47563, 47563, 23109, 22824, 22825, 22804, 22804, 31964, 47447, 46606, 22585, 47563,
|
|
/* 17865 */ 24761, 22824, 30673, 22804, 36549, 46609, 47561, 23111, 30673, 39296, 23464, 24759, 33031, 33550, 48975,
|
|
/* 17880 */ 23107, 30672, 23141, 24756, 33030, 33551, 47559, 33030, 33552, 39426, 42307, 22729, 23448, 23351, 23363,
|
|
/* 17895 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 17910 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 17925 */ 23546, 23546, 23546, 22457, 23546, 23546, 22482, 50993, 50998, 50998, 51019, 22480, 51014, 51035, 23546,
|
|
/* 17940 */ 23546, 23546, 23546, 23546, 23546, 51042, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 25629, 19208,
|
|
/* 17955 */ 50639, 19926, 50639, 20660, 19723, 18282, 18849, 18305, 51062, 23546, 23546, 18368, 23546, 18915, 18388,
|
|
/* 17970 */ 18432, 18458, 18463, 18479, 18968, 18495, 19670, 50655, 18544, 18567, 18590, 19934, 18528, 18551, 18574,
|
|
/* 17985 */ 18597, 20868, 18620, 23546, 30606, 23546, 23546, 23546, 23582, 23367, 18643, 23546, 18664, 50036, 18695,
|
|
/* 18000 */ 19209, 26024, 18505, 19208, 25377, 18724, 26048, 18745, 18766, 18771, 19889, 50639, 26053, 18750, 50639,
|
|
/* 18015 */ 18776, 19839, 20674, 23546, 18792, 18808, 18830, 23628, 18814, 18865, 23546, 44195, 18885, 18937, 18958,
|
|
/* 18030 */ 20812, 26011, 20051, 18984, 19036, 19054, 19072, 19090, 26127, 19108, 19038, 19056, 19074, 19092, 26129,
|
|
/* 18045 */ 18604, 20668, 23396, 19137, 19171, 19225, 39246, 19278, 47150, 19314, 19340, 26667, 19186, 19380, 19422,
|
|
/* 18060 */ 19456, 25721, 19477, 25754, 19498, 19451, 25716, 19472, 25749, 19493, 19514, 19530, 18900, 19554, 23717,
|
|
/* 18075 */ 19574, 19592, 19632, 19657, 20190, 20797, 20402, 21452, 19692, 19708, 19964, 21452, 19692, 19708, 20432,
|
|
/* 18090 */ 19853, 26492, 19746, 41094, 19782, 18942, 19201, 19798, 19825, 19883, 19905, 19950, 19883, 19905, 19980,
|
|
/* 18105 */ 23977, 20842, 20016, 18679, 20827, 20042, 20067, 20090, 20113, 20074, 20097, 20129, 20446, 51082, 20175,
|
|
/* 18120 */ 20206, 20222, 51139, 20274, 51143, 20301, 51098, 20392, 51127, 20418, 50802, 51114, 25380, 50639, 18729,
|
|
/* 18135 */ 32258, 26037, 20489, 20515, 19641, 20555, 20577, 20616, 20632, 20648, 20696, 20727, 20743, 20782, 20858,
|
|
/* 18150 */ 20884, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546,
|
|
/* 18165 */ 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 23546, 94503, 94503, 90406, 90406,
|
|
/* 18180 */ 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 1, 12290, 3, 0, 94503,
|
|
/* 18197 */ 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503,
|
|
/* 18212 */ 362, 94503, 90406, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 0,
|
|
/* 18228 */ 94503, 90406, 94503, 94503, 94503, 94503, 94503, 94503, 94503, 69632, 73728, 94503, 94503, 94503, 94503,
|
|
/* 18243 */ 94503, 65536, 94503, 0, 2183168, 0, 0, 0, 90406, 94503, 296, 297, 0, 2134016, 300, 301, 0, 0, 0, 0, 0, 0,
|
|
/* 18265 */ 2985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1631, 0, 0, 0, 0, 0, 1637, 0, 0, 2424832, 2433024, 0, 0, 2457600, 0, 0,
|
|
/* 18291 */ 0, 0, 0, 0, 0, 0, 0, 0, 2454, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2904064, 2908160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 18321 */ 0, 2751, 0, 0, 0, 0, 0, 0, 0, 3117056, 0, 0, 0, 0, 0, 0, 0, 362, 362, 0, 0, 0, 0, 0, 0, 2997, 0, 0, 0, 0,
|
|
/* 18351 */ 3001, 0, 0, 0, 0, 0, 0, 1186, 0, 0, 0, 1191, 0, 0, 0, 0, 1107, 0, 0, 0, 2138112, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 18380 */ 0, 0, 0, 0, 0, 2978, 0, 0, 0, 2424832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2625536, 0, 0, 0, 0, 0, 172032,
|
|
/* 18409 */ 0, 172032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111050, 111050, 111050, 111050, 111050, 111050, 111050, 111050, 1,
|
|
/* 18429 */ 12290, 3, 0, 2699264, 2715648, 0, 0, 2772992, 2805760, 2830336, 0, 2863104, 2920448, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 18449 */ 1114, 0, 0, 0, 0, 1118, 0, 0, 1121, 0, 2805760, 2920448, 0, 0, 0, 0, 0, 2920448, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 18474 */ 2732032, 0, 2179072, 2179072, 2179072, 2424832, 2433024, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 18486 */ 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2625536, 2805760, 2179072,
|
|
/* 18497 */ 2830336, 2179072, 2179072, 2863104, 2179072, 2179072, 2179072, 2920448, 2179072, 2179072, 2179072,
|
|
/* 18508 */ 2179072, 2179072, 2179072, 2179072, 2801664, 2813952, 2179072, 2838528, 2179072, 2179072, 2179072,
|
|
/* 18519 */ 2179072, 2179072, 0, 914, 2125824, 2125824, 2125824, 2125824, 2424832, 2433024, 2125824, 2125824, 2125824,
|
|
/* 18532 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2625536,
|
|
/* 18543 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2625536, 2125824, 2125824, 2125824, 2125824,
|
|
/* 18554 */ 2125824, 2125824, 2699264, 2125824, 2715648, 2125824, 2723840, 2125824, 2732032, 2772992, 2125824,
|
|
/* 18565 */ 2125824, 2125824, 2723840, 2125824, 2732032, 2772992, 2125824, 2125824, 2125824, 2805760, 2125824,
|
|
/* 18576 */ 2830336, 2125824, 2125824, 2863104, 2125824, 2125824, 2125824, 2125824, 2920448, 2125824, 2125824,
|
|
/* 18587 */ 2125824, 2125824, 2125824, 2125824, 2920448, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 18598 */ 2125824, 2125824, 2125824, 2125824, 2125824, 3117056, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 18609 */ 2125824, 2125824, 2125824, 2125824, 3207168, 2125824, 2125824, 2179072, 2125824, 2125824, 2125824,
|
|
/* 18620 */ 2125824, 2457600, 2125824, 2125824, 2125824, 2125824, 2183168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2518, 0, 0,
|
|
/* 18640 */ 0, 0, 0, 0, 0, 0, 0, 2375680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167936, 0, 0, 0, 0, 0, 0, 2408448, 0, 0,
|
|
/* 18670 */ 2584576, 0, 0, 0, 0, 2838528, 0, 0, 2838528, 0, 0, 0, 0, 0, 2469888, 2506752, 2756608, 0, 0, 2580480, 0,
|
|
/* 18691 */ 0, 0, 2396160, 2400256, 2412544, 0, 0, 2838528, 0, 0, 0, 0, 0, 2179072, 2179072, 2179072, 2408448,
|
|
/* 18708 */ 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 3223552, 914, 0, 2125824, 2125824, 2125824, 2125824,
|
|
/* 18721 */ 2125824, 2445312, 2125824, 0, 2125824, 2125824, 2125824, 2408448, 2125824, 2125824, 2125824, 2125824,
|
|
/* 18733 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 2502656, 0, 0, 3010560, 2125824,
|
|
/* 18746 */ 2125824, 2125824, 2125824, 2125824, 2662400, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 18757 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2801664, 2813952, 2125824, 2838528, 2125824, 2801664,
|
|
/* 18768 */ 2813952, 2125824, 2838528, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 18779 */ 2125824, 2125824, 2125824, 2125824, 2125824, 3125248, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 18790 */ 2125824, 2125824, 2461696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2600960, 0, 2674688, 0, 2768896, 2777088,
|
|
/* 18811 */ 2781184, 0, 2822144, 0, 0, 2883584, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3055616, 0, 0, 0, 3080192,
|
|
/* 18834 */ 3100672, 3104768, 0, 0, 0, 0, 3186688, 0, 0, 0, 0, 0, 0, 0, 3182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2732032, 0,
|
|
/* 18860 */ 0, 0, 0, 0, 0, 0, 0, 0, 3133440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3003, 3004, 0, 2719744, 0, 0, 0,
|
|
/* 18889 */ 0, 0, 0, 0, 0, 0, 0, 3014656, 3207168, 0, 2691072, 0, 0, 0, 0, 0, 2818048, 2846720, 0, 2916352, 0, 0,
|
|
/* 18911 */ 3002368, 0, 0, 3022848, 0, 0, 0, 0, 0, 2871296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2766, 0, 0, 0, 0, 0,
|
|
/* 18938 */ 3215360, 0, 0, 0, 0, 0, 0, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 18953 */ 2494464, 2179072, 2179072, 2514944, 2179072, 2179072, 2461696, 2465792, 2179072, 2179072, 2179072,
|
|
/* 18964 */ 2179072, 2179072, 2179072, 2523136, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2699264,
|
|
/* 18975 */ 2179072, 2715648, 2179072, 2723840, 2179072, 2732032, 2772992, 2179072, 2179072, 3100672, 2179072,
|
|
/* 18986 */ 2179072, 3133440, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 18997 */ 3207168, 2179072, 0, 0, 0, 0, 391, 392, 0, 393, 0, 0, 0, 0, 0, 393, 0, 0, 0, 0, 0, 3504, 0, 0, 0, 540,
|
|
/* 19023 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3399, 540, 540, 0, 0, 0, 2125824, 2125824, 2125824,
|
|
/* 19042 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2461696, 2465792, 2125824, 2125824,
|
|
/* 19053 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2523136, 2125824, 2125824, 2125824, 2125824,
|
|
/* 19064 */ 2125824, 2125824, 2125824, 2125824, 2600960, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 19075 */ 2641920, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2719744, 2125824, 2125824, 2125824,
|
|
/* 19086 */ 2125824, 2125824, 2768896, 2777088, 2768896, 2777088, 2125824, 2797568, 2822144, 2125824, 2125824,
|
|
/* 19097 */ 2125824, 2883584, 2125824, 2912256, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 19108 */ 2125824, 3133440, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 19119 */ 3207168, 2125824, 0, 0, 0, 0, 0, 0, 3011, 0, 0, 0, 0, 0, 0, 3018, 0, 0, 0, 0, 2605056, 0, 0, 0, 0,
|
|
/* 19144 */ 2887680, 0, 2924544, 0, 0, 0, 0, 0, 0, 0, 1135, 0, 0, 0, 0, 0, 0, 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 19174 */ 3162112, 3170304, 0, 0, 3219456, 3035136, 0, 0, 0, 0, 0, 3072000, 2650112, 2179072, 2179072, 2179072,
|
|
/* 19190 */ 2707456, 2179072, 2736128, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2887680,
|
|
/* 19201 */ 2179072, 2179072, 2543616, 2547712, 2179072, 2179072, 2596864, 2179072, 2179072, 2179072, 2179072,
|
|
/* 19212 */ 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 19223 */ 2179072, 2584576, 0, 0, 2809856, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3088384, 0, 0, 0, 0, 0, 1670, 0, 0, 0, 0,
|
|
/* 19249 */ 0, 0, 0, 2112, 0, 0, 0, 0, 0, 1680, 1681, 0, 1683, 0, 0, 0, 0, 0, 0, 0, 540, 561, 540, 561, 540, 540, 561,
|
|
/* 19276 */ 540, 585, 0, 0, 2576384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2420736, 0, 0, 0, 0, 429, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 19305 */ 0, 0, 0, 0, 300, 0, 0, 0, 0, 0, 0, 3121152, 3141632, 0, 0, 0, 2924544, 0, 2682880, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 19331 */ 1242, 1272, 1273, 0, 1242, 0, 540, 540, 540, 3112960, 2387968, 2179072, 2179072, 2179072, 2179072,
|
|
/* 19346 */ 2179072, 2179072, 2179072, 2453504, 2179072, 2473984, 2482176, 2179072, 2179072, 2179072, 2179072,
|
|
/* 19357 */ 2179072, 3010560, 2179072, 2179072, 2126737, 2126737, 2503569, 2126737, 2126737, 2126737, 2126737,
|
|
/* 19368 */ 2126737, 2126737, 2532241, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2605969,
|
|
/* 19379 */ 2126737, 2924544, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 19390 */ 3035136, 2179072, 2179072, 3072000, 2179072, 2179072, 2179072, 3137536, 2126737, 2126737, 2499473,
|
|
/* 19401 */ 2126737, 2126737, 2126737, 2556817, 2565009, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737,
|
|
/* 19412 */ 3224465, 0, 0, 2126810, 2126810, 2126810, 2126810, 2126810, 2446298, 2126810, 3121152, 2179072, 2179072,
|
|
/* 19425 */ 3141632, 2179072, 2179072, 2179072, 3170304, 2179072, 2179072, 3190784, 3194880, 2179072, 0, 0, 0, 0, 0,
|
|
/* 19440 */ 0, 3181, 0, 0, 0, 3184, 3185, 3186, 0, 0, 3189, 3194880, 2125824, 0, 0, 0, 0, 0, 0, 2387968, 2125824,
|
|
/* 19461 */ 2125824, 2420736, 2125824, 2125824, 2125824, 2125824, 2125824, 2453504, 2125824, 2473984, 2482176,
|
|
/* 19472 */ 2125824, 2125824, 2125824, 2605056, 2125824, 2629632, 2125824, 2125824, 2650112, 2125824, 2125824,
|
|
/* 19483 */ 2125824, 2707456, 2125824, 2736128, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 19494 */ 2125824, 2125824, 2125824, 3035136, 2125824, 2125824, 3072000, 2125824, 2125824, 3121152, 2125824,
|
|
/* 19505 */ 2125824, 3141632, 2125824, 2125824, 2125824, 3170304, 2125824, 2125824, 3190784, 2125824, 3170304,
|
|
/* 19516 */ 2125824, 2125824, 3190784, 3194880, 2125824, 2125824, 2179072, 2125824, 2125824, 2125824, 2179072,
|
|
/* 19527 */ 2179072, 3112960, 3219456, 2125824, 2125824, 3112960, 3219456, 2125824, 2125824, 3112960, 3219456, 0, 0,
|
|
/* 19540 */ 0, 0, 0, 0, 0, 0, 0, 3507, 540, 540, 540, 540, 540, 540, 0, 3145728, 0, 3203072, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 19566 */ 0, 0, 0, 0, 0, 3314, 0, 540, 0, 3067904, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172032, 0, 0, 0, 0,
|
|
/* 19596 */ 2895872, 0, 0, 0, 2445312, 0, 2842624, 0, 0, 0, 2637824, 0, 0, 0, 0, 432, 0, 0, 0, 329, 467, 467, 467,
|
|
/* 19619 */ 467, 467, 467, 467, 467, 467, 467, 467, 467, 467, 467, 467, 467, 0, 0, 0, 2621440, 0, 3182592, 2899968, 0,
|
|
/* 19640 */ 2961408, 0, 0, 2179072, 2179072, 2179072, 2179072, 2179072, 2592768, 2179072, 2179072, 2179072, 2179072,
|
|
/* 19653 */ 2179072, 2179072, 2179072, 2125824, 2445312, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 19664 */ 2179072, 2179072, 2179072, 2179072, 2179072, 2551808, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 19675 */ 3117056, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 19686 */ 2179072, 2179072, 2126737, 2126737, 2126737, 2126737, 2637824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 19697 */ 2727936, 2752512, 2125824, 2125824, 2125824, 2125824, 2842624, 2846720, 2125824, 2895872, 2916352,
|
|
/* 19708 */ 2125824, 2125824, 2945024, 2125824, 2125824, 2994176, 2125824, 3002368, 2125824, 2125824, 3022848,
|
|
/* 19719 */ 2125824, 3067904, 3084288, 3096576, 2125824, 0, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 0, 0,
|
|
/* 19734 */ 0, 0, 0, 0, 0, 0, 2442, 2443, 0, 0, 2446, 0, 0, 0, 0, 0, 2928640, 0, 0, 0, 3059712, 0, 2543616, 2666496,
|
|
/* 19758 */ 0, 2633728, 0, 0, 0, 0, 0, 1697, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1116, 0, 0, 0, 0, 0, 2494464, 0, 0, 0, 0,
|
|
/* 19787 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3211264, 2179072, 2928640, 2179072, 2179072, 2179072, 2998272, 2179072,
|
|
/* 19805 */ 2179072, 2179072, 2179072, 3059712, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 3223552, 0, 0,
|
|
/* 19818 */ 2126737, 2126737, 2126737, 2126737, 2126737, 2446225, 2126737, 2179072, 3178496, 2125824, 2125824,
|
|
/* 19829 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2494464, 2125824, 2125824, 2514944, 2125824,
|
|
/* 19840 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2179072, 2125824, 2125824, 2125824, 2179072, 2179072,
|
|
/* 19851 */ 2179072, 2179072, 2125824, 2125824, 0, 0, 0, 0, 0, 0, 2510848, 2514944, 0, 0, 2547712, 2596864, 0, 0, 0,
|
|
/* 19870 */ 0, 0, 1670, 0, 0, 0, 0, 0, 0, 0, 0, 2113, 0, 2125824, 2543616, 2547712, 2125824, 2125824, 2596864,
|
|
/* 19889 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 2125824,
|
|
/* 19902 */ 2125824, 2125824, 2408448, 2125824, 2928640, 2125824, 2125824, 2125824, 2998272, 2125824, 2125824,
|
|
/* 19913 */ 2125824, 2125824, 3059712, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 2125824,
|
|
/* 19925 */ 2126811, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 2125824, 2125824, 2125824,
|
|
/* 19937 */ 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 0, 2125824, 2125824, 2125824, 2125824, 2424832,
|
|
/* 19950 */ 2125824, 3178496, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2494464,
|
|
/* 19961 */ 2125824, 2125824, 2514944, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 3223552, 0, 0, 2125824,
|
|
/* 19974 */ 2125824, 2125824, 2125824, 2125824, 2445312, 2125824, 2125824, 3178496, 2125824, 2179072, 2125824,
|
|
/* 19985 */ 2125824, 2179072, 2179072, 2125824, 2125824, 2125824, 2125824, 2441216, 0, 0, 0, 0, 0, 0, 3311, 0, 0, 0,
|
|
/* 20003 */ 0, 0, 0, 0, 0, 540, 540, 540, 2165, 540, 540, 540, 540, 0, 0, 0, 2740224, 0, 0, 0, 0, 0, 2793472, 0, 0, 0,
|
|
/* 20029 */ 0, 0, 0, 0, 1244, 0, 0, 0, 0, 1247, 0, 1194, 0, 2646016, 2179072, 2179072, 2695168, 2756608, 2179072,
|
|
/* 20048 */ 2179072, 2179072, 2932736, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 20059 */ 2179072, 3039232, 2179072, 3063808, 2179072, 2179072, 2179072, 2179072, 3129344, 2179072, 2179072,
|
|
/* 20070 */ 3153920, 3166208, 3174400, 2396160, 2400256, 2125824, 2125824, 2441216, 2125824, 2469888, 2125824,
|
|
/* 20081 */ 2125824, 2125824, 2519040, 2125824, 2125824, 2125824, 2125824, 2588672, 2125824, 2519040, 2125824,
|
|
/* 20092 */ 2125824, 2125824, 2125824, 2588672, 2125824, 2613248, 2646016, 2125824, 2125824, 2695168, 2756608,
|
|
/* 20103 */ 2125824, 2125824, 2125824, 2125824, 2932736, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 20114 */ 2932736, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 3129344, 2125824, 2125824,
|
|
/* 20125 */ 3153920, 3166208, 3174400, 2396160, 2125824, 2125824, 3129344, 2125824, 2125824, 3153920, 3166208,
|
|
/* 20136 */ 3174400, 2125824, 2506752, 2506752, 2506752, 2179072, 2179072, 2125824, 2125824, 2125824, 2125824,
|
|
/* 20147 */ 2125824, 2125824, 3223552, 987, 0, 2125824, 2125824, 2125824, 2125824, 2125824, 2445312, 2125824, 0,
|
|
/* 20160 */ 3043328, 0, 3149824, 2936832, 0, 2760704, 3176, 0, 0, 0, 0, 2953216, 0, 0, 2826240, 3158016, 2437120, 0,
|
|
/* 20178 */ 2785280, 0, 0, 0, 2428928, 0, 3018752, 2764800, 2572288, 0, 0, 3051520, 2179072, 2179072, 2637824,
|
|
/* 20193 */ 2179072, 2179072, 2179072, 2179072, 2727936, 2752512, 2179072, 2179072, 2179072, 2842624, 2846720,
|
|
/* 20204 */ 2179072, 2916352, 2428928, 2437120, 2179072, 2486272, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 20215 */ 2179072, 2179072, 2179072, 2654208, 2678784, 2760704, 2764800, 2854912, 2969600, 2179072, 3006464,
|
|
/* 20226 */ 2179072, 3018752, 2179072, 2179072, 2179072, 3149824, 2125824, 2428928, 2437120, 2125824, 2486272,
|
|
/* 20237 */ 2125824, 0, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 0, 0, 0, 0, 297, 0, 0, 0, 0, 0, 2043, 2044,
|
|
/* 20258 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2140, 0, 0, 0, 0, 0, 0, 2125824, 3018752, 2125824, 2125824, 2125824, 3149824,
|
|
/* 20280 */ 2125824, 2428928, 2437120, 2125824, 2486272, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 20291 */ 2125824, 2125824, 0, 24576, 987, 2125824, 2125824, 2125824, 2125824, 2424832, 2125824, 3149824, 2125824,
|
|
/* 20304 */ 2179072, 3051520, 2125824, 3051520, 2125824, 3051520, 0, 2490368, 2498560, 0, 0, 0, 0, 0, 0, 304, 0,
|
|
/* 20321 */ 204800, 0, 0, 0, 0, 0, 0, 0, 0, 1713, 0, 0, 0, 0, 0, 0, 0, 0, 1727, 0, 0, 0, 0, 0, 0, 0, 0, 2068, 0, 0, 0,
|
|
/* 20352 */ 0, 0, 0, 0, 0, 2095, 0, 0, 0, 0, 0, 0, 0, 0, 2107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2875392, 0, 0, 0, 3176, 0,
|
|
/* 20382 */ 0, 2834432, 0, 3227648, 2568192, 0, 0, 0, 0, 2564096, 0, 2940928, 2179072, 2179072, 2498560, 2179072,
|
|
/* 20398 */ 2179072, 2179072, 2555904, 2564096, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 3223552, 0, 0,
|
|
/* 20411 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2445312, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 20422 */ 2125824, 3137536, 2125824, 2125824, 2498560, 2125824, 2125824, 2125824, 2555904, 2564096, 2125824,
|
|
/* 20433 */ 2125824, 2125824, 2125824, 2125824, 2125824, 3223552, 2125824, 2179072, 2416640, 2125824, 2125824,
|
|
/* 20444 */ 2179072, 2179072, 2125824, 2125824, 0, 2486272, 0, 0, 0, 0, 0, 2678784, 2854912, 3006464, 0, 3108864,
|
|
/* 20460 */ 3198976, 0, 0, 2748416, 2879488, 0, 3176, 0, 0, 0, 0, 0, 0, 0, 0, 2179072, 2179072, 2179072, 2179072,
|
|
/* 20479 */ 2179072, 2592768, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2126737, 2125824,
|
|
/* 20490 */ 2125824, 2125824, 2125824, 3010560, 2125824, 2125824, 2125824, 2125824, 2502656, 2125824, 2125824,
|
|
/* 20501 */ 2125824, 2125824, 2125824, 2125824, 296, 0, 0, 0, 296, 0, 297, 0, 0, 0, 2125824, 2125824, 2125824,
|
|
/* 20518 */ 3010560, 2125824, 2125824, 2125824, 0, 0, 0, 0, 0, 0, 0, 2592768, 0, 0, 0, 0, 433, 0, 0, 0, 453, 469, 469,
|
|
/* 20541 */ 469, 469, 469, 469, 469, 469, 469, 479, 469, 469, 469, 469, 469, 469, 2125824, 2125824, 2125824, 2125824,
|
|
/* 20559 */ 2592768, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 20570 */ 2125824, 0, 1918, 2125824, 2125824, 2125824, 2408448, 2125824, 2592768, 2125824, 2125824, 2125824,
|
|
/* 20582 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2449408, 0, 2535424, 3031040, 0, 0, 0, 0, 0, 1734, 0, 1736,
|
|
/* 20599 */ 1710, 540, 540, 540, 540, 540, 540, 540, 540, 1816, 1818, 540, 540, 540, 540, 540, 1360, 0, 2859008, 0, 0,
|
|
/* 20620 */ 2179072, 2449408, 2179072, 2535424, 2179072, 2609152, 2179072, 2859008, 2179072, 2179072, 2179072,
|
|
/* 20631 */ 3031040, 2125824, 2449408, 2125824, 2535424, 2125824, 2609152, 2125824, 2859008, 2125824, 2125824,
|
|
/* 20642 */ 2125824, 3031040, 2125824, 2449408, 2125824, 2535424, 2125824, 2609152, 2125824, 2859008, 2125824,
|
|
/* 20653 */ 2125824, 2125824, 3031040, 2125824, 2527232, 0, 0, 0, 0, 0, 2179072, 2125824, 2125824, 2125824, 2179072,
|
|
/* 20668 */ 2179072, 2179072, 2179072, 2179072, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 20679 */ 2125824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2804, 540, 540, 540, 540, 2527232, 2179072, 2179072, 2179072,
|
|
/* 20700 */ 2179072, 2179072, 2125824, 2527232, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2527232,
|
|
/* 20711 */ 2125824, 0, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 0, 0, 1080, 1084, 0, 0, 1088, 2125824,
|
|
/* 20728 */ 2125824, 2125824, 2125824, 3092480, 0, 0, 0, 0, 3026944, 2404352, 2179072, 2179072, 2179072, 2179072,
|
|
/* 20742 */ 3026944, 2404352, 2125824, 2125824, 2125824, 2125824, 3026944, 2404352, 2125824, 2125824, 2125824,
|
|
/* 20753 */ 2125824, 3026944, 2539520, 0, 2949120, 0, 0, 0, 0, 434, 0, 0, 446, 0, 0, 0, 0, 0, 0, 0, 0, 457, 1147354,
|
|
/* 20776 */ 1147354, 1147354, 1147354, 1147354, 1147354, 1147354, 2179072, 2658304, 2973696, 2179072, 2125824,
|
|
/* 20787 */ 2658304, 2973696, 2125824, 2125824, 2658304, 2973696, 2125824, 2711552, 0, 2560000, 2179072, 2179072,
|
|
/* 20799 */ 2945024, 2179072, 2179072, 2994176, 2179072, 3002368, 2179072, 2179072, 3022848, 2179072, 3067904,
|
|
/* 20810 */ 3084288, 3096576, 2179072, 2179072, 2600960, 2179072, 2179072, 2179072, 2179072, 2641920, 2179072,
|
|
/* 20821 */ 2179072, 2179072, 2179072, 2179072, 2179072, 2719744, 2179072, 2179072, 2441216, 2179072, 2469888,
|
|
/* 20832 */ 2179072, 2179072, 2179072, 2519040, 2179072, 2179072, 2179072, 2179072, 2588672, 2179072, 2613248,
|
|
/* 20843 */ 2703360, 0, 0, 0, 0, 2977792, 0, 0, 3047424, 3129344, 0, 2981888, 2396160, 0, 3153920, 2560000, 2125824,
|
|
/* 20860 */ 2560000, 2125824, 0, 2179072, 2125824, 2125824, 0, 2179072, 2125824, 2125824, 0, 2179072, 2125824,
|
|
/* 20873 */ 2125824, 2125824, 2457600, 2179072, 2179072, 2179072, 2179072, 2457600, 2125824, 2125824, 2125824,
|
|
/* 20884 */ 2985984, 2985984, 2985984, 2985984, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249856, 0, 0, 0, 0, 0, 111050,
|
|
/* 20908 */ 111050, 111050, 111050, 111050, 111050, 111050, 111050, 111050, 111050, 111050, 111050, 111050, 111050,
|
|
/* 20921 */ 111050, 111050, 458, 458, 111050, 458, 458, 458, 458, 458, 458, 458, 458, 458, 458, 111050, 111050,
|
|
/* 20938 */ 111050, 111050, 111050, 111050, 111050, 111050, 111050, 458, 111050, 111050, 111050, 111050, 111050, 0, 0,
|
|
/* 20953 */ 0, 0, 0, 0, 0, 0, 0, 0, 2738, 0, 0, 0, 0, 0, 0, 2183168, 0, 0, 0, 0, 0, 296, 297, 0, 2134016, 300, 301, 0,
|
|
/* 20981 */ 0, 0, 0, 0, 0, 184723, 184931, 184931, 184931, 0, 184931, 184931, 184931, 184931, 184931, 0, 0, 0, 0, 0,
|
|
/* 21001 */ 184931, 0, 184931, 1, 12290, 3, 78112, 1059, 0, 0, 2179072, 2125824, 2125824, 2125824, 2179072, 2179072,
|
|
/* 21017 */ 2179072, 2179072, 2179072, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 296, 0,
|
|
/* 21030 */ 297, 0, 2125824, 1059, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2750, 0,
|
|
/* 21051 */ 0, 0, 0, 2755, 0, 300, 118784, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1134592, 0, 0, 0, 0, 300, 300,
|
|
/* 21079 */ 300, 300, 0, 0, 0, 0, 0, 300, 0, 300, 1, 12290, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266240, 0, 0,
|
|
/* 21109 */ 0, 0, 2183168, 0, 0, 0, 0, 0, 33403, 297, 0, 2134016, 49791, 301, 0, 0, 0, 0, 0, 0, 225889, 225889,
|
|
/* 21131 */ 225889, 225889, 225740, 225889, 225889, 225889, 225889, 225889, 225740, 225740, 225740, 225740, 225740,
|
|
/* 21144 */ 225906, 225740, 225906, 1, 12290, 3, 0, 0, 0, 0, 249856, 0, 0, 0, 249856, 0, 0, 0, 0, 0, 0, 697, 698, 0,
|
|
/* 21168 */ 362, 362, 362, 0, 0, 0, 0, 0, 0, 711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 296, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 21197 */ 2134016, 0, 0, 0, 0, 0, 0, 57344, 0, 0, 0, 0, 0, 0, 0, 3506, 0, 540, 540, 540, 540, 540, 540, 540, 2530,
|
|
/* 21222 */ 540, 540, 540, 540, 540, 540, 540, 2125824, 0, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 0, 296,
|
|
/* 21240 */ 0, 0, 0, 300, 0, 0, 0, 300, 119195, 73728, 0, 0, 0, 0, 0, 65536, 0, 0, 122880, 122880, 122880, 122880,
|
|
/* 21262 */ 122880, 122880, 122880, 122880, 122880, 122880, 122880, 122880, 122880, 122880, 122880, 0, 0, 0, 0,
|
|
/* 21277 */ 122880, 122880, 122880, 122880, 122880, 122880, 122880, 122880, 0, 0, 122880, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 21297 */ 0, 0, 3166, 3167, 0, 0, 0, 0, 0, 122880, 0, 122880, 122880, 122880, 0, 0, 0, 0, 0, 122880, 0, 122880, 0,
|
|
/* 21320 */ 0, 0, 0, 0, 0, 0, 0, 122880, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221184, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 21350 */ 122880, 122880, 122880, 122880, 122880, 0, 122880, 0, 2105629, 12290, 3, 0, 0, 291, 0, 0, 0, 0, 291, 0, 0,
|
|
/* 21371 */ 0, 0, 0, 0, 0, 69632, 73728, 0, 0, 0, 0, 0, 65536, 0, 0, 0, 0, 2134016, 0, 0, 0, 0, 0, 0, 0, 746, 0, 0, 0,
|
|
/* 21400 */ 0, 0, 0, 328, 0, 0, 0, 0, 0, 0, 0, 328, 0, 0, 69632, 73728, 0, 416, 416, 0, 0, 65536, 416, 1092, 0,
|
|
/* 21425 */ 2424832, 2433024, 0, 0, 2457600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2765, 0, 0, 0, 0, 0, 1824, 2125824,
|
|
/* 21448 */ 2125824, 2125824, 2408448, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 21459 */ 2125824, 2125824, 2125824, 2551808, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 0, 131072, 0, 0, 0,
|
|
/* 21475 */ 69632, 73728, 0, 0, 0, 0, 0, 65536, 0, 0, 0, 0, 435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2507, 0, 0, 0, 0, 0,
|
|
/* 21505 */ 131072, 0, 0, 131072, 131072, 0, 0, 0, 0, 0, 0, 131072, 0, 131072, 0, 131072, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 21530 */ 0, 131072, 0, 131072, 131072, 131072, 131072, 0, 131072, 131072, 131072, 131072, 131072, 0, 0, 0, 0, 0,
|
|
/* 21548 */ 131072, 0, 131072, 1, 12290, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 298, 0, 135168, 135168, 0, 0, 0, 0, 0,
|
|
/* 21575 */ 0, 0, 0, 0, 0, 0, 0, 0, 320, 321, 0, 0, 0, 135168, 0, 0, 135168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3174, 0,
|
|
/* 21605 */ 0, 0, 0, 0, 0, 0, 135168, 135168, 135168, 135168, 135168, 135168, 135168, 0, 135168, 135168, 135168,
|
|
/* 21622 */ 135168, 135168, 0, 0, 0, 0, 0, 135168, 0, 135168, 1, 12290, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 118784,
|
|
/* 21647 */ 296, 0, 2183168, 0, 0, 0, 0, 0, 636, 637, 0, 2134016, 640, 641, 0, 0, 0, 0, 0, 0, 266240, 0, 0, 0, 0, 0,
|
|
/* 21673 */ 0, 0, 0, 0, 0, 266240, 0, 0, 0, 1361, 2125824, 2125824, 2125824, 2125824, 2424832, 2433024, 2125824,
|
|
/* 21690 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 986, 2125824, 2125824, 2125824,
|
|
/* 21703 */ 2125824, 2424832, 0, 301, 139264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331, 0, 331, 301, 301, 301, 301,
|
|
/* 21728 */ 0, 0, 0, 0, 0, 301, 0, 301, 1, 12290, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139264, 297, 0, 2183168, 0, 0,
|
|
/* 21756 */ 0, 0, 0, 296, 33406, 0, 2134016, 300, 49794, 0, 0, 0, 0, 0, 0, 1134592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 21782 */ 1134592, 0, 0, 0, 2134016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61440, 0, 0, 0, 0, 647, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 21811 */ 0, 0, 0, 2455, 0, 0, 0, 0, 0, 301, 2424832, 2433024, 0, 0, 2457600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2779, 0,
|
|
/* 21838 */ 0, 0, 0, 0, 298, 298, 143728, 298, 298, 298, 143728, 69632, 73728, 298, 298, 143658, 298, 298, 65536, 298,
|
|
/* 21858 */ 298, 0, 0, 298, 298, 143658, 298, 298, 298, 298, 298, 298, 298, 298, 298, 363, 298, 0, 143658, 298, 298,
|
|
/* 21879 */ 298, 143658, 143658, 143658, 143658, 143658, 143658, 143658, 143658, 143658, 143658, 143658, 143658,
|
|
/* 21892 */ 143658, 143658, 143658, 143658, 298, 298, 298, 298, 143658, 143658, 143658, 143658, 143658, 143658,
|
|
/* 21906 */ 143658, 143658, 298, 298, 298, 143658, 368, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
/* 21925 */ 298, 298, 298, 298, 143658, 298, 298, 143658, 298, 298, 143658, 143658, 143658, 143658, 143658, 143658,
|
|
/* 21941 */ 298, 0, 298, 0, 298, 298, 298, 143658, 298, 298, 298, 298, 298, 298, 298, 298, 298, 143658, 298, 143658,
|
|
/* 21961 */ 143658, 143658, 143658, 298, 298, 143658, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 143728,
|
|
/* 21979 */ 298, 298, 298, 298, 298, 298, 298, 143658, 143658, 143658, 143658, 143658, 143658, 143728, 143658, 143728,
|
|
/* 21995 */ 143728, 143728, 143728, 143728, 143658, 143658, 143658, 143658, 143658, 143658, 143658, 143658, 1, 12290,
|
|
/* 22009 */ 3, 0, 0, 0, 0, 0, 0, 0, 90406, 90406, 90406, 90406, 0, 94503, 0, 0, 0, 3117056, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 22034 */ 2200252, 2200252, 0, 0, 0, 0, 0, 0, 1134592, 0, 0, 0, 0, 0, 0, 1134592, 0, 0, 0, 0, 0, 0, 0, 155648,
|
|
/* 22058 */ 155648, 0, 155648, 155648, 155648, 155648, 155648, 155648, 155648, 155648, 155648, 155648, 155648, 155648,
|
|
/* 22072 */ 155648, 155648, 155648, 155648, 155648, 155648, 155648, 155648, 155648, 155648, 155648, 0, 0, 0, 0,
|
|
/* 22087 */ 155648, 0, 0, 0, 0, 0, 0, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1663, 0, 0, 0, 0, 0, 0, 0, 0, 155648, 0, 0,
|
|
/* 22116 */ 155648, 0, 0, 0, 0, 0, 0, 0, 155648, 0, 0, 0, 155648, 155648, 0, 155648, 155648, 0, 12290, 3, 0, 0,
|
|
/* 22138 */ 2183168, 126976, 0, 0, 0, 0, 296, 297, 0, 2134016, 300, 301, 0, 0, 0, 0, 0, 0, 1146880, 0, 1146880, 0, 0,
|
|
/* 22161 */ 0, 0, 0, 0, 0, 1107, 0, 0, 0, 0, 0, 0, 0, 0, 540, 2163, 540, 540, 540, 540, 540, 540, 0, 0, 0, 3117056, 0,
|
|
/* 22188 */ 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 345, 346, 347, 0, 0, 0, 0, 0, 0, 0, 757, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 22220 */ 1156, 0, 0, 0, 0, 0, 0, 0, 159744, 159744, 159744, 0, 0, 159744, 0, 0, 0, 0, 0, 0, 0, 0, 159744, 159744,
|
|
/* 22244 */ 159744, 159744, 159744, 159744, 159744, 159744, 159744, 159744, 159744, 159744, 159744, 159744, 159744,
|
|
/* 22257 */ 159744, 163840, 159744, 159744, 159744, 163840, 159744, 159744, 159744, 159744, 159744, 0, 0, 0, 0, 0, 0,
|
|
/* 22274 */ 0, 0, 25160, 0, 0, 159744, 0, 0, 0, 0, 25160, 25160, 25160, 159744, 25160, 25160, 25160, 25160, 25160,
|
|
/* 22293 */ 159744, 159744, 159744, 159744, 25160, 159744, 25160, 1, 12290, 3, 0, 167936, 167936, 167936, 167936,
|
|
/* 22308 */ 167936, 167936, 167936, 167936, 167936, 167936, 167936, 167936, 167936, 167936, 167936, 167936, 1, 12290,
|
|
/* 22322 */ 3, 0, 167936, 167936, 167936, 0, 0, 167936, 0, 0, 0, 0, 0, 0, 0, 0, 167936, 167936, 167936, 167936,
|
|
/* 22342 */ 167936, 167936, 167936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3015, 0, 0, 0, 0, 0, 0, 0, 0, 2138112, 1183, 0, 0,
|
|
/* 22368 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262144, 0, 0, 0, 0, 172032, 172032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172032, 0,
|
|
/* 22397 */ 0, 0, 0, 0, 0, 172032, 172032, 0, 172032, 0, 0, 172032, 0, 172032, 0, 172032, 0, 0, 0, 0, 172032, 172032,
|
|
/* 22419 */ 172032, 172032, 172032, 172032, 172032, 172032, 1, 12290, 3, 0, 172032, 0, 172032, 172032, 0, 172032,
|
|
/* 22435 */ 172032, 172032, 172032, 172032, 172032, 172032, 172032, 172032, 172032, 172032, 172032, 172032, 172032,
|
|
/* 22448 */ 172032, 172032, 172032, 172032, 172032, 172032, 172032, 172032, 172032, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 22467 */ 106496, 0, 0, 0, 0, 0, 1, 286, 3, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106496, 0, 106496, 0, 0, 0,
|
|
/* 22496 */ 0, 106496, 176128, 176128, 176128, 176128, 176128, 176128, 176128, 176128, 176128, 176128, 176128, 176128,
|
|
/* 22510 */ 176128, 176128, 176128, 176128, 1, 0, 3, 78112, 176128, 176128, 176128, 0, 0, 176128, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 22531 */ 0, 176128, 176128, 176128, 176128, 176128, 176128, 176128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111050, 0, 0, 0,
|
|
/* 22553 */ 0, 0, 78112, 290, 0, 634, 0, 0, 0, 296, 297, 0, 2134016, 300, 301, 0, 0, 0, 0, 0, 0, 1159168, 414, 414, 0,
|
|
/* 22578 */ 0, 0, 0, 0, 414, 0, 1164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540, 540, 540, 0, 914, 561, 561,
|
|
/* 22607 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 959, 561, 585, 585, 585, 1490, 585, 585, 585,
|
|
/* 22628 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1498, 585, 585, 0, 0, 229376, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 22652 */ 1686, 0, 0, 0, 0, 0, 0, 404, 404, 404, 404, 0, 404, 404, 404, 404, 404, 0, 0, 0, 0, 0, 404, 0, 404, 1,
|
|
/* 22678 */ 12290, 3, 78112, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1155072, 0, 0, 0, 0, 0, 0, 0, 2131, 0, 0, 0, 0,
|
|
/* 22707 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 658, 0, 0, 0, 561, 561, 561, 561, 561, 561, 2250, 561, 561, 561, 561,
|
|
/* 22733 */ 561, 561, 585, 585, 585, 585, 585, 585, 0, 0, 0, 0, 0, 0, 3295, 0, 0, 0, 0, 0, 0, 0, 712, 0, 0, 0, 716, 0,
|
|
/* 22761 */ 0, 719, 0, 561, 561, 2287, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 0, 0, 0, 585,
|
|
/* 22784 */ 585, 585, 2347, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1514, 585, 585, 2372,
|
|
/* 22804 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 561, 0, 0, 0, 561, 561,
|
|
/* 22826 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 585, 585, 585, 585, 2671, 585, 585,
|
|
/* 22847 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1515, 585, 585, 0, 0, 0, 2994, 0, 0, 0, 2998, 0, 0,
|
|
/* 22871 */ 0, 0, 0, 0, 0, 0, 0, 159744, 159744, 159744, 159744, 159744, 159744, 159744, 540, 3035, 540, 540, 540,
|
|
/* 22890 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 910, 540, 3075, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 22911 */ 561, 561, 561, 561, 561, 561, 561, 561, 1417, 3116, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 22932 */ 585, 585, 585, 585, 1501, 0, 0, 3178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3187, 0, 0, 0, 0, 0, 2046, 0, 2149, 0,
|
|
/* 22960 */ 0, 0, 0, 0, 0, 0, 0, 0, 249856, 249856, 249856, 249856, 249856, 249856, 249856, 249856, 1, 12290, 3, 0,
|
|
/* 22980 */ 540, 540, 540, 3203, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3211, 540, 540, 540, 540, 540, 2813,
|
|
/* 23000 */ 540, 540, 2817, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2555, 540, 540, 540, 540, 540, 540, 3255,
|
|
/* 23020 */ 585, 585, 585, 3258, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3266, 585, 561, 0, 1287, 585, 1467,
|
|
/* 23040 */ 1376, 540, 540, 1339, 540, 540, 561, 561, 1430, 561, 0, 585, 585, 585, 585, 585, 288, 1079, 0, 0, 0, 0, 0,
|
|
/* 23063 */ 0, 0, 0, 2427, 0, 0, 0, 0, 0, 0, 0, 0, 2465, 0, 0, 2468, 0, 0, 0, 0, 0, 0, 0, 0, 3309, 0, 0, 0, 0, 0, 0,
|
|
/* 23094 */ 0, 0, 0, 0, 540, 3508, 540, 3509, 540, 540, 540, 3326, 3327, 540, 540, 540, 540, 540, 540, 540, 540, 561,
|
|
/* 23116 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 961, 561, 585, 585, 585, 3361, 585, 585,
|
|
/* 23137 */ 585, 585, 3362, 3363, 585, 585, 585, 585, 585, 585, 561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1159168, 0, 0, 0,
|
|
/* 23162 */ 0, 0, 0, 0, 0, 0, 3176, 0, 0, 0, 0, 0, 0, 0, 0, 3387, 0, 0, 0, 0, 0, 2092, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 23194 */ 404, 0, 0, 0, 0, 0, 561, 3416, 561, 561, 561, 561, 585, 585, 585, 585, 585, 585, 3425, 585, 585, 585, 585,
|
|
/* 23217 */ 585, 585, 1492, 585, 585, 585, 585, 585, 585, 585, 1499, 585, 585, 585, 585, 3431, 585, 585, 585, 585,
|
|
/* 23237 */ 3435, 540, 561, 585, 0, 0, 0, 0, 0, 0, 665, 0, 0, 668, 0, 0, 0, 0, 0, 0, 0, 3172, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 23267 */ 0, 225740, 225740, 225740, 225740, 225740, 225740, 225740, 0, 0, 0, 0, 3176, 0, 0, 0, 0, 0, 0, 0, 0, 3450,
|
|
/* 23289 */ 540, 540, 540, 540, 540, 2814, 540, 2816, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2233, 540, 540,
|
|
/* 23309 */ 540, 540, 540, 0, 561, 561, 561, 3573, 561, 561, 561, 561, 561, 561, 561, 561, 585, 585, 585, 585, 585,
|
|
/* 23330 */ 585, 3538, 585, 585, 3585, 585, 585, 585, 585, 585, 585, 585, 585, 561, 0, 0, 0, 0, 0, 0, 3627, 561, 561,
|
|
/* 23353 */ 585, 585, 0, 540, 561, 585, 0, 540, 561, 585, 0, 540, 561, 585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 23380 */ 2662400, 0, 2813952, 78112, 290, 0, 0, 0, 0, 0, 296, 297, 0, 2134016, 300, 301, 0, 0, 0, 0, 0, 0, 2473984,
|
|
/* 23403 */ 2478080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2976, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2134756, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 23433 */ 0, 0, 0, 1, 12290, 3, 0, 0, 0, 188416, 540, 585, 585, 561, 540, 540, 540, 540, 540, 561, 561, 561, 561,
|
|
/* 23456 */ 585, 585, 585, 585, 0, 0, 540, 540, 0, 0, 0, 0, 3176, 0, 0, 0, 0, 0, 0, 0, 0, 540, 540, 540, 540, 540,
|
|
/* 23482 */ 540, 540, 2169, 0, 0, 0, 302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 12290, 3, 78112, 192971, 192971,
|
|
/* 23507 */ 192971, 192971, 192971, 192971, 192971, 192971, 192971, 192971, 192971, 192971, 192971, 192971, 192971,
|
|
/* 23520 */ 192971, 0, 192971, 0, 1, 12290, 3, 0, 192971, 192971, 192971, 0, 0, 192971, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 23544 */ 0, 131072, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322, 0, 0, 0, 0, 192971, 192971, 192971,
|
|
/* 23570 */ 192971, 192971, 192971, 192971, 192971, 192971, 0, 192971, 192971, 192971, 192971, 192971, 0, 0, 0, 0, 0,
|
|
/* 23587 */ 0, 0, 0, 0, 0, 2801664, 0, 0, 0, 0, 2142208, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 674, 78112,
|
|
/* 23616 */ 290, 0, 0, 0, 0, 0, 296, 297, 0, 299, 300, 301, 0, 0, 0, 0, 0, 0, 2797568, 0, 0, 0, 0, 0, 0, 0, 2850816,
|
|
/* 23643 */ 2867200, 0, 0, 740, 404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 0, 0, 0, 0, 0, 740, 540, 585, 585, 561,
|
|
/* 23671 */ 540, 540, 540, 540, 540, 561, 561, 561, 561, 585, 585, 585, 585, 2029, 0, 2031, 0, 0, 0, 0, 740, 1184, 0,
|
|
/* 23694 */ 0, 0, 0, 1188, 0, 0, 0, 0, 0, 0, 0, 1583, 0, 1585, 0, 0, 0, 0, 0, 0, 0, 1661, 1662, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 23724 */ 0, 2727936, 0, 0, 0, 3084288, 0, 0, 0, 0, 0, 0, 1577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351, 352, 353,
|
|
/* 23752 */ 354, 0, 0, 0, 1188, 1670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1150976, 0, 0, 0, 0, 0, 0, 561, 561, 585,
|
|
/* 23780 */ 585, 585, 585, 1559, 2029, 0, 0, 0, 0, 1565, 2031, 0, 0, 0, 0, 0, 2120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2130,
|
|
/* 23807 */ 2033, 0, 2035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 336, 337, 338, 561, 561, 2323, 2648, 0, 0, 0, 0,
|
|
/* 23834 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2339, 585, 585, 2342, 0, 304, 0, 304, 0, 0, 0, 0,
|
|
/* 23857 */ 0, 0, 0, 0, 0, 304, 0, 0, 0, 0, 0, 2136, 0, 2138, 0, 0, 0, 0, 0, 0, 0, 0, 791, 817, 0, 817, 812, 0, 0, 0,
|
|
/* 23887 */ 0, 0, 0, 204800, 204800, 0, 204800, 204800, 204800, 204800, 204800, 204800, 204800, 204800, 204800,
|
|
/* 23902 */ 204800, 204800, 204800, 204800, 205104, 204800, 204800, 205103, 205104, 204800, 205103, 205103, 204800,
|
|
/* 23915 */ 204800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 0, 0, 0, 0, 0, 0, 2183801, 0, 0, 0, 0, 0, 296, 297, 151552,
|
|
/* 23942 */ 2134016, 300, 301, 0, 212992, 0, 0, 0, 0, 662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3117056, 0, 0,
|
|
/* 23970 */ 0, 0, 0, 0, 0, 0, 2200253, 0, 0, 0, 0, 0, 0, 2932736, 2965504, 0, 0, 3076096, 0, 0, 2695168, 3174400,
|
|
/* 23992 */ 2646016, 0, 914, 2126737, 2126737, 2126737, 2126737, 2425745, 2433937, 2126737, 2126737, 2126737, 2126737,
|
|
/* 24005 */ 2126737, 2126737, 2126737, 2126737, 0, 0, 987, 2126810, 2126810, 2126810, 2126810, 2425818, 2724753,
|
|
/* 24018 */ 2126737, 2732945, 2773905, 2126737, 2126737, 2126737, 2806673, 2126737, 2831249, 2126737, 2126737,
|
|
/* 24029 */ 2864017, 2126737, 2126737, 2126737, 2126737, 2126737, 2524049, 2126737, 2126737, 2126737, 2126737,
|
|
/* 24040 */ 2126737, 2126737, 2126737, 2126737, 2601873, 2126737, 2126737, 2921361, 2126737, 2126737, 2126737,
|
|
/* 24051 */ 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 3117969, 2126737, 2126737,
|
|
/* 24062 */ 2126737, 2126737, 2593681, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126810,
|
|
/* 24073 */ 2126810, 2126810, 2126810, 3093393, 0, 0, 0, 0, 3026944, 2404352, 2179072, 2179072, 2179072, 2179072,
|
|
/* 24087 */ 3026944, 2434010, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24098 */ 2126810, 2126810, 2126810, 2126810, 2626522, 2126810, 2126737, 0, 2179072, 2126810, 2126810, 2126737,
|
|
/* 24110 */ 2457600, 2179072, 2179072, 2179072, 2179072, 2458513, 2126737, 2126737, 2126737, 2126737, 2126737,
|
|
/* 24121 */ 2626449, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2700177, 2126737, 2716561, 2126737,
|
|
/* 24132 */ 2806746, 2126810, 2831322, 2126810, 2126810, 2864090, 2126810, 2126810, 2126810, 2126810, 2921434,
|
|
/* 24143 */ 2126810, 2126810, 2126810, 2126810, 2126810, 2126737, 2179072, 2126810, 2126810, 2126737, 2179072,
|
|
/* 24154 */ 2179072, 2179072, 2179072, 2126737, 2126737, 2126737, 2458586, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24165 */ 2183168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321, 395, 0, 0, 0, 321, 0, 0, 2126737, 2126737, 2126737, 2409361,
|
|
/* 24187 */ 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737,
|
|
/* 24198 */ 2126737, 2126737, 2126737, 2126737, 2126737, 3126161, 2126737, 2126737, 2126737, 2802577, 2814865,
|
|
/* 24209 */ 2126737, 2839441, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737,
|
|
/* 24220 */ 2126737, 2126737, 2126810, 2126810, 2126810, 2126810, 2126810, 2663386, 2126810, 2126810, 2126810,
|
|
/* 24231 */ 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2802650, 2814938, 2126810,
|
|
/* 24242 */ 2839514, 0, 0, 0, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737,
|
|
/* 24255 */ 2126737, 2462609, 2466705, 2126737, 0, 2126810, 2126810, 2126810, 2126810, 2126810, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 24272 */ 0, 0, 297, 0, 0, 0, 0, 0, 0, 2769809, 2778001, 2126737, 2798481, 2823057, 2126737, 2126737, 2126737,
|
|
/* 24289 */ 2884497, 2126737, 2913169, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2655121,
|
|
/* 24300 */ 2679697, 2761617, 2765713, 2786193, 2855825, 2970513, 2126737, 3007377, 2126737, 3134353, 2126737,
|
|
/* 24311 */ 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 3208081, 2126737, 0, 0, 0, 0, 0,
|
|
/* 24326 */ 325, 0, 69632, 73728, 0, 0, 0, 0, 0, 65536, 0, 0, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24344 */ 2126810, 2126810, 2126810, 2126810, 2462682, 2466778, 2126810, 2126810, 2126810, 2524122, 2126810,
|
|
/* 24355 */ 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2601946, 2126810, 2126810, 2126810,
|
|
/* 24366 */ 2585562, 2126810, 2126810, 2126810, 2126810, 2126810, 2618330, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24377 */ 2126810, 2126810, 2126810, 2888666, 2126810, 2126810, 2925530, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24388 */ 2126810, 2126810, 2642906, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2720730, 2126810,
|
|
/* 24399 */ 2126810, 2126810, 2126810, 2126810, 2769882, 2778074, 2126810, 2798554, 2823130, 2126810, 2126810,
|
|
/* 24410 */ 2126810, 2884570, 2126810, 2913242, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24421 */ 2126810, 3126234, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24432 */ 3208154, 2126810, 2126737, 2179072, 2126810, 2126810, 2126737, 0, 0, 0, 2388881, 2126737, 2126737,
|
|
/* 24445 */ 2421649, 2126737, 2126737, 2126737, 2126737, 2126737, 2454417, 2126737, 2474897, 2483089, 2630545,
|
|
/* 24456 */ 2126737, 2126737, 2651025, 2126737, 2126737, 2126737, 2708369, 2126737, 2737041, 2126737, 2126737,
|
|
/* 24467 */ 2126737, 2126737, 2126737, 2126737, 2126737, 985, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24479 */ 2126810, 2126810, 2126810, 2126810, 2552794, 2126810, 2126810, 2126810, 2126810, 2126810, 2126737,
|
|
/* 24490 */ 2126737, 3072913, 2126737, 2126737, 3122065, 2126737, 2126737, 3142545, 2126737, 2126737, 2126737,
|
|
/* 24501 */ 3171217, 2126737, 2126737, 3191697, 3195793, 2126737, 0, 0, 0, 0, 0, 0, 2388954, 2126810, 2126810,
|
|
/* 24516 */ 2421722, 2126810, 2126810, 2126810, 2126810, 2126810, 3040218, 2126810, 3064794, 2126810, 2126810,
|
|
/* 24527 */ 2126810, 2126810, 3101658, 2126810, 2126810, 3134426, 2126810, 2454490, 2126810, 2474970, 2483162,
|
|
/* 24538 */ 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2532314, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24549 */ 3036122, 2126810, 2126810, 3072986, 2126810, 2126810, 3122138, 2126810, 2126810, 3142618, 2126810,
|
|
/* 24560 */ 2126810, 2126810, 3171290, 2126810, 2126810, 3191770, 3195866, 2126810, 2126737, 2179072, 2126810,
|
|
/* 24571 */ 2126810, 2126737, 2179072, 2179072, 3112960, 3219456, 2126737, 2126737, 3113873, 3220369, 2126810,
|
|
/* 24582 */ 2126810, 3113946, 3220442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167936, 167936, 167936, 167936, 167936, 167936,
|
|
/* 24600 */ 167936, 2638737, 2126737, 2126737, 2126737, 2126737, 2728849, 2753425, 2126737, 2126737, 2126737, 2126737,
|
|
/* 24612 */ 2843537, 2847633, 2126737, 2896785, 2917265, 2638810, 2126810, 2126810, 2126810, 2126810, 2728922,
|
|
/* 24623 */ 2753498, 2126810, 2126810, 2126810, 2126810, 2843610, 2847706, 2126810, 2896858, 2917338, 2179072,
|
|
/* 24634 */ 3178496, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2495377, 2126737,
|
|
/* 24645 */ 2126737, 2515857, 2126737, 2126737, 2126737, 2126737, 3011473, 2126737, 2126737, 2126810, 2126810,
|
|
/* 24656 */ 2503642, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 3138522, 2126737, 2940928,
|
|
/* 24667 */ 2941841, 2941914, 0, 0, 0, 0, 2126737, 2544529, 2548625, 2126737, 2126737, 2597777, 2126737, 2126737,
|
|
/* 24681 */ 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2552721, 2126737, 2126737,
|
|
/* 24692 */ 2126737, 2126737, 2126737, 2126737, 2929553, 2126737, 2126737, 2126737, 2999185, 2126737, 2126737,
|
|
/* 24703 */ 2126737, 2126737, 3060625, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 3040145,
|
|
/* 24714 */ 2126737, 3064721, 2126737, 2126737, 2126737, 2126737, 3101585, 2126737, 2126737, 3179409, 2126810,
|
|
/* 24725 */ 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2495450, 2126810, 2126810, 2515930,
|
|
/* 24736 */ 2126810, 2126810, 0, 0, 0, 0, 0, 0, 2510848, 2514944, 0, 0, 2547712, 2596864, 0, 0, 0, 0, 0, 2160, 0, 0,
|
|
/* 24758 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 561, 561, 561, 561, 561, 561, 3525, 561,
|
|
/* 24779 */ 2126810, 2544602, 2548698, 2126810, 2126810, 2597850, 2126810, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24790 */ 2126810, 2126810, 2126810, 2126810, 2126810, 2126737, 0, 2502656, 0, 0, 3010560, 2126810, 2929626,
|
|
/* 24803 */ 2126810, 2126810, 2126810, 2999258, 2126810, 2126810, 2126810, 2126810, 3060698, 2126810, 2126810,
|
|
/* 24814 */ 2126810, 2126810, 2126810, 2126810, 3118042, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810,
|
|
/* 24825 */ 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126737,
|
|
/* 24836 */ 2126810, 3179482, 2126737, 2179072, 2126810, 2126737, 2179072, 2179072, 2126737, 2126737, 2126810,
|
|
/* 24847 */ 2126810, 2441216, 0, 0, 0, 0, 0, 326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403, 0, 0, 0, 0, 0, 3129344, 2179072,
|
|
/* 24873 */ 2179072, 3153920, 3166208, 3174400, 2397073, 2401169, 2126737, 2126737, 2442129, 2126737, 2470801,
|
|
/* 24884 */ 2126737, 2126737, 2126737, 2126737, 2126737, 2663313, 2126737, 2126737, 2126737, 2126737, 2126737,
|
|
/* 24895 */ 2126737, 2126737, 2126737, 2126737, 2126737, 0, 0, 2126810, 2126810, 2126810, 2409434, 2519953, 2126737,
|
|
/* 24908 */ 2126737, 2126737, 2126737, 2589585, 2126737, 2614161, 2646929, 2126737, 2126737, 2696081, 2757521,
|
|
/* 24919 */ 2126737, 2126737, 2126737, 2126737, 2126737, 3138449, 2126810, 2126810, 2499546, 2126810, 2126810,
|
|
/* 24930 */ 2126810, 2556890, 2565082, 2126810, 2126810, 2126737, 2933649, 2126737, 2126737, 2126737, 2126737,
|
|
/* 24941 */ 2126737, 2126737, 2126737, 3130257, 2126737, 2126737, 3154833, 3167121, 3175313, 2397146, 2401242,
|
|
/* 24952 */ 2126810, 2126810, 2442202, 2126810, 2470874, 2126810, 2126810, 2126810, 2520026, 2126810, 2126810,
|
|
/* 24963 */ 2126810, 2126810, 2589658, 2126810, 2126810, 2126810, 3011546, 2126810, 2126810, 2126737, 0, 0, 0, 0, 0,
|
|
/* 24978 */ 0, 0, 2592768, 0, 0, 0, 0, 663, 0, 0, 666, 667, 0, 0, 0, 0, 0, 0, 0, 540, 571, 540, 571, 540, 540, 571,
|
|
/* 25004 */ 540, 595, 2614234, 2647002, 2126810, 2126810, 2696154, 2757594, 2126810, 2126810, 2126810, 2126810,
|
|
/* 25016 */ 2933722, 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 3224538, 2126737, 2179072, 2417626,
|
|
/* 25027 */ 2126810, 2126737, 2179072, 2179072, 2126737, 2126737, 2854912, 2969600, 2179072, 3006464, 2179072,
|
|
/* 25038 */ 3018752, 2179072, 2179072, 2179072, 3149824, 2126737, 2429841, 2438033, 2126737, 2487185, 2126737,
|
|
/* 25049 */ 2126737, 2945937, 2126737, 2126737, 2995089, 2126737, 3003281, 2126737, 2126737, 3023761, 2126737,
|
|
/* 25060 */ 3068817, 3085201, 3097489, 2126737, 2126737, 2888593, 2126737, 2126737, 2925457, 2126737, 2126737,
|
|
/* 25071 */ 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 3036049, 2126737, 3019665, 2126737,
|
|
/* 25082 */ 2126737, 2126737, 3150737, 2126810, 2429914, 2438106, 2126810, 2487258, 2126810, 2126810, 2126810,
|
|
/* 25093 */ 2126810, 2126810, 2700250, 2126810, 2716634, 2126810, 2724826, 2126810, 2733018, 2773978, 2126810,
|
|
/* 25104 */ 2126810, 2126810, 2126810, 3150810, 2126737, 2179072, 3051520, 2126737, 3052433, 2126810, 3052506, 0,
|
|
/* 25116 */ 2490368, 2498560, 0, 0, 0, 0, 0, 0, 679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2126810, 2593754, 2126810,
|
|
/* 25139 */ 2126810, 2126810, 2126810, 2126810, 2126810, 2126810, 2126737, 2449408, 0, 2535424, 3031040, 0, 0, 0, 0,
|
|
/* 25154 */ 0, 2439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 0, 0, 370, 0, 0, 2126737, 2450321, 2126737, 2536337, 2126737,
|
|
/* 25177 */ 2610065, 2126737, 2859921, 2126737, 2126737, 2126737, 3031953, 2126810, 2450394, 2126810, 2536410,
|
|
/* 25188 */ 2126810, 2610138, 2126810, 2859994, 2126810, 2126810, 2126810, 3032026, 2126737, 2527232, 0, 0, 0, 0, 0,
|
|
/* 25203 */ 2179072, 2126810, 2126810, 2126737, 2179072, 2179072, 2179072, 2179072, 2179072, 2126737, 2126737,
|
|
/* 25214 */ 2126737, 2126737, 2126810, 2126810, 2126810, 2126810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237568, 0, 0, 0, 0,
|
|
/* 25236 */ 2527232, 2179072, 2179072, 2179072, 2179072, 2179072, 2126737, 2528145, 2126737, 2126737, 2126737,
|
|
/* 25247 */ 2126737, 2126737, 2126810, 2528218, 2126810, 2126810, 2946010, 2126810, 2126810, 2995162, 2126810,
|
|
/* 25258 */ 3003354, 2126810, 2126810, 3023834, 2126810, 3068890, 3085274, 3097562, 2126810, 2126810, 2126810,
|
|
/* 25269 */ 2606042, 2126810, 2630618, 2126810, 2126810, 2651098, 2126810, 2126810, 2126810, 2708442, 2126810,
|
|
/* 25280 */ 2737114, 2126810, 2126810, 2126810, 2655194, 2679770, 2761690, 2765786, 2786266, 2855898, 2970586,
|
|
/* 25291 */ 2126810, 3007450, 2126810, 3019738, 2126810, 2126810, 0, 2486272, 0, 0, 0, 0, 0, 2678784, 2854912,
|
|
/* 25306 */ 3006464, 0, 3108864, 3198976, 0, 2405265, 2126737, 2126737, 2126737, 2126737, 3027857, 2405338, 2126810,
|
|
/* 25319 */ 2126810, 2126810, 2126810, 3027930, 2539520, 0, 2949120, 0, 0, 0, 0, 695, 0, 0, 0, 0, 362, 362, 362, 0, 0,
|
|
/* 25340 */ 704, 0, 0, 0, 0, 709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2049, 0, 0, 0, 0, 2179072, 2658304, 2973696,
|
|
/* 25365 */ 2179072, 2126737, 2659217, 2974609, 2126737, 2126810, 2659290, 2974682, 2126810, 2711552, 0, 2560000,
|
|
/* 25377 */ 2179072, 2179072, 3125248, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 25388 */ 2179072, 2179072, 2179072, 2179072, 2125824, 2125824, 2125824, 2125824, 2560913, 2126737, 2560986,
|
|
/* 25399 */ 2126810, 0, 2179072, 2126737, 2126810, 0, 2179072, 2126737, 2126810, 0, 2179072, 2126737, 2126810,
|
|
/* 25412 */ 2126810, 3130330, 2126810, 2126810, 3154906, 3167194, 3175386, 2126737, 2506752, 2507738, 2507665,
|
|
/* 25423 */ 2179072, 2179072, 2126737, 2126737, 2126737, 2642833, 2126737, 2126737, 2126737, 2126737, 2126737,
|
|
/* 25434 */ 2126737, 2720657, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2126737, 2585489,
|
|
/* 25445 */ 2126737, 2126737, 2126737, 2126737, 2126737, 2618257, 2126737, 2985984, 2985984, 2986897, 2986970, 0, 0,
|
|
/* 25458 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 397, 0, 0, 0, 0, 221184, 221184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221184, 221184,
|
|
/* 25486 */ 0, 0, 221184, 221184, 221184, 0, 0, 0, 0, 0, 0, 221184, 0, 0, 0, 221184, 221184, 221184, 221184, 221184,
|
|
/* 25506 */ 221184, 221184, 221184, 221184, 221184, 221184, 221184, 221184, 221184, 221184, 221184, 221184, 221184,
|
|
/* 25519 */ 221184, 221184, 221184, 221184, 221184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 25544 */ 221184, 221184, 221184, 221184, 221184, 221184, 221184, 221184, 1, 12290, 3, 0, 0, 0, 0, 0, 253952, 0, 0,
|
|
/* 25563 */ 0, 253952, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, 688, 0, 0, 0, 0, 0, 98304, 0, 0, 0, 53248, 0, 0, 0, 0,
|
|
/* 25593 */ 0, 2662400, 0, 2813952, 297, 0, 300, 0, 0, 0, 300, 0, 301, 0, 0, 0, 301, 0, 0, 0, 301, 69632, 139679, 0,
|
|
/* 25617 */ 0, 0, 0, 0, 65536, 0, 0, 0, 0, 3133440, 0, 98304, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2179072, 2179072,
|
|
/* 25642 */ 2179072, 2179072, 2179072, 300, 0, 301, 0, 0, 0, 2473984, 2478080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176128,
|
|
/* 25663 */ 176128, 176128, 176128, 176128, 176128, 176128, 3121152, 2179072, 2179072, 3141632, 2179072, 2179072,
|
|
/* 25675 */ 2179072, 3170304, 2179072, 2179072, 3190784, 3194880, 2179072, 914, 0, 0, 0, 0, 0, 2451, 0, 0, 0, 0, 0, 0,
|
|
/* 25695 */ 0, 0, 0, 0, 301, 301, 0, 0, 0, 0, 0, 914, 0, 2387968, 2125824, 2125824, 2420736, 2125824, 2125824,
|
|
/* 25714 */ 2125824, 2125824, 2125824, 2453504, 2125824, 2473984, 2482176, 2125824, 2125824, 2125824, 2125824,
|
|
/* 25725 */ 2125824, 2125824, 2531328, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2605056,
|
|
/* 25736 */ 2125824, 3194880, 2125824, 987, 0, 0, 0, 987, 0, 2387968, 2125824, 2125824, 2420736, 2125824, 2125824,
|
|
/* 25751 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2887680, 2125824, 2125824, 2924544, 2125824, 2125824,
|
|
/* 25762 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 3035136, 225740, 225740, 225740, 225740,
|
|
/* 25774 */ 225740, 225740, 225740, 225740, 225740, 225740, 225740, 225740, 225740, 225740, 225740, 225740, 0, 0, 0,
|
|
/* 25789 */ 0, 0, 0, 0, 0, 0, 348, 349, 350, 0, 0, 0, 0, 2125824, 237568, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 25809 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 0, 0, 0, 0, 0, 358, 249856, 249856, 249856, 249856, 249856, 249856,
|
|
/* 25831 */ 249856, 249856, 249856, 249856, 249856, 249856, 249856, 249856, 249856, 249856, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 25850 */ 362, 0, 0, 0, 0, 0, 0, 0, 2183168, 0, 0, 0, 0, 0, 296, 297, 0, 2134016, 300, 301, 0, 0, 217088, 2125824,
|
|
/* 25874 */ 241664, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 131072,
|
|
/* 25895 */ 131072, 254413, 254413, 254413, 254413, 254413, 254413, 254413, 254413, 254413, 254413, 254413, 254413,
|
|
/* 25908 */ 254413, 254413, 254413, 254413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 155648, 0, 0, 2183168, 0, 0,
|
|
/* 25932 */ 270336, 0, 0, 296, 297, 0, 2134016, 300, 301, 200704, 0, 0, 0, 0, 0, 2462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 25958 */ 1261, 0, 0, 0, 0, 0, 2125824, 0, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 180224, 0, 0, 0, 0, 0,
|
|
/* 25979 */ 0, 0, 1726, 0, 0, 0, 0, 0, 0, 0, 0, 304, 304, 304, 0, 0, 0, 0, 0, 0, 2748416, 2879488, 0, 20480, 0, 0, 0,
|
|
/* 26006 */ 0, 0, 0, 0, 0, 2179072, 2179072, 2179072, 2179072, 2768896, 2777088, 2797568, 2822144, 2179072, 2179072,
|
|
/* 26021 */ 2179072, 2883584, 2912256, 2179072, 2179072, 2179072, 2179072, 2179072, 2617344, 2179072, 2179072,
|
|
/* 26032 */ 2179072, 2179072, 2179072, 2179072, 2662400, 2179072, 2179072, 2179072, 2179072, 2179072, 3010560,
|
|
/* 26043 */ 2179072, 2179072, 2125824, 2125824, 2502656, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 26054 */ 2125824, 2125824, 2584576, 2125824, 2125824, 2125824, 2125824, 2125824, 2617344, 2125824, 2125824,
|
|
/* 26065 */ 2125824, 2125824, 2125824, 2125824, 0, 266240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2142208, 0, 0,
|
|
/* 26089 */ 0, 266240, 0, 0, 0, 0, 0, 0, 0, 0, 1, 12290, 2113823, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 293, 0, 0, 245760,
|
|
/* 26116 */ 0, 0, 2179072, 2125824, 2125824, 2125824, 2179072, 2179072, 2179072, 2179072, 2179072, 2125824, 2125824,
|
|
/* 26129 */ 2125824, 2125824, 2125824, 2125824, 2125824, 3039232, 2125824, 3063808, 2125824, 2125824, 2125824,
|
|
/* 26140 */ 2125824, 3100672, 2125824, 2125824, 3133440, 2125824, 245760, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 26152 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 122880, 122880, 0, 0, 274432, 274432, 274432, 274432, 0, 0, 0, 0, 0,
|
|
/* 26177 */ 274432, 0, 274432, 1, 12290, 3, 0, 0, 0, 0, 725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1192, 0, 1195, 0, 0,
|
|
/* 26204 */ 78112, 290, 0, 0, 0, 0, 0, 296, 297, 0, 0, 300, 301, 0, 0, 0, 0, 0, 328, 329, 330, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 26233 */ 0, 2200252, 2200252, 2200252, 0, 0, 0, 0, 0, 0, 0, 2033, 0, 0, 0, 0, 0, 2035, 0, 0, 0, 0, 0, 0, 0, 2055,
|
|
/* 26259 */ 0, 2056, 0, 0, 0, 0, 0, 0, 0, 2067, 0, 0, 0, 0, 0, 0, 0, 0, 1187, 0, 0, 0, 0, 0, 0, 1104, 2483, 0, 0, 0,
|
|
/* 26289 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 690, 0, 0, 2993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 383, 335, 0,
|
|
/* 26321 */ 0, 0, 0, 1679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 694, 0, 0, 0, 0, 0, 0, 741, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 26354 */ 0, 0, 0, 730, 0, 0, 0, 0, 0, 0, 78456, 290, 0, 0, 0, 0, 0, 296, 297, 0, 0, 300, 301, 0, 0, 0, 0, 0, 344,
|
|
/* 26383 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1158, 0, 0, 0, 0, 0, 562, 562, 562, 562, 562, 562, 562, 586, 586, 586, 540,
|
|
/* 26410 */ 586, 586, 586, 586, 586, 562, 562, 540, 562, 586, 562, 586, 1, 12290, 3, 78112, 0, 0, 2771, 0, 0, 0, 0, 0,
|
|
/* 26434 */ 0, 0, 0, 0, 0, 0, 0, 0, 514, 521, 521, 1, 12290, 3, 78113, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301, 0,
|
|
/* 26463 */ 0, 0, 0, 282624, 282624, 282624, 282624, 282624, 282624, 282624, 282624, 282624, 282624, 282624, 282624,
|
|
/* 26478 */ 282624, 282624, 282624, 282624, 1, 12290, 3, 0, 282624, 282624, 282624, 0, 0, 282624, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 26499 */ 0, 0, 0, 0, 3178496, 2670592, 0, 2744320, 0, 0, 0, 0, 0, 282624, 282624, 282624, 282624, 282624, 282624,
|
|
/* 26518 */ 282624, 282624, 282624, 0, 282624, 282624, 282624, 282624, 282624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 290,
|
|
/* 26539 */ 0, 0, 0, 0, 3176, 0, 0, 2740224, 0, 0, 0, 0, 0, 2793472, 0, 0, 0, 0, 0, 0, 0, 2094, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 26568 */ 0, 683, 684, 685, 0, 0, 0, 689, 0, 0, 0, 0, 286720, 286720, 0, 286720, 286720, 286720, 286720, 286720,
|
|
/* 26588 */ 286720, 286720, 286720, 286720, 286720, 286720, 286720, 286720, 286720, 286720, 286720, 286720, 286720,
|
|
/* 26601 */ 286720, 286720, 286720, 286720, 286720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 302, 0, 0, 0, 0, 0, 3043328, 0,
|
|
/* 26625 */ 3149824, 2936832, 0, 2760704, 3301, 0, 0, 0, 0, 2953216, 0, 0, 2826240, 2875392, 0, 0, 0, 3381, 0, 0,
|
|
/* 26645 */ 2834432, 0, 3227648, 2568192, 0, 0, 0, 0, 2564096, 0, 2748416, 2879488, 0, 3381, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 26667 */ 2179072, 2179072, 2179072, 2531328, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072, 2179072,
|
|
/* 26678 */ 2605056, 2179072, 2629632, 2179072, 2179072, 0, 0, 0, 306, 0, 0, 0, 0, 0, 305, 0, 305, 306, 0, 305, 305,
|
|
/* 26699 */ 0, 0, 0, 305, 305, 306, 306, 0, 0, 0, 0, 0, 0, 305, 405, 306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 26730 */ 750, 0, 0, 0, 306, 410, 0, 0, 69632, 73728, 0, 0, 0, 0, 0, 65536, 0, 0, 0, 0, 742, 0, 0, 0, 0, 742, 0,
|
|
/* 26757 */ 748, 0, 0, 0, 0, 0, 0, 1192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 462, 462, 462, 488, 488, 462, 488, 488, 488,
|
|
/* 26784 */ 488, 488, 488, 488, 513, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, 533, 488, 488,
|
|
/* 26805 */ 488, 488, 488, 541, 563, 541, 563, 541, 541, 563, 541, 587, 563, 563, 563, 563, 563, 563, 563, 587, 587,
|
|
/* 26826 */ 587, 541, 613, 613, 613, 613, 613, 587, 563, 563, 541, 563, 587, 563, 587, 1, 12290, 3, 78112, 0, 0, 645,
|
|
/* 26848 */ 0, 0, 648, 649, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 253952, 0, 0, 0, 0, 0, 645, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 26879 */ 0, 762, 0, 0, 0, 0, 0, 353, 0, 351, 0, 472, 472, 472, 472, 472, 472, 472, 477, 472, 472, 472, 472, 472,
|
|
/* 26903 */ 472, 472, 472, 472, 477, 472, 0, 768, 0, 0, 772, 0, 0, 0, 0, 0, 0, 781, 0, 0, 0, 0, 0, 0, 727, 0, 0, 0,
|
|
/* 26931 */ 731, 0, 0, 0, 0, 0, 0, 0, 69632, 73728, 0, 0, 0, 343, 342, 65536, 341, 0, 788, 0, 0, 0, 0, 792, 0, 0, 0,
|
|
/* 26958 */ 0, 0, 0, 0, 796, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 782, 0, 0, 0, 0, 736, 0, 796, 0, 0, 0, 0, 648, 0, 0,
|
|
/* 26990 */ 0, 0, 0, 0, 820, 0, 0, 648, 0, 0, 0, 0, 0, 837, 792, 0, 0, 0, 0, 0, 841, 842, 792, 792, 0, 0, 0, 0, 792,
|
|
/* 27019 */ 736, 792, 0, 540, 540, 851, 855, 540, 540, 540, 540, 1345, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 27040 */ 540, 540, 2181, 540, 540, 540, 540, 561, 561, 561, 921, 925, 561, 561, 561, 561, 561, 561, 951, 561, 956,
|
|
/* 27061 */ 561, 963, 561, 966, 561, 561, 980, 561, 561, 0, 585, 585, 585, 994, 998, 585, 585, 585, 585, 585, 585,
|
|
/* 27082 */ 1963, 1964, 1966, 585, 585, 585, 585, 585, 585, 585, 561, 2713, 585, 2715, 2716, 540, 540, 540, 540, 585,
|
|
/* 27102 */ 585, 585, 1024, 585, 1029, 585, 1036, 585, 1039, 585, 585, 1053, 585, 585, 966, 0, 0, 0, 855, 585, 998,
|
|
/* 27123 */ 925, 851, 1065, 894, 540, 540, 921, 1070, 966, 561, 0, 585, 585, 585, 585, 585, 78112, 0, 0, 0, 0, 0, 0,
|
|
/* 27146 */ 0, 0, 0, 114688, 0, 241664, 258048, 0, 0, 0, 1093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 766, 0, 0,
|
|
/* 27175 */ 1214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 672, 673, 0, 540, 540, 1342, 540, 540, 540, 540, 540, 540,
|
|
/* 27201 */ 540, 540, 540, 540, 540, 540, 540, 0, 0, 0, 585, 585, 585, 1524, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 27223 */ 585, 585, 585, 585, 585, 1517, 585, 585, 585, 1433, 0, 540, 585, 585, 561, 540, 540, 540, 540, 540, 561,
|
|
/* 27244 */ 561, 561, 561, 561, 561, 561, 3070, 561, 561, 561, 561, 561, 561, 585, 585, 585, 585, 585, 585, 0, 0, 0,
|
|
/* 27266 */ 3662, 0, 0, 0, 1641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1103, 1104, 1105, 1106, 1654, 0, 0, 0, 0, 0, 0,
|
|
/* 27294 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 785, 0, 1693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305, 306, 0, 1732, 0,
|
|
/* 27325 */ 0, 1733, 0, 0, 0, 0, 540, 540, 540, 540, 540, 540, 540, 3030, 540, 540, 540, 540, 540, 540, 540, 1745,
|
|
/* 27347 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 1758, 540, 540, 540, 540, 540, 540, 2540, 540, 540, 540, 540,
|
|
/* 27368 */ 540, 540, 540, 540, 540, 540, 1329, 540, 540, 540, 540, 540, 540, 540, 540, 1795, 540, 540, 1798, 540,
|
|
/* 27388 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 900, 540, 540, 540, 540, 540, 540, 1810, 540, 540, 540, 540,
|
|
/* 27409 */ 540, 1815, 540, 540, 540, 540, 540, 540, 540, 1360, 914, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 27430 */ 561, 561, 561, 561, 1416, 561, 1825, 561, 561, 561, 561, 1831, 561, 561, 561, 561, 561, 1837, 561, 561,
|
|
/* 27450 */ 561, 561, 561, 983, 561, 0, 585, 585, 585, 585, 585, 1002, 585, 1010, 561, 1892, 561, 561, 561, 561, 561,
|
|
/* 27471 */ 561, 561, 561, 561, 561, 1904, 561, 561, 561, 561, 585, 585, 585, 585, 0, 0, 0, 2726, 0, 0, 2729, 2730,
|
|
/* 27493 */ 561, 561, 1909, 561, 561, 561, 561, 561, 561, 561, 26027, 1919, 585, 585, 585, 585, 561, 0, 0, 0, 0, 0,
|
|
/* 27515 */ 540, 3649, 540, 540, 540, 540, 540, 540, 561, 561, 561, 561, 561, 561, 561, 3231, 3232, 561, 1925, 585,
|
|
/* 27535 */ 585, 585, 585, 585, 1931, 585, 585, 585, 585, 585, 585, 585, 585, 585, 561, 0, 0, 0, 0, 0, 3596, 1944,
|
|
/* 27557 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1540, 561, 561, 2025, 585, 585,
|
|
/* 27578 */ 585, 0, 2029, 0, 0, 0, 0, 0, 2031, 0, 0, 0, 0, 0, 2487, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122880, 0, 0, 0,
|
|
/* 27608 */ 0, 0, 0, 0, 2041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1132, 0, 0, 0, 2075, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 27640 */ 0, 0, 0, 0, 0, 1135, 0, 2145, 0, 0, 0, 2143, 0, 0, 2150, 0, 0, 0, 0, 0, 0, 0, 0, 159744, 0, 0, 0, 0, 0, 0,
|
|
/* 27670 */ 0, 0, 1234, 0, 0, 0, 0, 0, 0, 0, 0, 1584, 0, 0, 0, 0, 0, 0, 0, 0, 1700, 0, 0, 0, 0, 1705, 0, 0, 540, 540,
|
|
/* 27700 */ 2171, 540, 540, 2174, 540, 540, 540, 540, 540, 540, 2182, 540, 540, 540, 540, 540, 540, 2568, 540, 540,
|
|
/* 27720 */ 540, 540, 2572, 540, 540, 540, 540, 540, 540, 1347, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 27740 */ 2556, 540, 540, 540, 540, 540, 540, 540, 2201, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 27761 */ 540, 0, 0, 2242, 540, 540, 540, 2214, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 27782 */ 1805, 540, 540, 0, 0, 0, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2254, 561, 0, 585, 585,
|
|
/* 27804 */ 585, 585, 585, 78112, 1079, 0, 0, 0, 0, 0, 0, 0, 0, 2123, 0, 2125, 2126, 0, 0, 0, 0, 561, 2257, 561, 561,
|
|
/* 27829 */ 561, 561, 561, 561, 2265, 561, 561, 561, 561, 561, 561, 561, 0, 0, 585, 585, 585, 585, 585, 585, 585, 561,
|
|
/* 27851 */ 540, 585, 585, 561, 540, 2952, 561, 2954, 561, 2299, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 27871 */ 561, 561, 561, 561, 1438, 561, 2033, 0, 2035, 0, 0, 2426, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2434, 0, 0, 0, 2475,
|
|
/* 27897 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1193, 0, 0, 0, 0, 2484, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2493, 0, 0, 0, 0,
|
|
/* 27929 */ 0, 0, 756, 0, 0, 0, 0, 0, 0, 763, 0, 0, 0, 0, 0, 561, 561, 561, 561, 561, 561, 561, 561, 2592, 561, 561,
|
|
/* 27955 */ 561, 561, 561, 1408, 561, 561, 1412, 561, 561, 561, 561, 561, 561, 561, 0, 585, 585, 585, 585, 585, 585,
|
|
/* 27976 */ 1008, 585, 2656, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2664, 585, 585, 585, 585, 585,
|
|
/* 27996 */ 585, 2350, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2379, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 28017 */ 2699, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1940, 585, 585, 2708, 585, 585,
|
|
/* 28037 */ 585, 585, 585, 585, 561, 540, 585, 585, 561, 540, 540, 540, 540, 540, 540, 561, 561, 561, 3229, 561, 561,
|
|
/* 28058 */ 561, 561, 561, 561, 585, 585, 585, 3352, 585, 585, 585, 3355, 585, 585, 2731, 0, 0, 0, 0, 0, 0, 2736, 0,
|
|
/* 28081 */ 0, 0, 0, 0, 0, 0, 0, 0, 192971, 192971, 192971, 192971, 192971, 192971, 192971, 192971, 0, 0, 0, 2759, 0,
|
|
/* 28102 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1234, 540, 540, 540, 0, 0, 0, 2788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 28133 */ 1238, 0, 0, 0, 540, 540, 540, 2826, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2833, 540, 540, 540,
|
|
/* 28155 */ 540, 1748, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1760, 540, 540, 540, 540, 1765, 540, 540, 540,
|
|
/* 28175 */ 540, 540, 540, 540, 540, 1772, 540, 540, 540, 540, 561, 3406, 561, 561, 3408, 561, 561, 561, 561, 561,
|
|
/* 28195 */ 561, 561, 0, 585, 585, 585, 585, 585, 585, 1009, 585, 561, 561, 561, 2860, 561, 561, 2864, 561, 561, 561,
|
|
/* 28216 */ 561, 561, 561, 561, 561, 561, 944, 561, 561, 561, 561, 561, 561, 561, 2873, 561, 561, 561, 561, 561, 561,
|
|
/* 28237 */ 561, 561, 561, 561, 561, 2881, 561, 561, 0, 0, 0, 2649, 0, 1920, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 28259 */ 585, 2703, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2908, 585, 585, 2912, 585, 585, 585, 585, 585,
|
|
/* 28279 */ 585, 585, 585, 585, 585, 2393, 2394, 585, 585, 585, 585, 585, 2921, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 28299 */ 585, 585, 585, 585, 2929, 585, 585, 0, 0, 0, 3292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3297, 2955, 585, 0, 0, 0, 0,
|
|
/* 28326 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306, 305, 0, 0, 0, 2970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1588, 1589, 0,
|
|
/* 28357 */ 0, 540, 540, 540, 540, 3036, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2546, 540, 540,
|
|
/* 28378 */ 540, 561, 561, 561, 3076, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1436, 561, 561, 561,
|
|
/* 28399 */ 585, 585, 585, 3117, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2356, 585, 2358, 0,
|
|
/* 28420 */ 0, 0, 0, 3176, 3442, 0, 3444, 0, 0, 0, 0, 0, 540, 3451, 540, 540, 540, 540, 1796, 540, 540, 540, 540, 540,
|
|
/* 28444 */ 540, 540, 540, 540, 540, 540, 905, 540, 540, 540, 540, 3453, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 28465 */ 540, 540, 561, 3466, 561, 3468, 0, 0, 3501, 0, 0, 0, 0, 0, 0, 540, 540, 540, 540, 3510, 540, 540, 540,
|
|
/* 28488 */ 540, 540, 3204, 3205, 540, 540, 540, 540, 3209, 3210, 540, 540, 540, 540, 540, 1749, 1750, 540, 540, 540,
|
|
/* 28508 */ 540, 1757, 540, 540, 540, 540, 540, 540, 1346, 540, 540, 540, 540, 540, 540, 1356, 540, 540, 307, 308,
|
|
/* 28528 */ 309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 734, 0, 0, 0, 0, 418, 0, 0, 0, 0, 0, 449, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 28561 */ 0, 286720, 0, 0, 0, 0, 0, 0, 0, 0, 2490, 0, 0, 0, 0, 0, 0, 0, 0, 2504, 0, 0, 0, 0, 0, 0, 0, 0, 2517, 0, 0,
|
|
/* 28592 */ 0, 0, 0, 0, 0, 0, 2975, 0, 0, 0, 0, 0, 0, 0, 0, 2999, 0, 0, 0, 0, 0, 0, 0, 0, 3164, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 28624 */ 0, 3173, 0, 0, 0, 0, 0, 0, 0, 0, 3183, 0, 0, 0, 0, 0, 0, 0, 0, 155648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 28655 */ 449, 449, 418, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 449, 532, 449, 532, 532, 532, 449,
|
|
/* 28676 */ 532, 532, 532, 532, 449, 542, 564, 542, 564, 542, 542, 564, 542, 588, 564, 564, 564, 564, 564, 564, 564,
|
|
/* 28697 */ 588, 588, 588, 542, 588, 588, 588, 588, 588, 564, 564, 616, 621, 588, 621, 627, 1, 12290, 3, 78112, 0,
|
|
/* 28718 */ 1677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1163, 540, 540, 540, 1811, 540, 540, 540, 540, 540,
|
|
/* 28744 */ 540, 540, 540, 540, 540, 540, 1360, 914, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1377,
|
|
/* 28765 */ 561, 0, 585, 585, 585, 585, 585, 78112, 1079, 0, 0, 1082, 1086, 0, 0, 1090, 585, 585, 585, 1993, 585, 585,
|
|
/* 28787 */ 585, 585, 585, 1999, 585, 585, 585, 585, 585, 585, 561, 0, 0, 0, 0, 3551, 0, 3553, 0, 0, 0, 0, 0, 561,
|
|
/* 28811 */ 561, 561, 561, 561, 2589, 561, 561, 561, 561, 2593, 561, 561, 0, 2648, 0, 0, 0, 0, 585, 585, 585, 585,
|
|
/* 28833 */ 585, 585, 585, 585, 585, 2338, 585, 585, 585, 585, 585, 585, 585, 2657, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 28854 */ 585, 585, 585, 585, 585, 585, 585, 1971, 585, 585, 585, 2709, 585, 585, 585, 585, 561, 540, 585, 585, 561,
|
|
/* 28875 */ 540, 540, 540, 540, 540, 540, 561, 561, 3228, 561, 561, 561, 561, 561, 561, 561, 0, 0, 585, 2900, 585,
|
|
/* 28896 */ 585, 585, 585, 585, 540, 3514, 540, 3516, 540, 540, 3518, 540, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 28916 */ 1396, 1398, 561, 561, 561, 561, 561, 561, 3527, 561, 3529, 561, 561, 3531, 561, 585, 585, 585, 585, 585,
|
|
/* 28936 */ 585, 585, 585, 3540, 585, 3542, 585, 585, 3544, 585, 561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 362, 0, 0,
|
|
/* 28961 */ 0, 147456, 0, 0, 0, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 0, 0, 0, 0, 0, 373, 0, 0, 0, 0, 365,
|
|
/* 28987 */ 0, 382, 0, 348, 0, 0, 310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328, 0, 0, 0, 313, 0, 0, 0, 0, 0, 0,
|
|
/* 29019 */ 0, 0, 0, 0, 0, 0, 0, 764, 0, 0, 420, 428, 419, 428, 0, 310, 428, 441, 450, 463, 463, 463, 463, 463, 463,
|
|
/* 29044 */ 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 463, 484, 489, 489, 500, 489, 489, 489, 489, 489,
|
|
/* 29065 */ 489, 489, 489, 515, 515, 528, 528, 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, 515, 529, 529, 529,
|
|
/* 29086 */ 529, 529, 543, 565, 543, 565, 543, 543, 565, 543, 589, 565, 565, 565, 565, 565, 565, 565, 589, 589, 589,
|
|
/* 29107 */ 612, 589, 589, 589, 589, 589, 614, 615, 615, 612, 615, 614, 615, 614, 1, 12290, 3, 78112, 0, 702, 0, 0, 0,
|
|
/* 29130 */ 0, 0, 702, 0, 0, 0, 540, 540, 540, 540, 540, 3028, 540, 540, 540, 540, 540, 540, 540, 561, 967, 561, 561,
|
|
/* 29153 */ 561, 561, 561, 0, 585, 585, 585, 585, 585, 585, 585, 585, 2337, 585, 585, 585, 585, 2341, 585, 0, 1108, 0,
|
|
/* 29175 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540, 3200, 0, 1150, 1108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 29206 */ 1102, 0, 0, 0, 1228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1240, 0, 0, 540, 540, 1276, 1278, 540, 540,
|
|
/* 29233 */ 540, 540, 540, 540, 540, 540, 1292, 540, 1297, 540, 540, 1301, 540, 540, 540, 540, 1812, 540, 540, 540,
|
|
/* 29253 */ 540, 540, 540, 540, 540, 540, 1823, 1360, 914, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 29274 */ 1378, 561, 0, 585, 585, 585, 585, 585, 78112, 1079, 0, 0, 1083, 1087, 0, 0, 1091, 540, 1304, 540, 540,
|
|
/* 29295 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1302, 540, 1360, 914, 561, 561, 1364, 561,
|
|
/* 29315 */ 1367, 561, 561, 561, 561, 561, 561, 561, 561, 1381, 561, 1386, 561, 561, 1390, 561, 561, 1393, 561, 561,
|
|
/* 29335 */ 561, 561, 561, 561, 561, 561, 1431, 561, 561, 1435, 561, 561, 561, 561, 1484, 585, 585, 585, 585, 585,
|
|
/* 29355 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1942, 540, 1793, 1794, 540, 540, 540, 540, 540, 540,
|
|
/* 29375 */ 540, 540, 540, 540, 540, 540, 540, 0, 2584, 0, 585, 585, 1946, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 29396 */ 585, 585, 585, 585, 585, 585, 2005, 585, 585, 585, 1959, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 29417 */ 585, 585, 585, 585, 2357, 585, 2102, 0, 0, 0, 0, 1670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328, 379, 381, 0, 0,
|
|
/* 29444 */ 0, 0, 0, 2133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1119, 0, 0, 2033, 0, 2035, 0, 0, 0, 0, 0, 0, 2428,
|
|
/* 29474 */ 0, 0, 0, 0, 0, 0, 0, 2122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122880, 0, 122880, 122880, 122880, 122880, 122880,
|
|
/* 29498 */ 0, 0, 2474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1133, 0, 0, 0, 0, 0, 0, 2760, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 29530 */ 0, 0, 0, 380, 0, 0, 0, 384, 0, 0, 2799, 0, 0, 0, 0, 0, 0, 0, 2803, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 29556 */ 1326, 540, 540, 540, 540, 540, 540, 540, 1339, 585, 2956, 0, 0, 0, 0, 0, 2962, 0, 0, 0, 0, 0, 0, 0, 2966,
|
|
/* 29581 */ 0, 0, 0, 3008, 0, 0, 0, 0, 0, 0, 0, 0, 3017, 0, 0, 0, 0, 0, 383, 0, 69632, 73728, 0, 0, 0, 0, 0, 65536, 0,
|
|
/* 29610 */ 3048, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1320, 3089, 561, 561,
|
|
/* 29630 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1858, 3130, 585, 585, 585, 585, 585, 585,
|
|
/* 29651 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 1957, 540, 3225, 540, 540, 540, 540, 561, 561, 561, 561, 561,
|
|
/* 29672 */ 561, 561, 561, 561, 561, 561, 3414, 585, 585, 585, 3281, 585, 585, 585, 585, 561, 540, 585, 561, 540, 540,
|
|
/* 29693 */ 561, 561, 585, 585, 0, 0, 0, 3157, 3513, 540, 540, 540, 540, 540, 540, 540, 561, 3521, 561, 3522, 561,
|
|
/* 29714 */ 561, 561, 3526, 540, 540, 540, 3664, 561, 561, 561, 3666, 585, 585, 585, 3668, 0, 0, 540, 540, 540, 3560,
|
|
/* 29735 */ 540, 540, 540, 540, 540, 540, 540, 540, 3568, 561, 321, 321, 371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 29761 */ 1161, 0, 0, 0, 0, 371, 0, 430, 436, 0, 442, 451, 464, 464, 464, 464, 464, 464, 464, 464, 464, 464, 464,
|
|
/* 29784 */ 464, 464, 464, 464, 464, 464, 464, 464, 490, 490, 501, 490, 490, 490, 490, 490, 490, 490, 490, 516, 516,
|
|
/* 29805 */ 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 544, 566, 544, 566, 544, 544, 566,
|
|
/* 29826 */ 544, 590, 566, 566, 566, 566, 566, 566, 566, 590, 590, 590, 544, 590, 590, 590, 590, 590, 566, 566, 544,
|
|
/* 29847 */ 566, 590, 566, 590, 1, 12290, 3, 78112, 540, 540, 540, 874, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 29868 */ 540, 540, 540, 540, 1822, 540, 1360, 585, 1017, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 29888 */ 585, 585, 561, 540, 585, 585, 561, 540, 540, 540, 540, 561, 561, 1122, 0, 1124, 1125, 0, 0, 0, 1127, 1128,
|
|
/* 29910 */ 0, 0, 0, 0, 0, 0, 0, 0, 1159168, 0, 1159168, 0, 0, 0, 0, 1159168, 0, 0, 1166, 1167, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 29937 */ 0, 0, 0, 0, 0, 1634, 0, 0, 0, 1113, 0, 1253, 0, 0, 0, 0, 0, 1128, 0, 0, 0, 0, 0, 1236, 0, 0, 0, 0, 773,
|
|
/* 29966 */ 774, 0, 0, 778, 779, 0, 675, 0, 0, 0, 0, 0, 0, 1598, 0, 0, 0, 0, 0, 0, 0, 0, 1605, 0, 0, 1268, 1127, 0, 0,
|
|
/* 29995 */ 0, 0, 0, 0, 0, 0, 0, 540, 540, 1277, 540, 540, 540, 1323, 540, 540, 1325, 540, 540, 1328, 540, 540, 540,
|
|
/* 30018 */ 540, 540, 540, 540, 540, 2554, 540, 540, 540, 540, 540, 540, 2560, 1360, 914, 561, 561, 1365, 561, 561,
|
|
/* 30038 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 1400, 561, 561, 561, 561, 561, 561, 1404, 561, 561, 561, 561,
|
|
/* 30059 */ 561, 561, 561, 1413, 561, 561, 1415, 561, 561, 0, 2648, 0, 0, 0, 0, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 30081 */ 2655, 561, 1419, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1874, 561, 561,
|
|
/* 30101 */ 561, 1443, 561, 561, 561, 561, 561, 26027, 1360, 987, 585, 585, 1456, 585, 585, 0, 0, 3291, 0, 0, 0, 0, 0,
|
|
/* 30124 */ 0, 0, 0, 0, 0, 0, 1262, 0, 0, 0, 1266, 585, 585, 585, 1504, 585, 585, 1506, 585, 585, 585, 1510, 585, 585,
|
|
/* 30148 */ 585, 585, 585, 561, 540, 585, 585, 561, 540, 540, 540, 2020, 561, 561, 0, 0, 0, 1657, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 30173 */ 0, 0, 0, 0, 0, 1675, 0, 0, 0, 585, 1991, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 30197 */ 585, 585, 2695, 561, 2024, 585, 585, 585, 2028, 0, 2029, 0, 0, 0, 0, 0, 2031, 0, 0, 0, 0, 0, 2502, 0, 0,
|
|
/* 30222 */ 0, 0, 0, 0, 0, 0, 0, 0, 1586, 1587, 0, 0, 0, 0, 0, 0, 0, 2033, 0, 0, 0, 0, 0, 2035, 0, 0, 0, 0, 0, 2038,
|
|
/* 30252 */ 0, 0, 2077, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1177, 0, 0, 0, 0, 0, 0, 2091, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 30284 */ 0, 0, 0, 540, 540, 540, 2807, 540, 0, 0, 0, 561, 561, 561, 561, 561, 561, 561, 561, 2252, 561, 561, 561,
|
|
/* 30307 */ 561, 561, 1447, 561, 561, 26027, 1360, 987, 585, 585, 585, 585, 585, 561, 540, 585, 585, 561, 2017, 540,
|
|
/* 30327 */ 540, 540, 2021, 561, 2256, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 30347 */ 1875, 2272, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1890, 561, 561,
|
|
/* 30367 */ 561, 2314, 561, 2316, 561, 561, 561, 561, 561, 561, 561, 0, 0, 0, 0, 0, 0, 585, 585, 585, 585, 585, 585,
|
|
/* 30390 */ 585, 585, 585, 585, 585, 585, 2340, 585, 585, 585, 2399, 585, 2401, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 30410 */ 561, 540, 585, 585, 561, 540, 540, 561, 561, 540, 540, 2564, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 30431 */ 540, 540, 540, 540, 540, 3212, 540, 0, 0, 0, 561, 561, 561, 561, 2588, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 30453 */ 561, 1916, 561, 26027, 0, 585, 585, 585, 585, 0, 2757, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 735, 0,
|
|
/* 30480 */ 2834, 540, 540, 540, 540, 540, 540, 540, 2840, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2571, 540,
|
|
/* 30500 */ 540, 540, 540, 540, 540, 2882, 561, 561, 561, 561, 561, 561, 561, 2888, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 30521 */ 0, 0, 585, 585, 585, 2902, 585, 585, 585, 2930, 585, 585, 585, 585, 585, 585, 585, 2936, 585, 585, 585,
|
|
/* 30542 */ 585, 585, 585, 585, 561, 540, 2714, 585, 561, 540, 540, 540, 540, 540, 540, 3226, 540, 540, 540, 561, 561,
|
|
/* 30563 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3074, 585, 585, 585, 585, 3282, 585, 585, 585, 561,
|
|
/* 30584 */ 540, 585, 561, 540, 540, 561, 561, 585, 585, 0, 0, 3156, 0, 585, 585, 3369, 540, 540, 561, 561, 585, 585,
|
|
/* 30606 */ 0, 0, 0, 0, 0, 0, 0, 0, 2617344, 0, 0, 0, 0, 0, 2789376, 0, 0, 0, 0, 0, 3176, 0, 0, 0, 3445, 0, 0, 0, 0,
|
|
/* 30635 */ 540, 540, 540, 540, 3027, 540, 540, 540, 540, 3031, 540, 540, 540, 540, 540, 540, 3456, 540, 540, 540,
|
|
/* 30655 */ 540, 540, 540, 540, 540, 561, 561, 561, 561, 561, 3524, 561, 561, 561, 561, 3471, 561, 561, 561, 561, 561,
|
|
/* 30676 */ 561, 561, 561, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3486, 585, 585, 585, 585, 585, 585,
|
|
/* 30697 */ 585, 585, 561, 0, 0, 0, 0, 0, 3626, 540, 540, 540, 3515, 540, 540, 540, 540, 540, 561, 561, 561, 561, 561,
|
|
/* 30720 */ 561, 561, 561, 561, 561, 3413, 561, 561, 3528, 561, 561, 561, 561, 561, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 30741 */ 585, 585, 585, 3113, 585, 585, 585, 3541, 585, 585, 585, 585, 585, 561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362,
|
|
/* 30765 */ 362, 208896, 0, 0, 0, 0, 323, 324, 325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1194, 1196, 0, 0, 0, 0,
|
|
/* 30793 */ 322, 370, 325, 369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 322, 0, 0, 369, 369, 399, 0, 325, 0,
|
|
/* 30822 */ 0, 0, 0, 0, 0, 0, 0, 0, 233472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324, 0, 0, 0, 322, 452, 465, 465, 465, 465,
|
|
/* 30850 */ 465, 465, 465, 478, 465, 465, 465, 465, 465, 465, 465, 465, 465, 465, 465, 491, 491, 465, 491, 491, 506,
|
|
/* 30871 */ 508, 491, 491, 506, 491, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, 534, 517, 517,
|
|
/* 30892 */ 517, 517, 517, 545, 567, 545, 567, 545, 545, 567, 545, 591, 567, 567, 567, 567, 567, 567, 567, 591, 591,
|
|
/* 30913 */ 591, 545, 591, 591, 591, 591, 591, 567, 567, 545, 567, 591, 567, 591, 1, 12290, 3, 78112, 659, 0, 0, 0, 0,
|
|
/* 30936 */ 0, 0, 0, 0, 0, 0, 670, 671, 0, 0, 0, 0, 0, 439, 0, 0, 0, 473, 473, 473, 473, 473, 473, 473, 473, 473, 473,
|
|
/* 30963 */ 473, 473, 473, 473, 473, 473, 557, 580, 557, 580, 557, 557, 580, 557, 604, 0, 0, 707, 708, 0, 0, 0, 0, 0,
|
|
/* 30987 */ 714, 0, 0, 0, 718, 0, 720, 0, 769, 770, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1209, 0, 0, 787, 0, 789, 0,
|
|
/* 31017 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1224, 0, 0, 0, 801, 0, 806, 0, 809, 0, 0, 0, 0, 806, 809, 0, 0, 0,
|
|
/* 31047 */ 809, 0, 707, 0, 0, 826, 0, 0, 0, 0, 0, 826, 826, 829, 809, 806, 0, 0, 0, 0, 0, 0, 0, 789, 0, 801, 0, 818,
|
|
/* 31075 */ 0, 0, 0, 0, 0, 2745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 811, 540, 540, 854, 540, 540, 0, 0, 0, 789, 0, 0, 0, 0,
|
|
/* 31105 */ 0, 838, 0, 0, 0, 0, 0, 0, 0, 2142, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2819, 540, 540, 540,
|
|
/* 31129 */ 540, 540, 0, 0, 0, 787, 0, 0, 0, 838, 818, 838, 0, 540, 540, 852, 540, 858, 540, 540, 871, 540, 881, 540,
|
|
/* 31153 */ 886, 540, 540, 893, 896, 901, 540, 909, 540, 540, 540, 540, 540, 3215, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 31174 */ 540, 540, 540, 895, 540, 540, 540, 540, 540, 561, 561, 561, 922, 561, 928, 561, 561, 941, 561, 561, 952,
|
|
/* 31195 */ 561, 957, 561, 561, 0, 2648, 0, 0, 0, 0, 585, 585, 585, 585, 585, 2653, 585, 585, 0, 0, 2959, 0, 0, 0, 0,
|
|
/* 31220 */ 0, 0, 0, 0, 0, 2965, 0, 965, 968, 973, 561, 981, 561, 561, 0, 585, 585, 585, 995, 585, 1001, 585, 585, 0,
|
|
/* 31244 */ 2958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131072, 131072, 0, 0, 1014, 585, 585, 1025, 585, 1030, 585, 585,
|
|
/* 31269 */ 1038, 1041, 1046, 585, 1054, 585, 585, 968, 0, 0, 0, 540, 585, 585, 561, 852, 540, 1066, 901, 540, 922,
|
|
/* 31290 */ 561, 1071, 973, 0, 0, 0, 1110, 0, 0, 0, 0, 0, 0, 0, 1117, 0, 0, 0, 0, 0, 0, 775, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 31320 */ 0, 1205, 0, 0, 0, 0, 0, 0, 0, 1137, 1138, 0, 0, 0, 0, 1142, 0, 0, 0, 362, 362, 0, 0, 0, 0, 0, 664, 0, 0,
|
|
/* 31349 */ 0, 0, 0, 0, 0, 0, 0, 0, 1206, 0, 0, 0, 0, 0, 0, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 784, 0, 0,
|
|
/* 31382 */ 0, 1182, 741, 0, 0, 0, 1134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245760, 0, 0, 0, 0, 0, 0, 1303, 540, 540, 540,
|
|
/* 31409 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1318, 540, 540, 540, 540, 2173, 540, 540, 540, 540, 540,
|
|
/* 31430 */ 540, 540, 540, 540, 540, 540, 540, 2558, 540, 540, 540, 1360, 914, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 31451 */ 561, 1372, 561, 561, 561, 561, 561, 1850, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1902, 1903,
|
|
/* 31471 */ 561, 561, 561, 561, 561, 561, 1387, 561, 561, 561, 1392, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 31491 */ 1432, 561, 561, 561, 561, 561, 1439, 561, 561, 561, 1421, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 31511 */ 561, 1437, 561, 0, 585, 585, 585, 1049, 585, 78112, 1079, 0, 0, 0, 0, 0, 0, 0, 836, 0, 0, 0, 0, 0, 0, 811,
|
|
/* 31537 */ 0, 585, 585, 585, 585, 1463, 585, 585, 585, 585, 585, 585, 1478, 585, 585, 585, 1483, 0, 0, 1608, 1609,
|
|
/* 31558 */ 1610, 0, 1612, 1613, 0, 0, 0, 0, 1618, 0, 0, 0, 0, 0, 679, 751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 31588 */ 0, 2144, 0, 0, 1640, 0, 0, 1643, 0, 1645, 0, 0, 0, 0, 0, 1651, 1652, 0, 0, 0, 0, 785, 0, 0, 0, 0, 0, 0,
|
|
/* 31616 */ 540, 846, 540, 540, 540, 540, 540, 540, 3216, 540, 540, 540, 540, 540, 3221, 540, 3223, 540, 0, 1668, 0,
|
|
/* 31637 */ 0, 1670, 0, 0, 0, 0, 1672, 1673, 0, 0, 0, 0, 0, 0, 0, 69632, 73728, 0, 0, 0, 347, 345, 65536, 0, 1692, 0,
|
|
/* 31663 */ 0, 0, 0, 0, 1698, 1699, 0, 1701, 1702, 1703, 0, 0, 0, 0, 0, 0, 810, 811, 0, 0, 0, 0, 811, 0, 0, 0, 1719,
|
|
/* 31690 */ 0, 0, 0, 1723, 1724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 0, 0, 0, 0, 0, 0, 0, 1715, 0, 0, 0, 1735, 1585,
|
|
/* 31719 */ 1585, 1737, 540, 1739, 540, 1740, 540, 1742, 540, 540, 540, 1746, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 31739 */ 540, 1759, 540, 540, 540, 540, 540, 3318, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2557,
|
|
/* 31759 */ 540, 540, 540, 540, 540, 540, 1763, 540, 540, 540, 540, 1767, 540, 1769, 540, 540, 540, 540, 540, 540,
|
|
/* 31779 */ 540, 540, 2570, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3041, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 31800 */ 1777, 1778, 1780, 540, 540, 540, 540, 540, 540, 1787, 1788, 540, 540, 1791, 1792, 540, 540, 540, 540, 540,
|
|
/* 31820 */ 540, 540, 1800, 540, 540, 540, 1804, 540, 540, 540, 540, 540, 540, 2829, 540, 540, 540, 540, 540, 540,
|
|
/* 31840 */ 540, 540, 540, 540, 1770, 540, 540, 540, 540, 540, 0, 1828, 561, 1830, 561, 561, 1832, 561, 1834, 561,
|
|
/* 31860 */ 561, 561, 1838, 561, 561, 561, 561, 585, 585, 585, 585, 0, 0, 2725, 0, 0, 0, 0, 0, 0, 0, 69632, 73728, 0,
|
|
/* 31884 */ 135168, 135168, 0, 0, 65536, 135168, 1859, 561, 1861, 561, 561, 561, 561, 561, 561, 561, 561, 1869, 1870,
|
|
/* 31903 */ 1872, 561, 561, 0, 2648, 0, 0, 0, 0, 585, 585, 585, 585, 2652, 585, 585, 585, 585, 585, 585, 2390, 585,
|
|
/* 31925 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 3124, 585, 585, 585, 585, 585, 561, 561, 561, 1894, 561, 561,
|
|
/* 31946 */ 561, 1898, 561, 561, 561, 561, 561, 561, 561, 1906, 585, 1926, 585, 1928, 585, 585, 585, 1932, 585, 585,
|
|
/* 31966 */ 585, 585, 585, 585, 585, 585, 561, 540, 585, 561, 540, 540, 561, 561, 585, 585, 0, 0, 0, 0, 585, 1945,
|
|
/* 31988 */ 585, 585, 585, 585, 1949, 585, 585, 585, 585, 1953, 585, 1955, 585, 585, 561, 3146, 3147, 3148, 540, 540,
|
|
/* 32008 */ 561, 561, 585, 585, 0, 0, 0, 0, 0, 0, 2488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2096, 0, 0, 0, 0, 0, 0, 1974, 1975,
|
|
/* 32037 */ 1976, 585, 585, 1979, 1980, 585, 585, 585, 585, 585, 585, 585, 1988, 585, 561, 0, 1288, 585, 1468, 1377,
|
|
/* 32057 */ 540, 540, 540, 1549, 540, 561, 561, 561, 1553, 585, 585, 1992, 585, 585, 585, 585, 585, 585, 585, 2000,
|
|
/* 32077 */ 585, 585, 585, 585, 585, 561, 561, 540, 561, 585, 561, 585, 1, 12290, 3, 78112, 585, 585, 585, 585, 2011,
|
|
/* 32098 */ 561, 540, 2014, 585, 561, 1792, 540, 2019, 540, 1886, 561, 0, 585, 585, 1040, 585, 585, 78112, 1079, 0, 0,
|
|
/* 32119 */ 0, 0, 0, 0, 0, 0, 1134592, 0, 0, 1134592, 0, 0, 0, 0, 2023, 561, 1980, 585, 2027, 585, 0, 2029, 0, 0, 0,
|
|
/* 32144 */ 0, 0, 2031, 0, 0, 0, 0, 0, 2761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 661, 0, 0, 0, 0, 0, 0, 2089, 0, 0, 0, 0,
|
|
/* 32175 */ 2093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2119, 0, 2121, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 32206 */ 2129, 0, 0, 0, 0, 786, 0, 805, 0, 0, 0, 0, 540, 849, 540, 540, 540, 540, 540, 2216, 540, 540, 540, 540,
|
|
/* 32230 */ 540, 540, 2221, 540, 540, 540, 540, 540, 540, 3633, 561, 561, 561, 561, 561, 561, 3639, 585, 585, 0, 0, 0,
|
|
/* 32252 */ 2134, 0, 0, 0, 0, 2139, 0, 0, 0, 0, 0, 0, 0, 0, 2990080, 2179072, 2179072, 2502656, 2179072, 2179072,
|
|
/* 32272 */ 2179072, 2179072, 540, 2187, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1337,
|
|
/* 32291 */ 540, 2211, 2212, 540, 540, 540, 540, 540, 540, 2219, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2582,
|
|
/* 32311 */ 540, 540, 540, 0, 0, 0, 561, 561, 2258, 561, 2260, 561, 561, 561, 561, 561, 561, 2268, 561, 2270, 561,
|
|
/* 32332 */ 561, 561, 561, 1426, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3343, 561, 561, 561, 561,
|
|
/* 32352 */ 3344, 3345, 561, 561, 2343, 585, 2345, 585, 585, 585, 585, 585, 585, 2353, 585, 2355, 585, 585, 585, 585,
|
|
/* 32372 */ 561, 0, 0, 0, 3648, 0, 540, 540, 540, 540, 3652, 540, 585, 585, 585, 585, 2389, 585, 585, 585, 585, 585,
|
|
/* 32394 */ 585, 585, 585, 585, 585, 585, 585, 2705, 585, 585, 585, 585, 585, 585, 585, 2402, 585, 585, 2405, 2406,
|
|
/* 32414 */ 585, 585, 561, 2177, 585, 2345, 2260, 540, 2414, 540, 540, 561, 2418, 561, 561, 585, 2422, 585, 585, 2029,
|
|
/* 32434 */ 0, 2031, 0, 0, 0, 0, 795, 663, 844, 0, 0, 0, 0, 540, 848, 540, 540, 540, 540, 540, 1283, 540, 540, 540,
|
|
/* 32458 */ 540, 540, 540, 1298, 540, 540, 540, 540, 540, 540, 2580, 540, 540, 540, 540, 540, 540, 0, 2584, 0, 0, 0,
|
|
/* 32480 */ 2450, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1239, 0, 0, 0, 2459, 0, 0, 0, 0, 0, 2464, 0, 2466, 2467, 0,
|
|
/* 32509 */ 0, 0, 0, 0, 0, 0, 69632, 73728, 0, 0, 0, 371, 0, 65536, 0, 0, 2498, 0, 0, 0, 0, 0, 0, 0, 2505, 0, 0, 0, 0,
|
|
/* 32538 */ 0, 0, 0, 2479, 0, 0, 0, 2481, 0, 0, 0, 0, 2561, 540, 540, 540, 2566, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 32562 */ 2573, 540, 540, 540, 540, 540, 540, 2838, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1296, 540,
|
|
/* 32582 */ 540, 540, 540, 540, 0, 0, 0, 561, 561, 561, 561, 561, 561, 561, 2591, 561, 561, 561, 561, 561, 561, 2640,
|
|
/* 32604 */ 561, 561, 561, 2643, 561, 561, 561, 561, 561, 561, 2886, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 32624 */ 1867, 561, 561, 561, 561, 561, 561, 2621, 561, 561, 561, 561, 2625, 561, 561, 561, 2630, 561, 561, 561,
|
|
/* 32644 */ 561, 561, 561, 585, 585, 585, 585, 585, 585, 0, 3661, 0, 0, 561, 2637, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 32666 */ 2642, 561, 561, 561, 561, 561, 561, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3427, 585, 2669, 585,
|
|
/* 32686 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3267, 2797, 2798, 0, 0, 0, 0, 0, 0,
|
|
/* 32709 */ 0, 0, 0, 540, 540, 540, 540, 540, 1741, 540, 0, 0, 2982, 2983, 0, 2984, 0, 2986, 0, 0, 0, 0, 2988, 0, 0,
|
|
/* 32734 */ 0, 0, 0, 680, 681, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2047, 0, 0, 0, 0, 0, 0, 0, 0, 3007, 0, 0, 2988, 0, 0, 3013,
|
|
/* 32764 */ 3014, 0, 3016, 0, 0, 3019, 0, 0, 0, 0, 800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 800, 0, 0, 0, 0, 3022,
|
|
/* 32793 */ 540, 540, 540, 540, 540, 540, 3029, 540, 540, 540, 540, 540, 3033, 3062, 540, 561, 561, 561, 561, 561,
|
|
/* 32813 */ 561, 3069, 561, 561, 561, 561, 561, 3073, 561, 0, 585, 585, 1042, 585, 585, 288, 1079, 0, 0, 1082, 1086,
|
|
/* 32834 */ 0, 0, 1090, 3103, 561, 585, 585, 585, 585, 585, 585, 3110, 585, 585, 585, 585, 585, 3114, 585, 561, 0,
|
|
/* 32855 */ 1543, 585, 1545, 1546, 540, 540, 1548, 540, 540, 561, 561, 1552, 561, 0, 585, 585, 1044, 585, 585, 78112,
|
|
/* 32875 */ 1079, 0, 0, 0, 0, 0, 0, 0, 794, 0, 0, 0, 0, 0, 0, 0, 798, 3144, 585, 561, 540, 585, 561, 540, 3150, 561,
|
|
/* 32901 */ 3152, 585, 3154, 0, 0, 0, 0, 0, 0, 825, 0, 819, 0, 664, 0, 0, 0, 0, 0, 0, 0, 69632, 73728, 221184, 0, 0,
|
|
/* 32927 */ 0, 0, 65536, 0, 0, 0, 3160, 0, 0, 3163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 396, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 32957 */ 3170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540, 540, 2806, 540, 540, 540, 3202, 540, 540, 540, 540, 540, 540,
|
|
/* 32982 */ 540, 3207, 540, 540, 540, 540, 540, 540, 540, 540, 3040, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 33002 */ 3322, 540, 540, 540, 540, 540, 540, 561, 3234, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 33023 */ 561, 561, 1889, 561, 3245, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 585, 585,
|
|
/* 33044 */ 585, 585, 585, 585, 585, 3257, 585, 585, 585, 585, 585, 585, 585, 3262, 585, 585, 585, 585, 585, 561,
|
|
/* 33064 */ 2013, 585, 2015, 2016, 540, 2018, 540, 540, 561, 2022, 561, 561, 561, 3349, 561, 561, 585, 585, 585, 585,
|
|
/* 33084 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2667, 0, 3378, 3379, 0, 3176, 0, 3383, 0, 0, 0, 0,
|
|
/* 33107 */ 0, 0, 0, 0, 0, 384, 0, 0, 0, 0, 0, 384, 0, 0, 0, 3441, 3176, 0, 0, 0, 0, 0, 0, 0, 0, 540, 540, 540, 540,
|
|
/* 33136 */ 540, 2167, 540, 540, 0, 0, 0, 0, 3503, 0, 0, 0, 0, 540, 540, 540, 540, 540, 540, 3512, 0, 0, 3557, 3558,
|
|
/* 33160 */ 3559, 540, 540, 540, 3562, 540, 3564, 540, 540, 540, 540, 3569, 3570, 3571, 561, 561, 561, 3574, 561,
|
|
/* 33179 */ 3576, 561, 561, 561, 561, 3581, 3582, 3583, 585, 561, 1203, 540, 585, 585, 561, 540, 540, 540, 540, 540,
|
|
/* 33199 */ 561, 561, 561, 561, 585, 585, 585, 585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 585, 585, 3586, 585, 3588, 585, 585,
|
|
/* 33224 */ 585, 585, 3593, 0, 0, 0, 0, 0, 0, 0, 2747, 2748, 2749, 0, 0, 0, 0, 0, 0, 0, 2763, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 33253 */ 0, 254413, 254413, 254413, 254413, 254413, 254413, 254413, 254413, 1, 12290, 0, 0, 540, 3628, 540, 540,
|
|
/* 33270 */ 540, 3632, 561, 561, 3634, 561, 561, 561, 3638, 585, 585, 3640, 585, 585, 585, 3644, 561, 0, 0, 0, 0, 0,
|
|
/* 33292 */ 540, 540, 540, 540, 540, 540, 540, 3563, 540, 3565, 540, 540, 540, 561, 0, 0, 0, 326, 327, 0, 0, 0, 0, 0,
|
|
/* 33316 */ 0, 0, 0, 0, 0, 0, 674, 0, 0, 0, 0, 0, 366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1120, 0, 0, 0, 0,
|
|
/* 33348 */ 366, 0, 0, 0, 374, 376, 0, 0, 0, 0, 0, 0, 0, 344, 0, 402, 0, 0, 0, 0, 0, 402, 0, 0, 409, 0, 0, 0, 409,
|
|
/* 33377 */ 69632, 73728, 0, 366, 366, 0, 421, 65536, 366, 0, 0, 366, 421, 498, 502, 498, 498, 507, 498, 498, 498,
|
|
/* 33398 */ 507, 498, 421, 421, 327, 421, 0, 0, 421, 0, 421, 0, 0, 0, 0, 0, 0, 0, 372, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 33427 */ 0, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 546, 568, 546, 568,
|
|
/* 33448 */ 546, 546, 568, 546, 592, 568, 568, 568, 568, 568, 568, 568, 592, 592, 592, 546, 592, 592, 592, 592, 592,
|
|
/* 33469 */ 568, 568, 546, 568, 592, 568, 592, 1, 12290, 3, 78112, 0, 0, 677, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 33496 */ 1248, 0, 0, 540, 540, 540, 875, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2183,
|
|
/* 33517 */ 540, 540, 561, 561, 915, 561, 561, 561, 561, 561, 561, 945, 561, 561, 561, 561, 561, 561, 585, 3421, 585,
|
|
/* 33538 */ 585, 3423, 585, 585, 585, 585, 585, 585, 1018, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 33559 */ 585, 561, 0, 0, 0, 0, 0, 0, 540, 0, 0, 0, 540, 988, 585, 561, 540, 540, 540, 540, 540, 561, 561, 561, 561,
|
|
/* 33584 */ 561, 3068, 561, 561, 561, 561, 561, 561, 561, 561, 932, 561, 561, 946, 561, 561, 561, 561, 561, 561, 934,
|
|
/* 33605 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 3240, 561, 561, 561, 561, 561, 561, 0, 0, 1109, 0, 0, 0, 0,
|
|
/* 33628 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 1604, 0, 0, 0, 0, 1229, 0, 1109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 686, 0, 0, 0,
|
|
/* 33660 */ 0, 540, 540, 540, 1281, 540, 540, 540, 540, 540, 1293, 540, 540, 540, 540, 540, 540, 540, 540, 3054, 3056,
|
|
/* 33681 */ 540, 540, 540, 3059, 540, 3061, 1360, 914, 561, 561, 561, 561, 561, 561, 561, 1370, 561, 561, 561, 561,
|
|
/* 33701 */ 561, 1382, 585, 585, 1461, 585, 585, 585, 585, 585, 1473, 585, 585, 585, 585, 585, 585, 585, 585, 2914,
|
|
/* 33721 */ 585, 585, 585, 585, 585, 585, 585, 585, 3122, 585, 585, 585, 585, 585, 585, 585, 585, 3136, 3138, 585,
|
|
/* 33741 */ 585, 585, 3141, 585, 3143, 0, 1720, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1134, 0, 1990, 585, 585,
|
|
/* 33767 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1972, 585, 585, 585, 2373, 585, 585, 585,
|
|
/* 33788 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2370, 585, 585, 585, 585, 2698, 585, 585, 585, 585, 585,
|
|
/* 33809 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 2383, 585, 0, 0, 0, 3161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 33836 */ 1688, 0, 0, 0, 561, 561, 3235, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 0, 2325,
|
|
/* 33858 */ 0, 3663, 540, 540, 540, 3665, 561, 561, 561, 3667, 585, 585, 585, 0, 0, 540, 540, 540, 2526, 540, 540,
|
|
/* 33879 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3058, 540, 540, 540, 422, 422, 0, 422, 431, 0, 422, 0,
|
|
/* 33901 */ 422, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 466, 492,
|
|
/* 33922 */ 492, 466, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, 492,
|
|
/* 33943 */ 492, 492, 492, 492, 547, 569, 547, 569, 547, 547, 569, 547, 593, 569, 569, 569, 569, 569, 569, 569, 593,
|
|
/* 33964 */ 593, 593, 547, 593, 593, 593, 593, 593, 569, 569, 547, 569, 593, 569, 593, 1, 12290, 3, 78112, 0, 0, 0, 0,
|
|
/* 33987 */ 2159, 0, 0, 0, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3032, 540, 540, 540, 540, 540, 2202, 540,
|
|
/* 34009 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2208, 540, 540, 2413, 540, 540, 540, 2417,
|
|
/* 34029 */ 561, 561, 561, 2421, 585, 585, 585, 0, 0, 0, 0, 3293, 0, 0, 0, 0, 0, 3296, 0, 0, 0, 2458, 0, 0, 0, 0, 0,
|
|
/* 34056 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1250, 2967, 0, 0, 0, 2971, 0, 0, 0, 0, 0, 2977, 0, 0, 0, 0, 0, 0, 0, 69632,
|
|
/* 34086 */ 73728, 0, 0, 0, 418, 0, 65536, 0, 0, 2992, 0, 0, 2995, 0, 0, 0, 0, 0, 3000, 0, 0, 0, 0, 0, 0, 0, 69632,
|
|
/* 34113 */ 73728, 0, 367, 367, 0, 0, 65536, 367, 0, 0, 0, 3023, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 34135 */ 540, 540, 540, 2222, 540, 540, 540, 540, 3049, 540, 540, 540, 540, 540, 540, 540, 540, 3057, 540, 540,
|
|
/* 34155 */ 3060, 540, 540, 540, 540, 2189, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2583, 0, 0, 0,
|
|
/* 34177 */ 540, 540, 3063, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 0, 2326, 0, 561, 561,
|
|
/* 34198 */ 3090, 561, 561, 561, 561, 561, 561, 561, 561, 3098, 561, 561, 3101, 561, 0, 585, 585, 1045, 585, 585,
|
|
/* 34218 */ 78112, 1079, 0, 0, 0, 0, 0, 0, 0, 1102, 1101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540, 1275, 540, 561,
|
|
/* 34245 */ 561, 3104, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2666, 585, 585, 585,
|
|
/* 34265 */ 3131, 585, 585, 585, 585, 585, 585, 585, 585, 3139, 585, 585, 3142, 585, 585, 585, 585, 585, 1930, 585,
|
|
/* 34285 */ 585, 585, 585, 585, 585, 585, 585, 1941, 585, 585, 585, 585, 585, 1948, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 34306 */ 585, 585, 585, 585, 3263, 585, 585, 585, 585, 0, 0, 0, 0, 3179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 732, 0,
|
|
/* 34333 */ 0, 0, 0, 0, 0, 3192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540, 540, 540, 540, 2808, 3201, 540, 540, 540, 540,
|
|
/* 34360 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1359, 540, 3213, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 34381 */ 3218, 540, 3220, 540, 540, 540, 540, 540, 540, 561, 3227, 561, 561, 561, 3230, 561, 561, 561, 561, 561,
|
|
/* 34401 */ 982, 561, 0, 585, 585, 585, 585, 999, 585, 585, 585, 561, 561, 3246, 561, 3248, 561, 561, 561, 561, 561,
|
|
/* 34422 */ 561, 561, 561, 561, 561, 585, 585, 585, 585, 585, 3537, 585, 585, 585, 585, 3256, 585, 585, 585, 585, 585,
|
|
/* 34443 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3278, 585, 585, 3268, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 34464 */ 585, 3274, 585, 3276, 585, 585, 561, 3370, 540, 3371, 561, 3372, 585, 0, 0, 0, 0, 0, 0, 0, 785, 0, 0, 0,
|
|
/* 34488 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1179, 540, 540, 3328, 540, 540, 540, 540, 540, 540, 540, 561, 561,
|
|
/* 34513 */ 561, 561, 561, 561, 561, 561, 561, 3233, 561, 561, 561, 561, 3340, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 34534 */ 561, 3346, 561, 0, 994, 1075, 1039, 585, 585, 78112, 1079, 0, 0, 1081, 1085, 0, 0, 1089, 3358, 585, 585,
|
|
/* 34555 */ 585, 585, 585, 585, 585, 585, 585, 3364, 585, 585, 585, 585, 585, 585, 585, 1981, 1982, 585, 585, 585,
|
|
/* 34575 */ 585, 585, 585, 585, 561, 540, 585, 585, 561, 2951, 540, 2953, 561, 561, 561, 3654, 3655, 561, 561, 585,
|
|
/* 34595 */ 585, 3658, 3659, 585, 585, 0, 0, 0, 0, 0, 0, 1126, 0, 0, 0, 1130, 1131, 0, 0, 0, 0, 0, 0, 1141, 0, 1143,
|
|
/* 34621 */ 0, 0, 362, 362, 0, 0, 0, 691, 0, 0, 0, 0, 696, 0, 0, 0, 362, 362, 362, 0, 0, 0, 0, 0, 0, 1154, 0, 0, 0, 0,
|
|
/* 34651 */ 0, 1160, 0, 1162, 0, 758, 0, 0, 0, 0, 0, 0, 758, 0, 0, 0, 0, 0, 758, 758, 0, 0, 0, 0, 803, 0, 0, 0, 0, 0,
|
|
/* 34681 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 856, 585,
|
|
/* 34714 */ 999, 926, 540, 540, 540, 540, 910, 561, 561, 561, 561, 561, 1880, 1881, 1882, 561, 561, 1885, 1886, 561,
|
|
/* 34734 */ 561, 561, 561, 561, 1896, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2603, 561, 2605, 561, 561,
|
|
/* 34754 */ 561, 982, 0, 585, 585, 585, 585, 1055, 78112, 1079, 0, 0, 0, 0, 0, 0, 0, 375, 0, 378, 0, 0, 0, 378, 0, 0,
|
|
/* 34780 */ 0, 0, 1709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1619, 0, 0, 585, 585, 585, 2010, 585, 561, 540, 585,
|
|
/* 34807 */ 585, 561, 540, 540, 540, 540, 561, 561, 561, 3066, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2600,
|
|
/* 34828 */ 561, 561, 561, 561, 561, 561, 561, 561, 0, 0, 987, 585, 585, 585, 585, 585, 0, 2039, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 34853 */ 0, 0, 0, 0, 0, 0, 0, 1178, 0, 540, 540, 540, 2172, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 34877 */ 540, 540, 2238, 2584, 0, 0, 0, 0, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2255, 0, 0,
|
|
/* 34900 */ 0, 0, 2461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 747, 0, 0, 0, 0, 3288, 585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 34932 */ 0, 0, 0, 1184, 1184, 561, 561, 561, 561, 3350, 561, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 34954 */ 2939, 585, 585, 585, 585, 3368, 585, 561, 540, 540, 561, 561, 585, 585, 0, 0, 0, 0, 0, 0, 0, 394, 0, 0, 0,
|
|
/* 34979 */ 0, 0, 394, 0, 0, 467, 467, 485, 493, 493, 485, 493, 493, 493, 493, 493, 493, 493, 493, 518, 526, 526, 526,
|
|
/* 35002 */ 526, 526, 526, 526, 526, 526, 526, 526, 526, 526, 535, 526, 526, 526, 526, 526, 548, 570, 548, 570, 548,
|
|
/* 35023 */ 548, 570, 548, 594, 570, 570, 570, 570, 570, 570, 570, 594, 594, 594, 548, 594, 594, 594, 594, 594, 570,
|
|
/* 35044 */ 570, 548, 570, 594, 570, 594, 1, 12290, 3, 78112, 767, 0, 0, 771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 35070 */ 1704, 0, 0, 0, 821, 0, 0, 0, 798, 0, 0, 821, 0, 0, 0, 0, 0, 821, 821, 0, 0, 0, 0, 805, 0, 0, 786, 0, 0, 0,
|
|
/* 35100 */ 0, 805, 0, 0, 0, 0, 0, 0, 0, 805, 0, 0, 0, 0, 0, 798, 0, 0, 0, 0, 0, 0, 839, 794, 0, 0, 839, 0, 0, 0, 0,
|
|
/* 35131 */ 808, 0, 0, 692, 0, 0, 672, 0, 692, 0, 813, 675, 676, 0, 0, 0, 0, 0, 682, 0, 0, 0, 0, 0, 0, 0, 0, 340, 0,
|
|
/* 35160 */ 0, 0, 0, 0, 0, 0, 540, 867, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 911, 540, 540,
|
|
/* 35183 */ 540, 540, 2215, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1756, 540, 540, 540, 540, 983, 0,
|
|
/* 35204 */ 585, 585, 585, 1077, 1056, 78112, 1079, 0, 0, 0, 0, 0, 0, 0, 412, 412, 0, 0, 0, 0, 0, 412, 0, 1180, 0, 0,
|
|
/* 35230 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1621, 0, 0, 1241, 0, 0, 0, 0, 0, 0, 0, 0, 1246, 0, 0, 0, 0, 0, 0,
|
|
/* 35262 */ 1170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 816, 0, 0, 0, 0, 0, 0, 540, 1305, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 35288 */ 1313, 540, 540, 540, 540, 540, 540, 540, 540, 3332, 540, 561, 561, 561, 561, 561, 561, 935, 561, 561, 561,
|
|
/* 35309 */ 561, 561, 561, 561, 561, 561, 3094, 561, 3096, 561, 561, 561, 561, 561, 561, 1340, 540, 540, 1344, 540,
|
|
/* 35329 */ 540, 540, 540, 540, 1350, 540, 540, 540, 1357, 540, 540, 540, 540, 540, 3458, 540, 3460, 3461, 540, 3463,
|
|
/* 35349 */ 540, 561, 561, 561, 561, 561, 2262, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1399, 561, 561, 561,
|
|
/* 35370 */ 561, 561, 1360, 914, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1375, 561, 561, 561, 561,
|
|
/* 35390 */ 1848, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2868, 561, 561, 561, 561, 561, 1441, 561,
|
|
/* 35410 */ 561, 561, 1448, 561, 561, 26027, 1360, 987, 585, 585, 585, 585, 585, 585, 585, 1998, 585, 585, 585, 585,
|
|
/* 35430 */ 585, 2003, 585, 585, 1485, 585, 585, 585, 585, 585, 585, 585, 1493, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 35450 */ 585, 3261, 585, 585, 585, 585, 585, 585, 585, 585, 3272, 585, 585, 585, 585, 585, 585, 585, 585, 3283,
|
|
/* 35470 */ 540, 585, 561, 540, 540, 561, 561, 585, 1522, 585, 585, 1526, 585, 585, 585, 585, 585, 1532, 585, 585,
|
|
/* 35490 */ 585, 1539, 585, 585, 585, 585, 585, 1996, 1997, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1531, 585,
|
|
/* 35510 */ 585, 585, 585, 585, 585, 0, 0, 0, 1595, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1716, 0, 0, 0, 0, 0, 1656, 0,
|
|
/* 35539 */ 0, 0, 0, 0, 0, 0, 0, 0, 1665, 0, 0, 0, 0, 0, 710, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 662, 0, 0, 0, 0, 0, 540,
|
|
/* 35571 */ 540, 540, 540, 540, 1708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1653, 0, 0, 0, 1722, 0, 0, 0, 0, 0,
|
|
/* 35601 */ 0, 0, 0, 0, 0, 0, 0, 1729, 0, 0, 0, 0, 0, 0, 1706, 0, 0, 0, 0, 0, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 35629 */ 540, 540, 3398, 540, 3400, 540, 561, 561, 1893, 561, 561, 561, 561, 561, 561, 1901, 561, 561, 561, 561,
|
|
/* 35649 */ 561, 561, 1410, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1428, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 35670 */ 561, 1917, 26027, 0, 1922, 585, 1924, 585, 561, 561, 561, 1910, 1912, 561, 561, 561, 561, 561, 26027, 0,
|
|
/* 35690 */ 585, 585, 585, 585, 585, 585, 2335, 585, 585, 585, 585, 585, 585, 585, 585, 561, 0, 3622, 0, 3624, 0, 0,
|
|
/* 35712 */ 540, 585, 585, 585, 585, 1978, 585, 585, 585, 585, 585, 585, 585, 585, 1987, 585, 585, 585, 585, 585, 585,
|
|
/* 35733 */ 2934, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2407, 561, 540, 585, 585, 561, 585, 585, 585, 585,
|
|
/* 35754 */ 1995, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2004, 2006, 0, 0, 0, 2078, 0, 0, 0, 2081, 0, 0, 0, 0,
|
|
/* 35778 */ 0, 2087, 0, 0, 0, 0, 0, 2774, 0, 0, 0, 2778, 0, 2780, 0, 0, 0, 0, 0, 0, 2746, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 35808 */ 362, 362, 362, 0, 0, 0, 0, 0, 2103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1265, 0, 0, 0, 0, 561, 561,
|
|
/* 35838 */ 561, 561, 561, 2249, 561, 561, 561, 561, 561, 561, 561, 0, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 35859 */ 585, 585, 585, 585, 585, 585, 1519, 585, 585, 2346, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 35880 */ 585, 585, 585, 2919, 585, 2448, 0, 0, 0, 0, 0, 0, 0, 0, 2453, 0, 0, 2456, 0, 0, 0, 0, 0, 726, 0, 0, 0, 0,
|
|
/* 35908 */ 0, 0, 0, 0, 0, 736, 0, 0, 0, 2460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2471, 0, 0, 0, 2485, 2486, 0, 0, 2489,
|
|
/* 35938 */ 0, 0, 2492, 0, 0, 0, 0, 0, 0, 0, 69632, 73728, 0, 417, 417, 0, 0, 65536, 417, 0, 0, 2499, 0, 0, 0, 0, 0,
|
|
/* 35965 */ 0, 0, 0, 0, 0, 0, 2510, 0, 0, 0, 0, 815, 0, 812, 795, 0, 0, 817, 0, 667, 0, 791, 0, 0, 0, 0, 1096, 0, 0,
|
|
/* 35994 */ 1098, 0, 0, 0, 0, 0, 0, 0, 0, 827, 0, 0, 0, 0, 0, 0, 0, 0, 540, 2524, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 36021 */ 540, 540, 540, 540, 540, 540, 1789, 540, 540, 540, 540, 540, 2551, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 36042 */ 540, 540, 540, 540, 540, 2559, 540, 540, 2562, 540, 540, 540, 540, 540, 540, 2569, 540, 540, 540, 540,
|
|
/* 36062 */ 540, 540, 540, 540, 540, 540, 3323, 540, 540, 540, 540, 540, 540, 2576, 540, 540, 540, 2579, 540, 540,
|
|
/* 36082 */ 540, 540, 540, 540, 540, 0, 0, 0, 0, 0, 755, 0, 0, 0, 0, 0, 0, 0, 0, 765, 0, 0, 0, 0, 561, 2586, 561, 561,
|
|
/* 36110 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 3254, 561, 561, 561, 585, 585, 585, 585, 585, 2672, 585, 585,
|
|
/* 36131 */ 585, 585, 585, 585, 2677, 585, 585, 585, 585, 561, 0, 3646, 0, 0, 0, 540, 540, 540, 540, 540, 540, 2529,
|
|
/* 36153 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2842, 540, 540, 540, 540, 540, 585, 585, 585, 2683, 585,
|
|
/* 36174 */ 585, 585, 585, 585, 585, 2690, 585, 585, 585, 585, 585, 585, 585, 2351, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 36195 */ 585, 1508, 585, 585, 585, 585, 585, 585, 585, 585, 2697, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 36215 */ 2704, 585, 585, 585, 2707, 0, 0, 0, 0, 2735, 0, 0, 0, 0, 0, 0, 0, 2739, 0, 0, 0, 0, 0, 799, 0, 0, 0, 0, 0,
|
|
/* 36244 */ 540, 540, 540, 540, 540, 2528, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2234, 540, 540, 540, 540,
|
|
/* 36265 */ 0, 540, 540, 540, 2811, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2821, 540, 540,
|
|
/* 36286 */ 540, 540, 540, 2836, 540, 540, 540, 2839, 540, 2841, 540, 540, 540, 540, 540, 540, 540, 540, 3520, 561,
|
|
/* 36306 */ 561, 561, 561, 561, 561, 561, 1450, 26027, 1360, 987, 585, 585, 585, 585, 585, 2845, 540, 540, 540, 540,
|
|
/* 36326 */ 540, 540, 0, 0, 561, 561, 2853, 561, 561, 561, 561, 561, 1913, 561, 561, 561, 561, 26027, 0, 585, 585,
|
|
/* 36347 */ 585, 585, 2333, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1050, 585, 585, 585, 585, 561, 561,
|
|
/* 36367 */ 2858, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2284, 561, 561, 561, 2874,
|
|
/* 36387 */ 2875, 561, 561, 561, 561, 2878, 561, 561, 561, 561, 561, 561, 561, 0, 585, 585, 585, 585, 585, 585, 1005,
|
|
/* 36408 */ 585, 561, 561, 561, 2884, 561, 561, 561, 2887, 561, 2889, 561, 561, 561, 561, 561, 561, 1449, 561, 26027,
|
|
/* 36428 */ 1360, 987, 1453, 585, 585, 585, 585, 2893, 561, 561, 561, 561, 561, 561, 0, 0, 585, 585, 2901, 585, 585,
|
|
/* 36449 */ 585, 585, 585, 585, 585, 3121, 585, 585, 585, 585, 585, 585, 585, 585, 561, 540, 585, 561, 540, 3285, 561,
|
|
/* 36470 */ 3287, 585, 2906, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3367, 585,
|
|
/* 36490 */ 585, 2922, 2923, 585, 585, 585, 585, 2926, 585, 585, 585, 585, 585, 585, 585, 585, 3592, 561, 0, 0, 0, 0,
|
|
/* 36512 */ 3595, 0, 585, 585, 585, 2932, 585, 585, 585, 2935, 585, 2937, 585, 585, 585, 585, 585, 585, 585, 1933,
|
|
/* 36532 */ 585, 585, 585, 585, 1939, 585, 585, 585, 2941, 585, 585, 585, 585, 585, 585, 561, 540, 585, 585, 561, 540,
|
|
/* 36553 */ 540, 561, 561, 585, 585, 0, 0, 0, 0, 0, 0, 0, 0, 2963, 0, 0, 0, 0, 0, 585, 585, 2957, 0, 0, 2960, 2961, 0,
|
|
/* 36580 */ 0, 0, 0, 0, 0, 0, 0, 0, 662, 0, 662, 0, 0, 0, 0, 0, 0, 0, 0, 3009, 0, 0, 3012, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 36612 */ 2200253, 151552, 2200253, 0, 0, 0, 151552, 540, 540, 540, 540, 3037, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 36631 */ 540, 540, 540, 540, 540, 3325, 540, 540, 540, 540, 540, 540, 540, 3051, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 36652 */ 540, 540, 540, 540, 540, 3465, 561, 561, 561, 561, 561, 561, 3077, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 36673 */ 561, 561, 561, 561, 1887, 1888, 561, 561, 561, 561, 561, 561, 3092, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 36693 */ 561, 561, 561, 561, 3480, 585, 585, 585, 585, 561, 561, 585, 585, 585, 585, 3108, 585, 585, 585, 585,
|
|
/* 36713 */ 3112, 585, 585, 585, 585, 585, 585, 585, 3135, 585, 3137, 585, 585, 585, 585, 585, 585, 561, 0, 0, 0, 0,
|
|
/* 36735 */ 0, 3552, 0, 0, 0, 585, 585, 585, 3118, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1512,
|
|
/* 36757 */ 585, 585, 585, 585, 585, 585, 585, 3133, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2917,
|
|
/* 36778 */ 585, 585, 2920, 0, 0, 3168, 3169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2071, 0, 0, 0, 540, 540, 540, 540,
|
|
/* 36805 */ 3329, 540, 540, 540, 540, 540, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3412, 561, 561, 3336, 561,
|
|
/* 36825 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2285, 3347, 561, 561, 561, 561, 561,
|
|
/* 36846 */ 585, 585, 585, 585, 585, 585, 3354, 585, 585, 585, 585, 585, 585, 2404, 585, 585, 585, 585, 561, 2178,
|
|
/* 36866 */ 585, 2346, 2261, 3389, 0, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2534, 0,
|
|
/* 36887 */ 0, 0, 0, 3176, 0, 0, 0, 0, 0, 3447, 3448, 0, 540, 540, 540, 540, 2527, 540, 540, 540, 540, 2531, 540, 540,
|
|
/* 36911 */ 540, 540, 540, 540, 540, 1312, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1784, 540, 540, 540, 540, 540,
|
|
/* 36932 */ 540, 561, 561, 561, 561, 3473, 561, 3475, 3476, 561, 3478, 561, 585, 585, 585, 585, 585, 1079, 0, 0, 0, 0,
|
|
/* 36954 */ 0, 0, 0, 0, 0, 0, 254413, 0, 0, 0, 0, 0, 585, 585, 585, 3488, 585, 3490, 3491, 585, 3493, 585, 3495, 0, 0,
|
|
/* 36979 */ 0, 0, 0, 0, 0, 69632, 73728, 313, 314, 314, 419, 420, 65536, 427, 585, 585, 3617, 585, 3618, 585, 585,
|
|
/* 37000 */ 585, 561, 0, 0, 0, 0, 0, 0, 540, 585, 585, 561, 540, 540, 540, 904, 540, 561, 561, 561, 976, 561, 561,
|
|
/* 37023 */ 585, 585, 3673, 3674, 3675, 3676, 0, 540, 561, 585, 0, 540, 561, 585, 585, 585, 585, 585, 1079, 0, 0,
|
|
/* 37044 */ 1563, 0, 0, 0, 1569, 0, 0, 0, 0, 0, 2789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1591, 0, 0, 0, 0, 0, 571, 571,
|
|
/* 37073 */ 571, 571, 571, 571, 571, 595, 595, 595, 540, 595, 595, 595, 595, 595, 571, 571, 540, 571, 595, 571, 595,
|
|
/* 37094 */ 1, 12290, 3, 78112, 737, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1707, 0, 0, 2040, 0, 0, 0, 0, 0, 0,
|
|
/* 37124 */ 0, 0, 0, 0, 0, 0, 0, 1635, 0, 0, 2170, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 37148 */ 540, 540, 1360, 0, 0, 0, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2253, 561, 561, 561, 561, 926, 561,
|
|
/* 37170 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2307, 561, 561, 561, 2310, 400, 0, 0, 0, 0, 378, 0,
|
|
/* 37192 */ 69632, 73728, 0, 0, 0, 0, 423, 65536, 0, 0, 0, 0, 1111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1687, 0, 1689, 0,
|
|
/* 37220 */ 0, 423, 423, 0, 423, 0, 437, 423, 0, 423, 468, 468, 468, 475, 468, 468, 468, 468, 468, 468, 468, 468, 475,
|
|
/* 37243 */ 468, 468, 468, 468, 468, 468, 468, 468, 482, 468, 494, 494, 468, 494, 494, 494, 494, 494, 494, 494, 494,
|
|
/* 37264 */ 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, 537, 549, 572, 549, 572, 549, 549,
|
|
/* 37285 */ 572, 549, 596, 572, 572, 572, 572, 572, 572, 572, 596, 596, 596, 549, 596, 596, 596, 596, 596, 572, 572,
|
|
/* 37306 */ 549, 572, 596, 572, 596, 1, 12290, 3, 78112, 0, 660, 661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1666, 0,
|
|
/* 37333 */ 0, 830, 0, 0, 0, 661, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 729, 0, 742, 661, 0, 0, 0, 0, 0, 540, 847,
|
|
/* 37364 */ 540, 540, 540, 540, 540, 540, 3330, 540, 540, 540, 561, 561, 561, 561, 561, 3335, 861, 540, 540, 540, 540,
|
|
/* 37385 */ 540, 540, 540, 540, 540, 897, 540, 540, 540, 540, 540, 540, 540, 1799, 540, 540, 540, 540, 540, 540, 1807,
|
|
/* 37406 */ 540, 561, 561, 916, 561, 561, 561, 931, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2266, 561, 561, 561,
|
|
/* 37427 */ 561, 561, 561, 0, 0, 0, 540, 989, 585, 561, 540, 540, 897, 540, 540, 561, 561, 969, 561, 561, 561, 561,
|
|
/* 37449 */ 561, 0, 585, 585, 989, 585, 585, 585, 1004, 585, 1094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1101, 1102, 0, 0, 0, 0,
|
|
/* 37475 */ 0, 0, 1203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196608, 0, 0, 0, 0, 0, 540, 540, 540, 1308, 540, 540, 540, 540,
|
|
/* 37502 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 3222, 540, 540, 1360, 914, 561, 1363, 561, 561, 561, 561,
|
|
/* 37522 */ 561, 561, 561, 561, 561, 561, 1376, 1383, 561, 561, 561, 1444, 561, 561, 561, 561, 26027, 1360, 987, 585,
|
|
/* 37542 */ 1454, 585, 585, 585, 585, 585, 585, 2659, 585, 585, 2662, 2663, 585, 585, 585, 585, 585, 585, 585, 2712,
|
|
/* 37562 */ 540, 585, 585, 561, 540, 540, 540, 540, 585, 585, 1488, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 37583 */ 585, 585, 585, 585, 3128, 585, 1521, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1535, 585,
|
|
/* 37603 */ 585, 585, 585, 585, 585, 2673, 585, 585, 585, 2676, 585, 585, 2678, 585, 2679, 561, 585, 585, 1521, 585,
|
|
/* 37623 */ 585, 1079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 759, 0, 0, 0, 0, 0, 0, 1826, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 37650 */ 561, 561, 561, 561, 561, 1841, 1842, 585, 585, 2009, 585, 585, 561, 540, 585, 585, 561, 540, 540, 540,
|
|
/* 37670 */ 540, 561, 561, 561, 561, 1849, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2880, 561, 561, 561,
|
|
/* 37691 */ 561, 561, 2063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2074, 540, 540, 2226, 540, 540, 540, 540,
|
|
/* 37717 */ 540, 540, 540, 540, 540, 540, 540, 540, 0, 0, 561, 561, 561, 2854, 561, 561, 561, 561, 561, 561, 2301,
|
|
/* 37738 */ 561, 561, 561, 561, 561, 561, 2306, 561, 561, 561, 561, 561, 561, 3079, 561, 561, 561, 561, 561, 3085,
|
|
/* 37758 */ 561, 561, 3088, 2311, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 0, 0, 0, 0, 0, 0, 585,
|
|
/* 37781 */ 585, 585, 585, 585, 585, 2654, 585, 585, 585, 585, 585, 2374, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 37802 */ 585, 585, 585, 3140, 585, 585, 585, 585, 2386, 585, 585, 585, 585, 585, 585, 2391, 585, 585, 585, 585,
|
|
/* 37822 */ 585, 2396, 585, 585, 585, 585, 585, 2012, 540, 585, 585, 561, 540, 540, 540, 540, 561, 561, 561, 561,
|
|
/* 37842 */ 2624, 561, 561, 561, 561, 561, 561, 2632, 561, 561, 561, 561, 561, 2288, 561, 561, 561, 561, 561, 561,
|
|
/* 37862 */ 561, 561, 561, 561, 2631, 561, 561, 561, 561, 561, 2435, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 37888 */ 2114, 0, 0, 0, 0, 2476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 748, 0, 0, 0, 0, 0, 2732, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 37920 */ 0, 0, 0, 0, 0, 0, 1590, 1591, 0, 0, 0, 2772, 0, 0, 0, 0, 2777, 0, 0, 0, 0, 0, 0, 0, 540, 562, 540, 562,
|
|
/* 37948 */ 540, 540, 562, 540, 586, 540, 540, 2810, 540, 540, 540, 540, 540, 540, 2818, 540, 540, 540, 540, 540, 540,
|
|
/* 37969 */ 540, 889, 540, 540, 540, 540, 907, 540, 540, 540, 540, 540, 540, 540, 2849, 540, 540, 0, 0, 561, 561, 561,
|
|
/* 37991 */ 561, 561, 561, 561, 561, 561, 1836, 561, 561, 561, 561, 561, 2857, 561, 561, 561, 561, 561, 561, 2865,
|
|
/* 38011 */ 561, 561, 561, 561, 561, 561, 561, 561, 3081, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2897,
|
|
/* 38032 */ 561, 561, 0, 0, 585, 585, 585, 585, 585, 585, 585, 1467, 1474, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 38053 */ 3621, 0, 0, 0, 0, 0, 0, 540, 2905, 585, 585, 585, 585, 585, 585, 2913, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 38076 */ 585, 585, 1983, 585, 585, 1986, 585, 585, 585, 585, 585, 585, 585, 2945, 585, 585, 561, 540, 585, 585,
|
|
/* 38096 */ 561, 540, 540, 561, 561, 585, 585, 0, 0, 0, 0, 0, 3376, 0, 585, 3280, 585, 585, 585, 585, 585, 585, 561,
|
|
/* 38119 */ 540, 585, 561, 540, 540, 561, 561, 585, 585, 0, 3155, 0, 0, 585, 585, 585, 3587, 585, 3589, 585, 585, 585,
|
|
/* 38141 */ 561, 0, 0, 0, 0, 0, 0, 0, 2791, 0, 0, 0, 2793, 0, 0, 0, 0, 0, 0, 0, 0, 3600, 540, 540, 540, 540, 540, 540,
|
|
/* 38169 */ 540, 540, 540, 540, 540, 1314, 540, 540, 540, 540, 3607, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 38190 */ 561, 3614, 585, 585, 585, 585, 585, 585, 2686, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1045, 585,
|
|
/* 38210 */ 585, 585, 585, 585, 972, 561, 3653, 561, 561, 561, 561, 585, 3657, 585, 585, 585, 585, 0, 0, 0, 0, 0, 0,
|
|
/* 38233 */ 1204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 290, 0, 0, 0, 345, 469, 469, 469, 453, 453, 469, 453, 453, 453,
|
|
/* 38259 */ 453, 453, 453, 453, 453, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, 519,
|
|
/* 38280 */ 550, 573, 550, 573, 550, 550, 573, 550, 597, 573, 573, 573, 573, 573, 573, 573, 597, 597, 597, 550, 597,
|
|
/* 38301 */ 597, 597, 597, 597, 573, 573, 550, 573, 597, 573, 597, 1, 12290, 3, 78112, 862, 540, 540, 876, 540, 540,
|
|
/* 38322 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1315, 540, 540, 540, 585, 1019, 585, 585, 585, 585, 585,
|
|
/* 38343 */ 585, 585, 585, 585, 585, 585, 585, 585, 561, 0, 0, 0, 3498, 0, 0, 1123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 38370 */ 0, 0, 0, 1607, 0, 0, 0, 0, 1254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2111, 0, 0, 0, 540, 1341, 540, 540,
|
|
/* 38399 */ 540, 540, 540, 1348, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3333, 561, 561, 561, 561, 561, 585,
|
|
/* 38420 */ 585, 585, 585, 1505, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3365, 585, 585, 585, 585,
|
|
/* 38441 */ 585, 1523, 585, 585, 585, 585, 585, 1530, 585, 585, 585, 585, 585, 585, 585, 1468, 585, 585, 585, 585,
|
|
/* 38461 */ 585, 585, 585, 585, 585, 2378, 585, 585, 585, 585, 585, 585, 561, 585, 585, 585, 1557, 585, 1079, 0, 1561,
|
|
/* 38482 */ 0, 0, 0, 1567, 0, 0, 0, 0, 0, 803, 0, 0, 0, 0, 0, 0, 0, 803, 0, 0, 0, 0, 540, 540, 540, 540, 540, 1573, 0,
|
|
/* 38511 */ 0, 0, 1579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 749, 0, 0, 0, 0, 0, 0, 0, 1695, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 38544 */ 0, 0, 2127, 0, 0, 0, 540, 1762, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 38566 */ 1358, 540, 1843, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1854, 561, 561, 561, 561, 561, 561, 3239,
|
|
/* 38586 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 3578, 561, 561, 585, 585, 585, 585, 0, 2064, 2065, 0, 0, 0,
|
|
/* 38608 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1717, 0, 0, 0, 0, 0, 0, 2135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1159, 0, 0,
|
|
/* 38640 */ 0, 0, 2186, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1808, 540, 540,
|
|
/* 38661 */ 2213, 540, 540, 540, 540, 2218, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1754, 540, 540, 540, 540,
|
|
/* 38681 */ 540, 540, 2240, 0, 0, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1401, 561, 561,
|
|
/* 38702 */ 2298, 561, 561, 561, 561, 2303, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3083, 561, 561, 561,
|
|
/* 38722 */ 561, 561, 585, 585, 585, 2388, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1938, 585, 585,
|
|
/* 38743 */ 585, 3034, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2210, 0, 0, 0, 3380,
|
|
/* 38765 */ 3176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1175, 0, 0, 0, 0, 540, 540, 3404, 540, 561, 561, 561, 561, 561,
|
|
/* 38791 */ 561, 561, 561, 561, 561, 561, 561, 2282, 561, 561, 561, 561, 561, 561, 561, 3419, 561, 585, 585, 585, 585,
|
|
/* 38812 */ 585, 585, 585, 585, 585, 585, 1049, 585, 585, 585, 585, 561, 540, 3454, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 38833 */ 540, 540, 540, 561, 561, 561, 561, 3523, 561, 561, 561, 3469, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 38854 */ 561, 585, 585, 585, 585, 3484, 385, 387, 337, 0, 0, 0, 0, 0, 0, 336, 0, 0, 337, 0, 0, 0, 0, 0, 1097, 0, 0,
|
|
/* 38881 */ 0, 0, 0, 0, 0, 0, 0, 0, 2057, 0, 0, 0, 0, 0, 0, 0, 0, 384, 0, 0, 0, 69632, 73728, 0, 0, 0, 0, 0, 65536, 0,
|
|
/* 38911 */ 0, 0, 0, 1139, 1140, 0, 0, 0, 0, 0, 362, 362, 0, 0, 0, 0, 0, 703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2048, 0,
|
|
/* 38941 */ 0, 0, 0, 0, 0, 0, 336, 0, 0, 438, 0, 444, 0, 470, 470, 470, 470, 470, 470, 470, 551, 574, 551, 574, 551,
|
|
/* 38966 */ 551, 574, 551, 598, 480, 470, 470, 470, 499, 476, 499, 499, 499, 499, 499, 499, 499, 499, 470, 470, 476,
|
|
/* 38987 */ 470, 470, 470, 470, 470, 470, 470, 470, 470, 470, 480, 470, 481, 480, 470, 470, 470, 470, 574, 574, 574,
|
|
/* 39008 */ 574, 574, 574, 574, 598, 598, 598, 551, 598, 598, 598, 598, 598, 574, 574, 551, 574, 598, 574, 598, 1,
|
|
/* 39029 */ 12290, 3, 78112, 0, 0, 0, 678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2153, 0, 0, 0, 0, 0, 693, 0, 0, 0, 0,
|
|
/* 39059 */ 0, 0, 362, 362, 362, 0, 0, 0, 0, 0, 0, 1217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1220, 0, 0, 1223, 0, 0, 0, 0, 0,
|
|
/* 39089 */ 0, 663, 0, 791, 0, 0, 0, 0, 0, 0, 0, 795, 0, 0, 0, 0, 0, 2972, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2097, 0,
|
|
/* 39119 */ 2099, 0, 0, 0, 0, 0, 804, 0, 0, 0, 0, 0, 812, 0, 0, 0, 0, 706, 0, 0, 0, 0, 0, 0, 0, 0, 715, 0, 717, 0, 0,
|
|
/* 39150 */ 0, 831, 0, 0, 0, 663, 834, 0, 791, 0, 0, 0, 0, 0, 840, 0, 0, 0, 0, 0, 2996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 39181 */ 2429, 2430, 0, 0, 0, 0, 863, 540, 540, 877, 540, 540, 540, 888, 540, 540, 540, 540, 906, 540, 540, 540,
|
|
/* 39203 */ 540, 540, 1311, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2843, 540, 540, 540, 540, 561, 561,
|
|
/* 39224 */ 917, 561, 561, 561, 933, 561, 561, 947, 561, 561, 561, 561, 960, 561, 0, 995, 585, 1076, 1046, 585, 78112,
|
|
/* 39245 */ 1079, 0, 0, 0, 0, 0, 0, 0, 0, 2686976, 2736128, 0, 0, 2531328, 2707456, 0, 3190784, 561, 561, 561, 978,
|
|
/* 39266 */ 561, 561, 561, 0, 585, 585, 990, 585, 585, 585, 1006, 585, 585, 585, 585, 585, 2349, 585, 585, 585, 585,
|
|
/* 39287 */ 2354, 585, 585, 585, 585, 585, 585, 585, 2377, 585, 585, 585, 585, 585, 585, 585, 585, 561, 540, 561, 585,
|
|
/* 39308 */ 0, 0, 0, 0, 585, 1020, 585, 585, 585, 585, 1033, 585, 585, 585, 585, 1051, 585, 585, 585, 561, 540, 585,
|
|
/* 39330 */ 561, 3149, 540, 3151, 561, 3153, 585, 0, 0, 0, 0, 0, 0, 1660, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1173, 0, 0, 0, 0,
|
|
/* 39358 */ 0, 0, 0, 0, 0, 540, 990, 585, 561, 540, 540, 540, 540, 540, 561, 561, 561, 561, 3067, 561, 561, 561, 561,
|
|
/* 39381 */ 3071, 561, 561, 561, 561, 0, 0, 0, 1215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2431, 0, 2433, 0, 1238, 0, 0,
|
|
/* 39409 */ 0, 0, 1270, 0, 0, 0, 0, 0, 0, 0, 540, 540, 540, 540, 3561, 540, 540, 540, 540, 540, 540, 540, 540, 561,
|
|
/* 39433 */ 561, 561, 561, 561, 561, 561, 585, 585, 585, 540, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1491, 585,
|
|
/* 39454 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1495, 585, 585, 585, 585, 561, 585, 585, 1556, 585, 585,
|
|
/* 39475 */ 1079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1100, 0, 0, 0, 0, 0, 0, 1622, 0, 0, 1625, 0, 1627, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 39505 */ 0, 0, 0, 839, 540, 540, 540, 540, 859, 540, 1744, 540, 540, 540, 540, 540, 540, 540, 540, 1755, 540, 540,
|
|
/* 39527 */ 540, 540, 540, 540, 540, 2176, 540, 540, 2180, 540, 540, 540, 2184, 540, 561, 561, 561, 1847, 561, 561,
|
|
/* 39547 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2294, 561, 561, 561, 0, 0, 2117, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 39572 */ 0, 0, 0, 0, 0, 1730, 0, 0, 0, 0, 0, 0, 2148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1207, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 39604 */ 561, 561, 561, 561, 2248, 561, 561, 561, 561, 561, 561, 561, 561, 3095, 3097, 561, 561, 561, 3100, 561,
|
|
/* 39624 */ 3102, 561, 561, 2313, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 0, 0, 0, 0, 0, 0, 585, 585, 2651,
|
|
/* 39647 */ 585, 585, 585, 585, 585, 585, 585, 2660, 585, 585, 585, 585, 585, 2665, 585, 585, 2398, 585, 585, 585,
|
|
/* 39667 */ 585, 585, 585, 585, 585, 585, 585, 561, 540, 2410, 585, 561, 0, 540, 585, 585, 561, 540, 540, 540, 540,
|
|
/* 39688 */ 540, 561, 561, 561, 561, 585, 585, 585, 585, 0, 3669, 540, 3670, 0, 2436, 0, 0, 0, 0, 0, 0, 2441, 0, 0, 0,
|
|
/* 39713 */ 2444, 2445, 0, 0, 0, 0, 0, 3010, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303, 304, 0, 0, 0, 0, 2497, 0, 0, 0, 0, 0,
|
|
/* 39743 */ 0, 0, 0, 0, 2506, 0, 0, 0, 0, 0, 0, 0, 69632, 73728, 163840, 0, 0, 0, 0, 65536, 0, 2512, 0, 0, 0, 0, 2515,
|
|
/* 39770 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2523, 540, 2536, 2537, 540, 540, 540, 540, 540, 2542, 540, 2544, 540, 540, 540,
|
|
/* 39794 */ 540, 2548, 561, 2595, 561, 561, 2598, 2599, 561, 561, 561, 561, 561, 2604, 561, 2606, 561, 561, 561, 561,
|
|
/* 39814 */ 1863, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2890, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 39834 */ 2610, 561, 561, 561, 561, 561, 561, 561, 561, 2616, 561, 561, 561, 561, 561, 2276, 561, 561, 2279, 561,
|
|
/* 39854 */ 561, 561, 561, 561, 561, 561, 1915, 561, 561, 26027, 1920, 585, 585, 585, 585, 2636, 561, 561, 561, 561,
|
|
/* 39874 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2608, 2668, 585, 2670, 585, 585, 585, 585, 2674,
|
|
/* 39894 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 2675, 585, 585, 585, 585, 585, 585, 2680, 585, 585, 585, 585,
|
|
/* 39915 */ 585, 585, 585, 585, 2688, 585, 585, 585, 585, 585, 585, 585, 1950, 585, 585, 585, 585, 1954, 585, 585,
|
|
/* 39935 */ 585, 2696, 585, 585, 585, 585, 2700, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1494, 585, 585,
|
|
/* 39955 */ 585, 585, 585, 561, 2720, 561, 561, 585, 2722, 585, 585, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2964, 0, 0, 0, 0,
|
|
/* 39980 */ 2770, 0, 0, 0, 2773, 0, 0, 2776, 0, 0, 0, 0, 0, 0, 0, 0, 331, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 40012 */ 1691, 0, 2786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2795, 0, 0, 0, 0, 0, 3171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 40043 */ 1245, 0, 0, 0, 0, 0, 540, 2825, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 40065 */ 1773, 540, 540, 2835, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2844, 540, 540,
|
|
/* 40085 */ 2847, 540, 540, 2850, 540, 0, 0, 2851, 561, 561, 561, 561, 561, 561, 1851, 561, 561, 561, 561, 1855, 561,
|
|
/* 40106 */ 561, 561, 561, 561, 2883, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2892, 561, 561,
|
|
/* 40127 */ 2895, 561, 561, 2898, 561, 0, 0, 2899, 585, 585, 585, 585, 585, 585, 585, 1965, 585, 585, 585, 1970, 585,
|
|
/* 40148 */ 585, 585, 585, 585, 2931, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2940, 585, 585,
|
|
/* 40169 */ 2943, 585, 585, 2946, 585, 561, 2948, 585, 2949, 2950, 540, 540, 561, 561, 561, 561, 1878, 561, 561, 561,
|
|
/* 40189 */ 561, 1884, 561, 561, 561, 561, 561, 561, 936, 561, 561, 561, 561, 561, 561, 561, 561, 561, 984, 0, 585,
|
|
/* 40210 */ 585, 585, 585, 585, 585, 1007, 585, 0, 2968, 2969, 0, 0, 0, 0, 2974, 0, 0, 0, 0, 0, 0, 0, 0, 331, 0, 331,
|
|
/* 40236 */ 331, 0, 0, 0, 0, 3020, 0, 0, 540, 540, 3025, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3043,
|
|
/* 40259 */ 540, 540, 540, 540, 540, 540, 540, 3050, 540, 540, 3052, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 40280 */ 1352, 540, 540, 540, 540, 540, 561, 561, 561, 3091, 561, 561, 3093, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 40300 */ 561, 561, 2602, 561, 561, 561, 561, 561, 561, 561, 561, 585, 585, 3106, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 40321 */ 585, 585, 585, 585, 1496, 585, 585, 585, 1500, 585, 585, 585, 3132, 585, 585, 3134, 585, 585, 585, 585,
|
|
/* 40341 */ 585, 585, 585, 585, 585, 1040, 585, 585, 585, 585, 585, 967, 3158, 0, 0, 0, 3162, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 40366 */ 0, 0, 0, 1222, 0, 0, 1225, 0, 3190, 0, 0, 3193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540, 540, 540, 540, 2166,
|
|
/* 40393 */ 540, 540, 540, 540, 540, 3214, 540, 540, 540, 540, 540, 540, 540, 3219, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 40414 */ 2541, 540, 2543, 540, 540, 540, 540, 540, 540, 540, 540, 2581, 540, 540, 540, 540, 0, 2584, 0, 561, 561,
|
|
/* 40435 */ 561, 3236, 3237, 561, 561, 561, 561, 561, 3241, 561, 561, 561, 561, 561, 561, 3250, 561, 561, 561, 561,
|
|
/* 40455 */ 561, 561, 561, 561, 585, 585, 585, 585, 3536, 585, 585, 585, 585, 561, 561, 561, 3247, 561, 561, 561, 561,
|
|
/* 40476 */ 561, 561, 561, 561, 561, 561, 561, 585, 3481, 585, 3483, 585, 585, 585, 585, 3269, 585, 585, 585, 585,
|
|
/* 40496 */ 585, 585, 585, 585, 3275, 585, 585, 585, 585, 585, 585, 2701, 585, 585, 585, 585, 585, 585, 585, 2706,
|
|
/* 40516 */ 585, 0, 0, 3308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540, 540, 540, 856, 540, 585, 3359, 585, 585, 585,
|
|
/* 40542 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1057, 561, 0, 0, 0, 0, 3176, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 40567 */ 3386, 0, 0, 0, 0, 0, 1169, 0, 1171, 0, 0, 0, 0, 1176, 0, 0, 0, 0, 0, 1185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 40597 */ 669, 0, 0, 0, 0, 0, 585, 3429, 585, 585, 585, 585, 585, 585, 561, 540, 561, 585, 0, 3437, 0, 0, 0, 0, 0,
|
|
/* 40622 */ 3300, 0, 3176, 3302, 0, 0, 3305, 0, 0, 0, 0, 0, 0, 1113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 362, 0, 703,
|
|
/* 40650 */ 0, 0, 3440, 0, 0, 0, 3176, 0, 0, 0, 0, 0, 0, 0, 0, 540, 540, 3452, 540, 540, 540, 540, 3457, 540, 540,
|
|
/* 40675 */ 540, 540, 3462, 540, 540, 561, 561, 3467, 561, 0, 997, 1037, 585, 1048, 585, 78112, 1079, 0, 0, 0, 0, 0,
|
|
/* 40697 */ 0, 0, 776, 0, 0, 0, 0, 0, 783, 0, 0, 561, 561, 561, 3472, 561, 561, 561, 561, 3477, 561, 561, 585, 585,
|
|
/* 40721 */ 3482, 585, 585, 585, 585, 585, 585, 3259, 3260, 585, 585, 585, 585, 3264, 3265, 585, 585, 585, 585, 585,
|
|
/* 40741 */ 585, 3120, 585, 585, 585, 585, 585, 3126, 585, 585, 3129, 585, 585, 3487, 585, 585, 585, 585, 3492, 585,
|
|
/* 40761 */ 585, 561, 0, 0, 0, 0, 0, 0, 0, 69632, 73728, 167936, 0, 0, 0, 0, 65536, 0, 3499, 0, 0, 0, 0, 0, 3505, 0,
|
|
/* 40787 */ 0, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3397, 540, 540, 540, 540, 540, 540, 540, 540, 3517, 540,
|
|
/* 40808 */ 540, 3519, 561, 561, 561, 561, 561, 561, 561, 561, 3252, 561, 561, 561, 561, 561, 561, 585, 561, 561, 561,
|
|
/* 40829 */ 3530, 561, 561, 3532, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1042, 585, 585, 585, 585, 585, 969,
|
|
/* 40849 */ 585, 585, 3543, 585, 585, 3545, 561, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1144, 0, 362, 362, 0, 1147, 0, 540, 540,
|
|
/* 40874 */ 3629, 3630, 540, 540, 561, 561, 561, 3635, 3636, 561, 561, 585, 585, 585, 585, 0, 2029, 0, 0, 0, 0, 0,
|
|
/* 40896 */ 2031, 0, 0, 3641, 3642, 585, 585, 561, 0, 0, 0, 0, 0, 540, 540, 540, 540, 540, 540, 3395, 540, 540, 540,
|
|
/* 40919 */ 540, 540, 540, 3401, 561, 561, 585, 585, 0, 540, 561, 585, 0, 540, 561, 585, 3681, 3682, 3683, 3684, 339,
|
|
/* 40940 */ 340, 341, 342, 343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1617, 0, 0, 0, 0, 0, 0, 0, 388, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 40971 */ 0, 0, 0, 0, 0, 2469, 0, 2470, 0, 342, 342, 343, 342, 0, 341, 342, 445, 454, 471, 471, 471, 471, 471, 471,
|
|
/* 40995 */ 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 471, 486, 495, 495, 503, 495, 505, 495, 495, 505,
|
|
/* 41016 */ 505, 495, 505, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 520, 552, 575,
|
|
/* 41037 */ 552, 575, 552, 552, 575, 552, 599, 575, 575, 575, 575, 575, 575, 575, 599, 599, 599, 552, 599, 599, 599,
|
|
/* 41058 */ 599, 599, 575, 575, 552, 575, 599, 575, 599, 1, 12290, 3, 78112, 0, 0, 0, 646, 0, 0, 0, 0, 651, 652, 653,
|
|
/* 41082 */ 654, 655, 656, 657, 0, 0, 0, 0, 1144, 0, 0, 1259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2957312, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 41111 */ 692, 0, 0, 0, 0, 0, 0, 699, 362, 362, 362, 0, 0, 0, 0, 0, 0, 1232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 735, 0, 800,
|
|
/* 41141 */ 0, 0, 0, 0, 721, 0, 723, 0, 0, 0, 0, 0, 0, 0, 0, 0, 733, 0, 0, 0, 0, 0, 1202, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 41173 */ 0, 333, 334, 0, 0, 0, 0, 0, 646, 752, 753, 754, 0, 0, 0, 0, 0, 760, 761, 0, 0, 0, 0, 0, 0, 1271, 0, 0, 0,
|
|
/* 41202 */ 0, 0, 0, 540, 540, 540, 3026, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2220, 540, 540, 540, 540,
|
|
/* 41224 */ 540, 0, 761, 0, 0, 790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 797, 0, 0, 0, 0, 1152, 0, 0, 0, 0, 1157, 0, 0, 0, 0, 0,
|
|
/* 41255 */ 0, 0, 2106, 0, 0, 0, 0, 0, 0, 0, 0, 1219, 0, 0, 0, 0, 0, 0, 0, 723, 0, 692, 814, 0, 0, 0, 0, 761, 0, 0, 0,
|
|
/* 41286 */ 0, 0, 0, 0, 558, 581, 558, 581, 558, 558, 581, 558, 605, 0, 754, 823, 824, 0, 0, 0, 0, 0, 0, 754, 0, 0,
|
|
/* 41312 */ 828, 699, 0, 0, 0, 0, 1168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1633, 0, 0, 0, 0, 0, 0, 833, 0, 0, 0, 835, 0,
|
|
/* 41343 */ 0, 0, 692, 699, 0, 0, 692, 833, 0, 0, 0, 0, 0, 0, 0, 0, 0, 692, 540, 540, 853, 857, 860, 540, 868, 540,
|
|
/* 41369 */ 540, 882, 884, 887, 540, 540, 540, 898, 902, 540, 540, 540, 540, 540, 540, 1766, 540, 540, 540, 540, 540,
|
|
/* 41390 */ 540, 540, 540, 540, 540, 1786, 540, 540, 540, 540, 540, 561, 561, 561, 923, 927, 930, 561, 938, 561, 561,
|
|
/* 41411 */ 561, 953, 955, 958, 561, 561, 561, 561, 1879, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2641,
|
|
/* 41432 */ 561, 561, 561, 561, 561, 561, 561, 561, 2648, 0, 585, 585, 585, 585, 585, 585, 585, 561, 540, 585, 585,
|
|
/* 41453 */ 561, 2717, 540, 540, 540, 585, 585, 585, 1026, 1028, 1031, 585, 585, 585, 1043, 1047, 585, 585, 585, 585,
|
|
/* 41473 */ 970, 0, 0, 0, 1060, 585, 1062, 1063, 853, 540, 898, 902, 1068, 923, 561, 970, 974, 561, 561, 561, 561, 0,
|
|
/* 41495 */ 585, 585, 585, 996, 1000, 1003, 585, 1011, 1073, 0, 996, 585, 1043, 1047, 1078, 78112, 1079, 0, 0, 0, 0,
|
|
/* 41516 */ 0, 0, 0, 560, 583, 560, 583, 560, 560, 583, 560, 607, 0, 0, 1199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1208, 0, 0,
|
|
/* 41543 */ 0, 0, 0, 1231, 0, 0, 0, 0, 1236, 0, 0, 0, 0, 0, 0, 0, 69632, 73728, 0, 0, 0, 0, 422, 65536, 0, 540, 1322,
|
|
/* 41570 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 1331, 540, 540, 1338, 540, 540, 540, 540, 2228, 540, 540,
|
|
/* 41590 */ 540, 540, 540, 540, 540, 540, 540, 540, 0, 0, 561, 2852, 561, 561, 561, 561, 561, 561, 561, 561, 1422,
|
|
/* 41611 */ 561, 561, 1429, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2879, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 41631 */ 1442, 561, 561, 561, 561, 561, 561, 26027, 1360, 987, 585, 585, 585, 585, 585, 585, 585, 2925, 585, 585,
|
|
/* 41651 */ 585, 585, 585, 585, 585, 585, 561, 540, 561, 585, 3436, 0, 3438, 0, 585, 1503, 585, 585, 585, 585, 585,
|
|
/* 41672 */ 585, 585, 585, 585, 585, 1513, 585, 585, 1520, 1667, 0, 1669, 0, 0, 0, 1671, 0, 748, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 41697 */ 650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282624, 282624, 282624, 282624, 282624, 282624, 282624, 282624, 282624,
|
|
/* 41716 */ 282624, 0, 0, 1602, 0, 0, 0, 0, 0, 0, 540, 1738, 540, 540, 540, 540, 540, 540, 540, 2584, 0, 561, 561,
|
|
/* 41739 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 1839, 561, 561, 561, 1743, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 41760 */ 540, 540, 540, 540, 540, 540, 540, 540, 2238, 540, 1776, 540, 540, 1781, 540, 540, 540, 540, 540, 540,
|
|
/* 41780 */ 540, 540, 540, 540, 540, 1353, 540, 540, 540, 540, 0, 561, 1829, 561, 561, 561, 561, 561, 561, 1835, 561,
|
|
/* 41801 */ 561, 561, 561, 561, 561, 1864, 561, 561, 561, 1868, 561, 561, 1873, 561, 561, 1907, 561, 561, 561, 561,
|
|
/* 41821 */ 561, 561, 561, 561, 561, 26027, 0, 585, 1923, 585, 585, 585, 585, 585, 585, 3270, 585, 585, 585, 585, 585,
|
|
/* 41842 */ 585, 585, 585, 585, 1968, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1929, 585, 585, 585, 585, 585,
|
|
/* 41863 */ 585, 585, 585, 585, 585, 585, 1511, 585, 585, 585, 585, 585, 1958, 585, 585, 585, 1962, 585, 585, 1967,
|
|
/* 41883 */ 585, 585, 585, 585, 585, 585, 585, 1469, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2392, 585, 585, 585,
|
|
/* 41904 */ 2395, 585, 585, 0, 1086, 0, 0, 0, 2034, 0, 1090, 0, 0, 0, 2036, 0, 1094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 41932 */ 0, 0, 0, 0, 1226, 585, 585, 585, 585, 2362, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1534,
|
|
/* 41954 */ 585, 585, 585, 585, 2585, 0, 1826, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 41975 */ 561, 2271, 585, 585, 585, 2710, 585, 585, 585, 561, 540, 585, 585, 561, 540, 540, 540, 540, 540, 540,
|
|
/* 41995 */ 1814, 540, 540, 540, 540, 1820, 540, 540, 540, 1360, 0, 0, 0, 0, 2744, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 42021 */ 1649, 0, 0, 0, 0, 585, 585, 585, 585, 2924, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1937,
|
|
/* 42043 */ 585, 585, 585, 585, 561, 561, 3338, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1857,
|
|
/* 42064 */ 561, 561, 0, 0, 0, 0, 3176, 0, 0, 0, 0, 0, 0, 3385, 0, 0, 0, 0, 0, 0, 1628, 1629, 1630, 0, 0, 0, 0, 0, 0,
|
|
/* 42093 */ 0, 0, 1159168, 362, 0, 0, 0, 0, 0, 0, 3402, 540, 540, 540, 561, 561, 561, 3407, 561, 561, 561, 561, 3411,
|
|
/* 42116 */ 561, 561, 561, 561, 1391, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1414, 561, 561, 561, 561,
|
|
/* 42137 */ 561, 561, 3417, 561, 561, 561, 585, 585, 585, 3422, 585, 585, 585, 585, 3426, 585, 585, 585, 585, 585,
|
|
/* 42157 */ 2375, 2376, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1476, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 42177 */ 585, 585, 3432, 585, 585, 585, 561, 540, 561, 585, 0, 0, 0, 0, 0, 0, 1644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 661,
|
|
/* 42204 */ 0, 661, 0, 0, 0, 0, 0, 0, 0, 0, 3176, 0, 0, 0, 0, 3446, 0, 0, 0, 540, 540, 540, 3392, 540, 540, 540, 540,
|
|
/* 42231 */ 3396, 540, 540, 540, 540, 540, 540, 540, 3039, 540, 540, 540, 540, 540, 3045, 540, 540, 540, 540, 3455,
|
|
/* 42251 */ 540, 540, 540, 3459, 540, 540, 540, 540, 540, 561, 561, 561, 561, 561, 2626, 561, 561, 561, 561, 561, 561,
|
|
/* 42272 */ 2633, 561, 561, 561, 561, 3470, 561, 561, 561, 3474, 561, 561, 561, 561, 561, 585, 585, 585, 585, 585,
|
|
/* 42292 */ 585, 585, 3111, 585, 585, 585, 585, 585, 585, 3485, 585, 585, 585, 3489, 585, 585, 585, 585, 585, 561, 0,
|
|
/* 42313 */ 0, 0, 0, 0, 540, 540, 540, 540, 540, 540, 3603, 540, 3604, 540, 540, 540, 561, 561, 585, 585, 0, 540, 561,
|
|
/* 42336 */ 585, 3677, 3678, 3679, 3680, 0, 540, 561, 585, 585, 585, 585, 585, 1079, 0, 1562, 0, 0, 0, 1568, 0, 0, 0,
|
|
/* 42359 */ 0, 0, 1256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300, 300, 0, 0, 0, 0, 386, 0, 0, 0, 390, 386, 0, 0, 0, 0, 0, 0,
|
|
/* 42390 */ 0, 0, 0, 0, 1174, 0, 0, 0, 0, 0, 0, 0, 0, 402, 0, 344, 0, 69632, 73728, 0, 0, 0, 0, 0, 65536, 0, 0, 0, 0,
|
|
/* 42419 */ 1201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 0, 0, 0, 0, 521, 521, 521, 521, 0, 0, 0, 0, 0, 0, 0, 0, 521,
|
|
/* 42449 */ 521, 521, 521, 521, 521, 521, 553, 576, 553, 576, 553, 553, 576, 553, 600, 576, 576, 576, 576, 576, 576,
|
|
/* 42470 */ 576, 600, 600, 600, 553, 600, 600, 600, 600, 600, 576, 576, 617, 622, 600, 622, 628, 1, 12290, 3, 78112,
|
|
/* 42491 */ 561, 561, 561, 979, 561, 561, 561, 0, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2927, 585, 585, 585,
|
|
/* 42512 */ 585, 585, 585, 0, 0, 0, 540, 1061, 585, 561, 540, 540, 540, 540, 540, 561, 561, 561, 561, 561, 3238, 561,
|
|
/* 42534 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 1433, 561, 561, 561, 561, 561, 1107, 0, 0, 0, 0, 1112, 0, 0,
|
|
/* 42557 */ 0, 0, 0, 0, 0, 0, 0, 0, 1190, 0, 0, 0, 0, 0, 561, 561, 561, 1389, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 42583 */ 561, 561, 561, 561, 2308, 2309, 561, 561, 561, 1403, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 42603 */ 561, 561, 561, 561, 2296, 2297, 1440, 561, 561, 561, 561, 561, 561, 561, 26027, 1360, 987, 585, 585, 585,
|
|
/* 42623 */ 585, 585, 585, 585, 2947, 540, 585, 585, 561, 540, 540, 561, 561, 1574, 0, 0, 0, 1580, 0, 0, 0, 0, 0, 0,
|
|
/* 42647 */ 0, 0, 0, 0, 0, 1664, 0, 0, 0, 0, 1606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1620, 0, 0, 0, 0, 1216, 0,
|
|
/* 42678 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2110, 0, 0, 0, 0, 561, 561, 561, 1877, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 42704 */ 561, 561, 561, 561, 561, 2322, 0, 0, 0, 2052, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2155, 0, 2116,
|
|
/* 42732 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1676, 0, 2241, 0, 0, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 42759 */ 561, 561, 561, 561, 561, 2295, 561, 561, 561, 561, 2274, 561, 561, 561, 561, 2278, 561, 2280, 561, 561,
|
|
/* 42779 */ 561, 561, 561, 561, 1897, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1397, 561, 561, 561, 561, 561, 561,
|
|
/* 42800 */ 2359, 585, 585, 585, 585, 2363, 585, 2365, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3123, 585, 3125,
|
|
/* 42820 */ 585, 585, 585, 585, 0, 0, 0, 2500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2494, 2495, 0, 0, 561, 2622, 561,
|
|
/* 42847 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2607, 561, 0, 3021, 0, 540, 540, 540,
|
|
/* 42868 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2533, 540, 0, 0, 0, 0, 3176, 3382, 0, 0, 3384, 0, 0, 0,
|
|
/* 42892 */ 0, 0, 0, 0, 728, 0, 0, 0, 0, 0, 0, 0, 0, 1115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540, 3391, 540, 540, 3393, 540,
|
|
/* 42921 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 1785, 540, 540, 540, 1790, 540, 0, 0, 0, 0, 3176, 0, 3443, 0,
|
|
/* 42944 */ 0, 0, 0, 0, 3449, 540, 540, 540, 540, 540, 1782, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 42966 */ 2832, 540, 540, 540, 540, 864, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 912,
|
|
/* 42987 */ 1095, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2447, 0, 0, 1624, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 43019 */ 0, 2060, 0, 0, 1827, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2620, 345,
|
|
/* 43041 */ 345, 347, 345, 0, 0, 345, 0, 345, 0, 0, 0, 0, 346, 0, 0, 0, 0, 0, 3310, 0, 0, 3312, 0, 0, 0, 0, 0, 0, 540,
|
|
/* 43070 */ 585, 585, 561, 540, 540, 540, 540, 540, 561, 561, 561, 561, 561, 561, 3410, 561, 561, 561, 561, 561, 0, 0,
|
|
/* 43092 */ 0, 345, 345, 347, 345, 345, 345, 345, 345, 345, 512, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345,
|
|
/* 43113 */ 345, 345, 345, 345, 345, 345, 554, 577, 554, 577, 554, 554, 577, 554, 601, 577, 577, 577, 577, 577, 577,
|
|
/* 43134 */ 577, 601, 601, 601, 554, 601, 601, 601, 601, 601, 577, 577, 554, 577, 601, 577, 601, 1, 12290, 3, 78112,
|
|
/* 43155 */ 0, 722, 0, 724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2508, 0, 0, 0, 0, 739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 43187 */ 0, 0, 0, 0, 1690, 0, 0, 0, 811, 0, 0, 810, 0, 0, 0, 0, 0, 755, 0, 0, 819, 0, 0, 0, 0, 1269, 0, 0, 0, 0, 0,
|
|
/* 43218 */ 0, 0, 1181, 540, 540, 540, 540, 540, 1797, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3464,
|
|
/* 43239 */ 561, 561, 561, 561, 540, 540, 872, 540, 540, 540, 540, 890, 892, 540, 540, 903, 540, 540, 540, 540, 540,
|
|
/* 43260 */ 540, 2175, 540, 2177, 540, 540, 540, 540, 540, 540, 2185, 561, 561, 918, 924, 561, 561, 561, 561, 942,
|
|
/* 43280 */ 561, 561, 561, 561, 561, 962, 964, 561, 561, 975, 561, 561, 561, 561, 0, 585, 585, 991, 997, 585, 585,
|
|
/* 43301 */ 585, 585, 585, 585, 585, 3271, 585, 585, 585, 585, 585, 585, 3277, 585, 1015, 585, 585, 585, 585, 585,
|
|
/* 43321 */ 1035, 1037, 585, 585, 1048, 585, 585, 585, 585, 561, 0, 0, 0, 0, 0, 540, 540, 3650, 3651, 540, 540, 0, 0,
|
|
/* 43344 */ 0, 540, 991, 585, 561, 854, 892, 540, 903, 540, 924, 964, 561, 975, 0, 0, 0, 1151, 0, 1153, 0, 1155, 0, 0,
|
|
/* 43368 */ 0, 0, 0, 0, 0, 0, 713, 0, 0, 0, 0, 0, 0, 0, 0, 1181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1706, 0, 0,
|
|
/* 43401 */ 1198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1731, 0, 1212, 1213, 0, 0, 0, 0, 0, 1218, 0, 0, 0, 0, 0,
|
|
/* 43431 */ 0, 0, 0, 729, 0, 0, 0, 0, 0, 0, 0, 540, 540, 1307, 1309, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 43456 */ 540, 540, 1316, 540, 540, 1319, 540, 540, 1343, 540, 540, 540, 540, 540, 540, 540, 540, 1354, 1355, 540,
|
|
/* 43476 */ 540, 540, 540, 540, 1813, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1360, 1360, 914, 561, 561, 561,
|
|
/* 43496 */ 1366, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 26027, 1921, 585, 585, 585, 585, 561, 561, 1420,
|
|
/* 43516 */ 561, 561, 561, 561, 561, 561, 561, 1434, 561, 561, 561, 561, 561, 561, 3342, 561, 561, 561, 561, 561, 561,
|
|
/* 43537 */ 561, 561, 561, 3080, 561, 561, 561, 561, 561, 561, 561, 561, 2319, 561, 561, 561, 561, 0, 0, 0, 561, 561,
|
|
/* 43559 */ 561, 1445, 1446, 561, 561, 561, 26027, 1360, 987, 585, 585, 585, 1457, 585, 585, 585, 585, 585, 2403, 585,
|
|
/* 43579 */ 585, 585, 585, 585, 561, 2409, 585, 2411, 2412, 585, 1487, 1489, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 43599 */ 585, 585, 585, 585, 585, 585, 3366, 585, 585, 585, 585, 1525, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 43619 */ 1536, 1537, 585, 585, 585, 585, 585, 585, 3434, 585, 561, 540, 561, 585, 0, 0, 0, 3439, 585, 1542, 0, 540,
|
|
/* 43641 */ 585, 585, 561, 540, 1547, 540, 540, 1550, 561, 1551, 561, 561, 561, 561, 1895, 561, 561, 561, 1900, 561,
|
|
/* 43661 */ 561, 561, 561, 561, 561, 561, 0, 585, 585, 988, 585, 585, 585, 585, 585, 1554, 585, 1555, 585, 585, 1558,
|
|
/* 43682 */ 1079, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2069, 0, 0, 0, 0, 2073, 0, 0, 1678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 43713 */ 0, 0, 2037, 0, 0, 0, 1694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2072, 0, 0, 0, 1637, 0, 0, 0, 0, 0, 0,
|
|
/* 43744 */ 0, 0, 0, 0, 0, 0, 0, 0, 2051, 0, 0, 561, 561, 561, 561, 561, 561, 1833, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 43769 */ 561, 26027, 1360, 987, 585, 585, 585, 585, 585, 561, 1908, 561, 561, 561, 561, 1914, 561, 561, 561, 26027,
|
|
/* 43789 */ 0, 585, 585, 585, 585, 585, 2334, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2938, 585, 585, 585,
|
|
/* 43810 */ 585, 585, 585, 585, 1927, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1055, 585, 561,
|
|
/* 43831 */ 585, 585, 585, 1994, 585, 585, 585, 585, 585, 585, 585, 585, 2002, 585, 585, 585, 585, 585, 585, 2711,
|
|
/* 43851 */ 561, 540, 585, 585, 561, 540, 540, 540, 540, 540, 540, 2217, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 43872 */ 540, 1802, 540, 540, 540, 540, 540, 585, 2008, 585, 585, 585, 561, 540, 585, 585, 561, 540, 540, 540, 540,
|
|
/* 43893 */ 561, 561, 561, 561, 2261, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2891, 561, 561, 561, 561,
|
|
/* 43914 */ 0, 2076, 0, 0, 0, 0, 0, 0, 0, 0, 2084, 0, 0, 0, 0, 0, 0, 0, 69632, 73728, 266240, 0, 0, 0, 0, 65536, 0,
|
|
/* 43941 */ 2088, 0, 0, 2090, 0, 0, 0, 0, 0, 0, 0, 2098, 0, 0, 0, 0, 0, 0, 1725, 0, 0, 0, 0, 0, 0, 0, 0, 0, 643, 0, 0,
|
|
/* 43972 */ 0, 0, 0, 0, 0, 0, 2146, 0, 0, 0, 2146, 0, 0, 2151, 2152, 0, 0, 0, 0, 0, 0, 0, 274432, 274432, 274432, 0,
|
|
/* 43998 */ 274432, 274432, 274432, 274432, 274432, 2156, 0, 0, 0, 0, 0, 0, 0, 2162, 540, 540, 540, 540, 540, 2168,
|
|
/* 44018 */ 540, 540, 540, 540, 2538, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1821, 540, 540,
|
|
/* 44038 */ 1360, 540, 2200, 540, 2203, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2209, 540, 540, 540, 540,
|
|
/* 44058 */ 2578, 540, 540, 540, 540, 540, 540, 540, 540, 0, 2584, 0, 0, 0, 0, 799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 44085 */ 0, 799, 0, 0, 0, 0, 0, 0, 0, 0, 2244, 561, 561, 561, 561, 561, 561, 2251, 561, 561, 561, 561, 561, 561,
|
|
/* 44109 */ 3351, 585, 585, 585, 585, 585, 585, 585, 3356, 585, 561, 561, 2300, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 44129 */ 561, 561, 561, 561, 561, 561, 2323, 0, 0, 0, 2329, 585, 585, 585, 585, 585, 585, 2336, 585, 585, 585, 585,
|
|
/* 44151 */ 585, 585, 585, 1470, 585, 585, 585, 585, 1480, 585, 585, 585, 585, 585, 2360, 585, 585, 585, 585, 585,
|
|
/* 44171 */ 585, 2366, 585, 2368, 585, 2371, 585, 585, 585, 585, 585, 585, 3546, 0, 0, 3549, 3550, 0, 0, 0, 0, 0, 0,
|
|
/* 44194 */ 303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2912256, 0, 3207168, 2465792, 0, 0, 2385, 585, 585, 585, 585, 585, 585,
|
|
/* 44218 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 1989, 2472, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2480, 0, 0, 0, 0, 0,
|
|
/* 44244 */ 0, 0, 286720, 286720, 0, 286720, 286720, 1, 12290, 3, 0, 0, 0, 0, 0, 2514, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 44269 */ 2522, 0, 0, 0, 0, 1575, 0, 0, 0, 0, 0, 1581, 0, 0, 0, 0, 0, 0, 0, 69632, 73728, 172032, 0, 0, 0, 0, 65536,
|
|
/* 44296 */ 0, 561, 561, 2596, 561, 561, 561, 561, 561, 2601, 561, 561, 561, 561, 561, 561, 561, 0, 585, 585, 992,
|
|
/* 44317 */ 585, 585, 585, 585, 585, 585, 2681, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 44338 */ 1956, 585, 2719, 561, 561, 561, 2721, 585, 585, 585, 2723, 2724, 0, 0, 0, 0, 0, 0, 0, 2801, 0, 0, 0, 540,
|
|
/* 44362 */ 2805, 540, 540, 540, 2742, 0, 2743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2100, 0, 0, 0, 0, 2758, 0, 0,
|
|
/* 44390 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2128, 0, 0, 540, 2809, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 44416 */ 540, 540, 540, 540, 2223, 2224, 540, 2846, 540, 540, 540, 540, 540, 0, 0, 561, 561, 561, 561, 2855, 561,
|
|
/* 44437 */ 2856, 561, 2894, 561, 561, 561, 561, 561, 0, 0, 585, 585, 585, 585, 2903, 585, 2904, 585, 2942, 585, 585,
|
|
/* 44458 */ 585, 585, 585, 561, 540, 585, 585, 561, 540, 540, 561, 561, 585, 585, 0, 0, 0, 3374, 0, 0, 3377, 0, 0, 0,
|
|
/* 44482 */ 540, 3024, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1771, 540, 540, 540, 540, 561, 561, 585,
|
|
/* 44503 */ 3105, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2369, 585, 585, 585, 585, 585, 3145,
|
|
/* 44523 */ 540, 585, 561, 540, 540, 561, 561, 585, 585, 0, 0, 0, 0, 0, 0, 2066, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 297,
|
|
/* 44550 */ 0, 0, 0, 0, 0, 0, 0, 3390, 540, 540, 540, 540, 3394, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2179,
|
|
/* 44573 */ 540, 540, 540, 540, 540, 540, 540, 3403, 540, 540, 3405, 561, 561, 561, 561, 3409, 561, 561, 561, 561,
|
|
/* 44593 */ 561, 561, 2277, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3082, 561, 3084, 561, 561, 561, 561, 561,
|
|
/* 44613 */ 561, 561, 3418, 561, 561, 3420, 585, 585, 585, 585, 3424, 585, 585, 585, 585, 585, 585, 585, 3591, 585,
|
|
/* 44633 */ 561, 0, 0, 0, 0, 0, 0, 0, 3176, 0, 3303, 0, 0, 0, 0, 3307, 0, 585, 585, 585, 585, 585, 3433, 585, 585,
|
|
/* 44658 */ 561, 540, 561, 585, 0, 0, 0, 0, 0, 0, 2137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1129, 0, 0, 0, 0, 0, 0, 0, 3500, 0,
|
|
/* 44688 */ 3502, 0, 0, 0, 0, 0, 540, 540, 540, 540, 540, 3511, 540, 540, 540, 540, 2812, 540, 2815, 540, 540, 540,
|
|
/* 44710 */ 540, 2820, 540, 540, 540, 2823, 540, 540, 540, 540, 3631, 540, 561, 561, 561, 561, 561, 3637, 561, 585,
|
|
/* 44730 */ 585, 585, 585, 585, 1079, 0, 0, 0, 1564, 0, 0, 0, 1570, 0, 585, 585, 3643, 585, 561, 3645, 0, 3647, 0, 0,
|
|
/* 44754 */ 540, 540, 540, 540, 540, 540, 540, 1286, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3208, 540, 540,
|
|
/* 44775 */ 540, 540, 540, 365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2496, 398, 0, 0, 0, 0, 0, 365, 373, 401,
|
|
/* 44804 */ 0, 0, 0, 0, 0, 365, 0, 0, 393, 0, 0, 0, 0, 348, 0, 0, 365, 0, 393, 0, 406, 408, 0, 0, 365, 373, 0, 69632,
|
|
/* 44832 */ 73728, 0, 0, 0, 0, 424, 65536, 0, 0, 0, 0, 1596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 0, 0, 0, 424,
|
|
/* 44861 */ 424, 0, 424, 0, 408, 424, 447, 455, 0, 0, 0, 0, 0, 0, 0, 777, 0, 0, 0, 0, 0, 0, 0, 644, 0, 406, 0, 496,
|
|
/* 44889 */ 496, 0, 496, 496, 496, 496, 496, 496, 496, 496, 522, 522, 522, 522, 455, 455, 455, 530, 455, 531, 455,
|
|
/* 44910 */ 455, 522, 536, 522, 522, 522, 522, 538, 555, 578, 555, 578, 555, 555, 578, 555, 602, 578, 578, 578, 608,
|
|
/* 44931 */ 608, 608, 578, 602, 602, 602, 555, 602, 602, 602, 602, 602, 578, 578, 618, 623, 602, 623, 629, 1, 12290,
|
|
/* 44952 */ 3, 78112, 643, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2769, 0, 0, 0, 694, 0, 0, 0, 0, 0, 362, 362,
|
|
/* 44982 */ 362, 0, 0, 0, 0, 0, 0, 2440, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1260, 0, 0, 0, 0, 0, 0, 0, 0, 805, 0, 0, 0, 0, 0,
|
|
/* 45014 */ 0, 0, 0, 0, 0, 0, 0, 0, 2142, 2143, 0, 540, 540, 540, 878, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 45038 */ 540, 540, 540, 1332, 540, 540, 540, 561, 561, 919, 561, 561, 561, 561, 561, 561, 948, 950, 561, 561, 561,
|
|
/* 45059 */ 561, 561, 561, 3575, 561, 3577, 561, 561, 561, 585, 585, 585, 585, 0, 0, 1563, 0, 0, 0, 0, 0, 1569, 0,
|
|
/* 45082 */ 585, 1021, 1023, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 561, 3496, 0, 3497, 0, 0, 0,
|
|
/* 45104 */ 0, 0, 540, 992, 585, 561, 540, 540, 540, 540, 540, 561, 561, 561, 561, 561, 3341, 561, 561, 561, 561, 561,
|
|
/* 45126 */ 561, 561, 561, 561, 561, 3579, 561, 585, 585, 585, 585, 0, 0, 0, 1098, 1230, 0, 0, 0, 0, 0, 0, 1237, 0, 0,
|
|
/* 45151 */ 0, 0, 0, 0, 2452, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2764, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1242, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 45183 */ 0, 0, 0, 1242, 1251, 540, 540, 1280, 540, 540, 540, 1284, 540, 540, 1295, 540, 540, 1299, 540, 540, 540,
|
|
/* 45204 */ 540, 540, 2229, 540, 2231, 540, 540, 540, 540, 540, 540, 540, 0, 0, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 45225 */ 561, 561, 561, 561, 561, 1840, 561, 561, 1360, 914, 561, 561, 561, 561, 561, 561, 1369, 561, 561, 561,
|
|
/* 45245 */ 1373, 561, 561, 1384, 561, 561, 1388, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 45265 */ 2324, 0, 0, 561, 561, 1405, 561, 561, 561, 1409, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3612, 3613,
|
|
/* 45286 */ 561, 585, 585, 585, 585, 585, 1460, 585, 585, 585, 1464, 585, 585, 1475, 585, 585, 1479, 585, 585, 585,
|
|
/* 45306 */ 585, 585, 585, 1032, 585, 585, 585, 585, 585, 585, 585, 585, 561, 0, 0, 0, 0, 3625, 0, 540, 0, 1623, 0, 0,
|
|
/* 45330 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1636, 0, 0, 0, 0, 1626, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2058, 2059, 0,
|
|
/* 45360 */ 2061, 2062, 1638, 0, 0, 0, 1642, 0, 0, 0, 1646, 0, 0, 0, 1650, 0, 0, 0, 0, 0, 1257, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 45388 */ 0, 0, 0, 1145, 362, 362, 0, 0, 1148, 561, 1844, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 45410 */ 561, 561, 561, 2635, 561, 561, 561, 561, 1862, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 45431 */ 2869, 561, 561, 2872, 2007, 585, 585, 585, 585, 561, 1752, 585, 1938, 1844, 540, 540, 540, 540, 561, 561,
|
|
/* 45451 */ 561, 561, 2275, 561, 561, 561, 561, 561, 561, 2281, 561, 2283, 561, 2286, 0, 0, 2056, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 45475 */ 0, 0, 0, 0, 0, 0, 2154, 0, 0, 0, 0, 0, 2118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2520, 0, 0, 0, 0, 2132,
|
|
/* 45506 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 2141, 0, 0, 0, 0, 0, 0, 2463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2491, 0, 0, 0, 0, 0,
|
|
/* 45538 */ 0, 0, 0, 0, 2158, 0, 0, 2161, 0, 540, 540, 2164, 540, 540, 540, 540, 540, 540, 540, 3053, 540, 3055, 540,
|
|
/* 45561 */ 540, 540, 540, 540, 540, 540, 540, 2232, 540, 540, 2235, 2236, 540, 540, 0, 540, 540, 540, 2227, 540, 540,
|
|
/* 45582 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 0, 2242, 561, 561, 561, 561, 561, 561, 561, 0, 0, 0, 561,
|
|
/* 45604 */ 561, 2246, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 26027, 1360, 987, 585, 585, 1455, 585, 1458,
|
|
/* 45624 */ 561, 2312, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 0, 0, 0, 0, 0, 0, 585, 2650, 585, 585,
|
|
/* 45647 */ 585, 585, 585, 585, 561, 3547, 3548, 0, 0, 0, 0, 0, 0, 3554, 0, 585, 585, 2331, 585, 585, 585, 585, 585,
|
|
/* 45670 */ 585, 585, 585, 585, 585, 585, 585, 2381, 2382, 585, 585, 585, 585, 2387, 585, 585, 585, 585, 585, 585,
|
|
/* 45690 */ 585, 585, 585, 585, 585, 585, 2397, 540, 540, 2415, 2416, 561, 561, 2419, 2420, 585, 585, 2423, 2424, 0,
|
|
/* 45710 */ 1563, 0, 1569, 0, 1575, 0, 1581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2752, 0, 0, 0, 0, 0, 0, 0, 2438, 0,
|
|
/* 45739 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1728, 0, 0, 0, 0, 0, 2513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2519, 0, 0, 0, 0, 0,
|
|
/* 45771 */ 0, 2478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1189, 0, 0, 0, 0, 0, 0, 540, 540, 540, 2565, 540, 540, 540, 540, 540,
|
|
/* 45798 */ 540, 540, 540, 540, 540, 540, 540, 1333, 540, 540, 540, 585, 585, 2682, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 45819 */ 585, 585, 585, 2693, 585, 585, 585, 585, 585, 585, 3590, 585, 585, 561, 0, 3594, 0, 0, 0, 0, 0, 0, 2516,
|
|
/* 45842 */ 2466, 0, 0, 0, 0, 0, 2521, 0, 0, 2824, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 45865 */ 540, 540, 2239, 561, 561, 561, 561, 2885, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1395,
|
|
/* 45885 */ 561, 561, 561, 561, 561, 561, 561, 561, 1430, 561, 561, 561, 561, 561, 561, 561, 561, 2866, 561, 561, 561,
|
|
/* 45906 */ 561, 561, 561, 561, 585, 585, 585, 585, 2933, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1985,
|
|
/* 45927 */ 585, 585, 585, 585, 0, 3177, 0, 0, 0, 3180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1601, 1602, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 45956 */ 0, 3194, 0, 0, 0, 0, 0, 0, 3197, 0, 3199, 540, 540, 540, 540, 880, 540, 885, 540, 891, 540, 894, 540, 540,
|
|
/* 45980 */ 908, 540, 540, 540, 540, 540, 3038, 540, 540, 540, 540, 540, 540, 540, 540, 3046, 540, 585, 3289, 3290, 0,
|
|
/* 46001 */ 0, 0, 0, 3294, 0, 0, 0, 0, 0, 0, 0, 0, 1099, 0, 0, 0, 0, 0, 0, 0, 540, 540, 3316, 540, 540, 540, 3319,
|
|
/* 46028 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1819, 540, 540, 540, 540, 1360, 561, 3337, 561, 561,
|
|
/* 46048 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2646, 561, 3415, 561, 561, 561, 561, 561, 585,
|
|
/* 46069 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3115, 3428, 585, 3430, 585, 585, 585, 585,
|
|
/* 46089 */ 585, 561, 540, 561, 585, 0, 0, 0, 0, 0, 0, 2503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 336, 290, 0, 0, 0, 0,
|
|
/* 46117 */ 3555, 0, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3566, 540, 540, 561, 3064, 561, 561, 561, 561,
|
|
/* 46138 */ 561, 561, 561, 561, 561, 561, 561, 561, 2617, 561, 561, 561, 561, 561, 3608, 561, 3609, 561, 561, 561,
|
|
/* 46158 */ 561, 561, 561, 561, 585, 585, 3615, 585, 585, 585, 585, 585, 2658, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 46179 */ 585, 585, 1952, 585, 585, 585, 585, 585, 3616, 585, 585, 585, 585, 585, 585, 585, 561, 0, 0, 0, 0, 0, 0,
|
|
/* 46202 */ 540, 585, 585, 561, 540, 540, 540, 1067, 911, 561, 561, 561, 1072, 407, 353, 0, 0, 0, 0, 0, 69632, 73728,
|
|
/* 46224 */ 0, 0, 0, 0, 0, 65536, 0, 0, 0, 0, 1658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 1146, 0, 0, 472, 483,
|
|
/* 46253 */ 472, 0, 0, 472, 0, 0, 0, 0, 0, 0, 0, 0, 523, 523, 527, 527, 527, 527, 472, 472, 472, 472, 472, 477, 472,
|
|
/* 46278 */ 472, 527, 523, 527, 527, 527, 527, 539, 556, 579, 556, 579, 556, 556, 579, 556, 603, 579, 579, 579, 579,
|
|
/* 46299 */ 579, 579, 579, 603, 603, 603, 556, 603, 603, 603, 603, 603, 579, 579, 619, 624, 603, 624, 630, 1, 12290,
|
|
/* 46320 */ 3, 78112, 0, 644, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2101, 0, 738, 0, 0, 0, 644, 738, 0, 744, 745,
|
|
/* 46349 */ 644, 0, 0, 0, 0, 0, 0, 0, 0, 793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 802, 0, 807, 0, 0, 0, 0, 0, 0, 807, 0, 0,
|
|
/* 46381 */ 0, 0, 0, 644, 0, 0, 0, 802, 0, 807, 0, 793, 0, 822, 0, 0, 0, 665, 0, 0, 0, 0, 822, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 46411 */ 1134592, 0, 362, 0, 0, 0, 1134592, 0, 0, 0, 793, 793, 0, 644, 0, 0, 793, 807, 845, 0, 540, 850, 540, 540,
|
|
/* 46435 */ 540, 540, 540, 2539, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3324, 540, 540, 540, 540, 540,
|
|
/* 46456 */ 869, 873, 879, 883, 540, 540, 540, 540, 540, 899, 540, 540, 540, 540, 540, 540, 540, 3206, 540, 540, 540,
|
|
/* 46477 */ 540, 540, 540, 540, 540, 540, 2205, 540, 540, 540, 540, 540, 540, 561, 561, 920, 561, 561, 561, 561, 939,
|
|
/* 46498 */ 943, 949, 561, 954, 561, 561, 561, 561, 585, 585, 585, 585, 0, 0, 0, 0, 0, 2728, 0, 0, 1016, 1022, 585,
|
|
/* 46521 */ 1027, 585, 585, 585, 585, 585, 1044, 585, 585, 585, 585, 585, 1058, 0, 0, 0, 540, 993, 585, 561, 540, 540,
|
|
/* 46543 */ 899, 540, 540, 561, 561, 971, 561, 561, 561, 561, 561, 0, 585, 585, 993, 585, 585, 585, 585, 1012, 1149,
|
|
/* 46564 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2784, 0, 0, 0, 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1211,
|
|
/* 46596 */ 1227, 0, 0, 1099, 0, 0, 0, 1233, 0, 1235, 0, 0, 0, 0, 0, 0, 0, 3176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 46626 */ 0, 0, 1243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1249, 0, 0, 0, 0, 1670, 0, 0, 0, 0, 0, 0, 1674, 0, 0, 0, 0, 0,
|
|
/* 46657 */ 0, 743, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2753, 2754, 0, 1252, 1200, 0, 1233, 1255, 0, 1258, 0, 0, 0,
|
|
/* 46685 */ 0, 0, 1130, 0, 0, 0, 0, 0, 1597, 0, 0, 0, 1600, 0, 0, 1603, 0, 0, 0, 0, 0, 843, 0, 0, 0, 0, 0, 540, 540,
|
|
/* 46714 */ 540, 540, 540, 540, 540, 3320, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1801, 540, 540, 540, 1806,
|
|
/* 46734 */ 540, 540, 0, 1267, 0, 0, 0, 0, 0, 1267, 0, 0, 1149, 1267, 0, 1274, 540, 540, 540, 540, 1282, 540, 540,
|
|
/* 46757 */ 540, 1291, 540, 540, 540, 540, 540, 540, 540, 540, 2204, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 46777 */ 2830, 540, 540, 540, 540, 540, 540, 540, 1279, 540, 540, 540, 540, 1285, 540, 540, 540, 540, 540, 540,
|
|
/* 46797 */ 540, 540, 540, 540, 2194, 540, 540, 540, 540, 540, 540, 1306, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 46818 */ 540, 1317, 540, 540, 540, 540, 540, 2567, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2545,
|
|
/* 46838 */ 540, 540, 540, 540, 1321, 540, 540, 540, 540, 540, 540, 540, 1327, 540, 540, 540, 1334, 1336, 540, 540,
|
|
/* 46858 */ 540, 540, 1310, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1335, 540, 540, 540, 1360,
|
|
/* 46878 */ 914, 1362, 561, 561, 561, 561, 1368, 561, 561, 561, 561, 1374, 561, 561, 561, 561, 1407, 561, 561, 561,
|
|
/* 46898 */ 561, 561, 561, 561, 561, 561, 561, 561, 2293, 561, 561, 561, 561, 561, 561, 1406, 561, 561, 561, 561,
|
|
/* 46918 */ 1411, 561, 561, 561, 561, 561, 561, 561, 561, 1852, 561, 561, 561, 561, 561, 561, 561, 561, 1866, 561,
|
|
/* 46938 */ 561, 561, 561, 561, 561, 561, 1418, 561, 561, 561, 1425, 1427, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 46958 */ 561, 561, 1865, 561, 561, 561, 561, 561, 561, 561, 561, 1883, 561, 561, 561, 561, 561, 561, 561, 1459,
|
|
/* 46978 */ 585, 585, 585, 585, 1465, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1533, 585, 585, 585, 585, 585,
|
|
/* 46999 */ 1486, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1497, 585, 585, 585, 585, 585, 585, 1034, 585,
|
|
/* 47019 */ 585, 585, 585, 1052, 585, 585, 585, 561, 1502, 585, 585, 585, 585, 585, 585, 585, 585, 1509, 585, 585,
|
|
/* 47039 */ 585, 1516, 1518, 585, 585, 585, 585, 585, 2685, 585, 585, 585, 585, 2689, 585, 585, 585, 2694, 585, 561,
|
|
/* 47059 */ 0, 1290, 1544, 1470, 1379, 540, 540, 540, 540, 540, 561, 561, 561, 561, 561, 3249, 561, 3251, 561, 561,
|
|
/* 47079 */ 561, 561, 561, 561, 561, 585, 3534, 585, 3535, 585, 585, 585, 3539, 585, 0, 1575, 0, 0, 0, 1581, 0, 0, 0,
|
|
/* 47102 */ 0, 0, 0, 0, 0, 0, 0, 1632, 0, 0, 0, 0, 0, 1592, 1593, 0, 0, 0, 0, 0, 1599, 0, 0, 0, 0, 0, 0, 0, 0, 1172,
|
|
/* 47132 */ 0, 0, 0, 0, 0, 0, 0, 0, 1639, 0, 0, 0, 0, 0, 0, 0, 1647, 1648, 0, 0, 0, 0, 0, 0, 0, 2387968, 0, 0, 0, 0,
|
|
/* 47162 */ 0, 0, 0, 0, 0, 2987, 0, 0, 0, 0, 0, 2990, 0, 1655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2482, 0, 0,
|
|
/* 47193 */ 0, 1721, 0, 0, 0, 0, 0, 0, 0, 1718, 0, 0, 0, 0, 0, 0, 300, 300, 300, 300, 0, 300, 300, 300, 300, 300, 540,
|
|
/* 47220 */ 540, 540, 1747, 540, 540, 540, 540, 1753, 540, 540, 540, 540, 540, 540, 540, 540, 1817, 540, 540, 540,
|
|
/* 47240 */ 540, 540, 540, 1360, 540, 540, 540, 1764, 540, 540, 540, 540, 1768, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 47260 */ 540, 2178, 540, 540, 540, 540, 540, 540, 540, 540, 1287, 1294, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 47280 */ 540, 1779, 540, 540, 1783, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2206, 2207, 540, 540, 540,
|
|
/* 47300 */ 540, 1809, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1360, 914, 561, 561, 561,
|
|
/* 47321 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 1379, 561, 0, 1074, 585, 585, 1050, 585, 78112, 1079, 0, 0,
|
|
/* 47342 */ 0, 0, 0, 0, 0, 1106, 0, 0, 0, 0, 0, 0, 1210, 0, 561, 1845, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 47367 */ 561, 1856, 561, 561, 561, 561, 1423, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3253, 561,
|
|
/* 47387 */ 561, 561, 561, 585, 561, 1860, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 1871, 561, 561, 561, 561,
|
|
/* 47408 */ 1424, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 26027, 1920, 585, 585, 585, 585, 1876, 561,
|
|
/* 47428 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3244, 561, 561, 585, 2026, 585, 585,
|
|
/* 47449 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286720, 0, 0, 0, 0, 2079, 2080, 0, 0, 2082, 2083, 0, 0, 0, 0,
|
|
/* 47479 */ 0, 0, 0, 3176, 0, 0, 0, 0, 0, 3306, 0, 0, 0, 0, 0, 0, 2105, 0, 0, 0, 0, 2108, 2109, 0, 0, 0, 0, 0, 0, 301,
|
|
/* 47509 */ 301, 301, 301, 0, 301, 301, 301, 301, 301, 2115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2796, 0, 0,
|
|
/* 47537 */ 0, 2147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2781, 0, 0, 0, 0, 0, 2157, 0, 0, 0, 0, 0, 540, 540, 540, 540,
|
|
/* 47567 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 0, 540, 2225, 540, 540, 540, 540, 2230, 540,
|
|
/* 47588 */ 540, 540, 540, 540, 540, 540, 540, 0, 0, 0, 0, 1696, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2070, 0, 0, 0, 0, 0,
|
|
/* 47617 */ 2242, 0, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2618, 561, 561, 561, 561, 561,
|
|
/* 47638 */ 2259, 561, 561, 2263, 561, 561, 561, 2267, 561, 561, 561, 561, 561, 561, 3610, 561, 3611, 561, 561, 561,
|
|
/* 47658 */ 585, 585, 585, 585, 0, 0, 0, 2030, 0, 1082, 0, 0, 0, 2032, 585, 2344, 585, 585, 2348, 585, 585, 585, 2352,
|
|
/* 47681 */ 585, 585, 585, 585, 585, 585, 585, 1528, 585, 585, 585, 585, 585, 585, 1538, 585, 585, 585, 585, 2361,
|
|
/* 47701 */ 585, 585, 2364, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1935, 1936, 585, 585, 585, 585, 1943, 585,
|
|
/* 47721 */ 585, 2400, 585, 585, 585, 585, 585, 585, 585, 585, 561, 540, 585, 585, 561, 540, 2718, 540, 540, 0, 0, 0,
|
|
/* 47743 */ 2437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2794, 0, 0, 0, 0, 2473, 0, 0, 0, 2477, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 47774 */ 0, 0, 1685, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2501, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2511, 0, 540, 540, 2525, 540,
|
|
/* 47803 */ 540, 540, 540, 540, 540, 540, 540, 540, 2532, 540, 540, 540, 540, 1324, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 47824 */ 540, 540, 540, 540, 1330, 540, 540, 540, 540, 540, 540, 2550, 540, 540, 2552, 540, 2553, 540, 540, 540,
|
|
/* 47844 */ 540, 540, 540, 540, 540, 540, 2193, 540, 540, 2196, 540, 540, 540, 540, 2563, 540, 540, 540, 540, 540,
|
|
/* 47864 */ 540, 540, 540, 540, 540, 540, 540, 2574, 540, 540, 540, 540, 2827, 2828, 540, 540, 540, 540, 2831, 540,
|
|
/* 47884 */ 540, 540, 540, 540, 540, 540, 1751, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1351, 540, 540, 540, 540,
|
|
/* 47905 */ 540, 540, 0, 0, 0, 561, 561, 2587, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2264, 561, 561, 561,
|
|
/* 47927 */ 561, 2269, 561, 561, 561, 2594, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 47948 */ 2871, 561, 561, 2609, 561, 561, 561, 2612, 561, 561, 2614, 561, 2615, 561, 561, 561, 561, 561, 929, 561,
|
|
/* 47968 */ 937, 561, 561, 561, 561, 561, 561, 561, 561, 2629, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2623,
|
|
/* 47989 */ 561, 561, 2627, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2290, 2291, 561, 561, 561, 561, 561, 561,
|
|
/* 48009 */ 561, 0, 2327, 585, 585, 585, 585, 585, 585, 585, 1507, 585, 585, 585, 585, 585, 585, 585, 585, 561, 540,
|
|
/* 48030 */ 585, 561, 3284, 540, 3286, 561, 561, 561, 561, 2638, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 48050 */ 561, 561, 3099, 561, 561, 561, 0, 0, 2733, 2734, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3002, 0, 0, 0, 2785,
|
|
/* 48077 */ 0, 2787, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2432, 0, 0, 0, 0, 0, 0, 2800, 0, 0, 0, 0, 0, 0, 540, 540,
|
|
/* 48108 */ 540, 540, 540, 540, 540, 3217, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3042, 540, 3044, 540,
|
|
/* 48128 */ 540, 540, 540, 540, 540, 2848, 540, 540, 540, 0, 0, 561, 561, 561, 561, 561, 561, 561, 2318, 561, 561,
|
|
/* 48149 */ 561, 561, 561, 0, 0, 0, 561, 561, 2859, 561, 2862, 561, 561, 561, 561, 2867, 561, 561, 561, 2870, 561,
|
|
/* 48170 */ 561, 561, 561, 2302, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 940, 561, 561, 561, 561, 561,
|
|
/* 48191 */ 561, 561, 561, 1394, 561, 561, 561, 561, 561, 561, 561, 1402, 561, 561, 561, 2896, 561, 561, 561, 0, 0,
|
|
/* 48212 */ 585, 585, 585, 585, 585, 585, 585, 1529, 585, 585, 585, 585, 585, 585, 585, 585, 2661, 585, 585, 585, 585,
|
|
/* 48233 */ 585, 585, 585, 585, 585, 2907, 585, 2910, 585, 585, 585, 585, 2915, 585, 585, 585, 2918, 585, 585, 585,
|
|
/* 48253 */ 585, 585, 1527, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2367, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 48274 */ 585, 2944, 585, 585, 585, 561, 540, 585, 585, 561, 540, 540, 561, 561, 585, 585, 3373, 0, 0, 0, 3375, 0,
|
|
/* 48296 */ 0, 2980, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2979, 2991, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 48328 */ 0, 3005, 0, 3006, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2989, 0, 561, 561, 561, 561, 3078, 561, 561,
|
|
/* 48355 */ 561, 561, 561, 561, 561, 561, 3086, 561, 561, 561, 561, 2315, 561, 561, 561, 561, 561, 561, 561, 561, 0,
|
|
/* 48376 */ 0, 2327, 0, 0, 0, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3273, 585, 585, 585, 585, 585, 585, 561,
|
|
/* 48398 */ 561, 585, 585, 585, 3107, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1969, 585, 585, 585, 585, 585,
|
|
/* 48419 */ 585, 585, 585, 585, 3119, 585, 585, 585, 585, 585, 585, 585, 585, 3127, 585, 585, 585, 585, 585, 1901,
|
|
/* 48439 */ 540, 585, 585, 561, 540, 540, 540, 540, 561, 561, 3065, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 48460 */ 561, 3479, 585, 585, 585, 585, 585, 0, 3159, 0, 0, 0, 0, 0, 0, 0, 3165, 0, 0, 0, 0, 0, 0, 0, 3176, 0, 0,
|
|
/* 48487 */ 3304, 0, 0, 0, 0, 0, 0, 3191, 0, 0, 0, 0, 0, 0, 3195, 3196, 0, 0, 0, 0, 540, 540, 3601, 540, 3602, 540,
|
|
/* 48513 */ 540, 540, 540, 540, 540, 540, 540, 1752, 540, 540, 540, 540, 540, 540, 540, 540, 1349, 540, 540, 540, 540,
|
|
/* 48534 */ 540, 540, 540, 540, 1288, 540, 540, 540, 540, 540, 540, 540, 540, 1289, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 48555 */ 540, 1290, 540, 540, 540, 540, 1300, 540, 540, 3279, 585, 585, 585, 585, 585, 585, 585, 561, 540, 585,
|
|
/* 48575 */ 561, 540, 540, 561, 561, 561, 561, 2611, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2304, 561,
|
|
/* 48596 */ 561, 561, 561, 561, 561, 561, 561, 561, 1853, 561, 561, 561, 561, 561, 561, 540, 540, 540, 540, 3317, 540,
|
|
/* 48617 */ 540, 540, 3321, 540, 540, 540, 540, 540, 540, 540, 540, 2192, 540, 540, 540, 540, 540, 540, 2198, 561,
|
|
/* 48637 */ 561, 561, 3339, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2628, 561, 561, 561, 561, 561,
|
|
/* 48658 */ 561, 561, 561, 2305, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3348, 561, 561, 561, 585, 585, 585, 585,
|
|
/* 48679 */ 585, 3353, 585, 585, 585, 3357, 561, 561, 3572, 561, 561, 561, 561, 561, 561, 561, 561, 3580, 585, 585,
|
|
/* 48699 */ 585, 3584, 3597, 0, 3598, 3599, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3605, 3606, 540, 540, 540,
|
|
/* 48719 */ 540, 2837, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 1803, 540, 540, 540, 540, 585, 585, 585,
|
|
/* 48740 */ 585, 585, 3619, 3620, 585, 561, 0, 0, 3623, 0, 0, 0, 540, 585, 585, 561, 540, 540, 895, 540, 540, 561,
|
|
/* 48762 */ 561, 967, 561, 561, 3671, 585, 3672, 0, 540, 561, 585, 0, 540, 561, 585, 0, 540, 561, 585, 585, 585, 585,
|
|
/* 48784 */ 585, 1079, 1559, 0, 0, 0, 1565, 0, 0, 0, 1571, 2033, 0, 0, 0, 0, 1577, 2035, 0, 0, 0, 0, 0, 0, 0, 1682, 0,
|
|
/* 48811 */ 1684, 0, 0, 0, 0, 0, 0, 0, 1712, 0, 0, 1715, 0, 0, 0, 0, 0, 355, 356, 0, 0, 0, 0, 0, 0, 0, 362, 0, 290, 0,
|
|
/* 48841 */ 0, 0, 0, 0, 0, 2762, 0, 0, 0, 0, 0, 0, 0, 2768, 0, 0, 0, 0, 389, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3198,
|
|
/* 48873 */ 0, 540, 540, 473, 473, 487, 0, 0, 487, 356, 356, 356, 509, 356, 356, 356, 356, 473, 473, 580, 580, 580,
|
|
/* 48895 */ 580, 580, 580, 580, 604, 604, 604, 557, 604, 604, 604, 604, 604, 580, 580, 557, 580, 604, 580, 604, 1,
|
|
/* 48916 */ 12290, 3, 78112, 540, 870, 540, 540, 540, 540, 540, 540, 540, 540, 540, 904, 540, 540, 540, 540, 540, 540,
|
|
/* 48937 */ 2191, 540, 540, 540, 540, 2195, 540, 2197, 540, 540, 561, 561, 976, 561, 561, 561, 561, 0, 585, 585, 585,
|
|
/* 48958 */ 585, 585, 585, 585, 1013, 1197, 0, 0, 0, 0, 0, 0, 0, 1197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540, 540,
|
|
/* 48986 */ 540, 540, 540, 540, 540, 540, 1360, 914, 561, 561, 561, 561, 561, 561, 561, 561, 1371, 561, 561, 561,
|
|
/* 49006 */ 1380, 561, 561, 561, 561, 2639, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2644, 561, 561,
|
|
/* 49026 */ 561, 561, 585, 585, 585, 1462, 585, 585, 585, 1471, 585, 585, 585, 585, 585, 585, 585, 585, 1472, 585,
|
|
/* 49046 */ 1477, 585, 585, 1481, 585, 585, 1541, 561, 0, 1291, 585, 1471, 1380, 540, 540, 540, 540, 540, 561, 561,
|
|
/* 49066 */ 561, 561, 585, 585, 585, 585, 0, 0, 0, 0, 2727, 0, 0, 0, 0, 0, 1576, 0, 0, 0, 1582, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 49094 */ 0, 0, 2737, 0, 0, 0, 0, 0, 2741, 0, 1607, 0, 0, 0, 0, 0, 0, 0, 1615, 1616, 0, 0, 0, 0, 0, 0, 303, 204800,
|
|
/* 49122 */ 204800, 0, 205103, 204800, 1, 12290, 3, 0, 1761, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 49142 */ 540, 540, 540, 1774, 1891, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 49162 */ 3087, 561, 561, 561, 561, 1911, 561, 561, 561, 561, 561, 561, 26027, 0, 585, 585, 585, 585, 585, 585,
|
|
/* 49182 */ 1466, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2928, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 49203 */ 1947, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2001, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 49223 */ 1960, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1973, 0, 0, 2243, 561, 561, 561, 561, 561,
|
|
/* 49244 */ 561, 561, 561, 561, 561, 561, 561, 561, 2634, 561, 561, 2328, 585, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 49265 */ 585, 585, 585, 585, 585, 585, 2384, 0, 0, 0, 0, 2425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2085, 2086, 0, 0,
|
|
/* 49292 */ 0, 0, 2449, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3175, 0, 0, 0, 0, 561, 561, 561, 561, 561, 561,
|
|
/* 49320 */ 2590, 561, 561, 561, 561, 561, 561, 2289, 561, 561, 561, 561, 561, 561, 561, 561, 561, 2292, 561, 561,
|
|
/* 49340 */ 561, 561, 561, 561, 561, 561, 561, 2861, 561, 2863, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 49360 */ 2877, 561, 561, 561, 561, 561, 561, 561, 561, 1899, 561, 561, 561, 561, 561, 1905, 561, 585, 585, 585,
|
|
/* 49380 */ 2909, 585, 2911, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1984, 585, 585, 585, 585, 585, 585,
|
|
/* 49400 */ 585, 3360, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1056, 585, 561, 0, 3556, 540,
|
|
/* 49421 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 3567, 540, 561, 561, 561, 561, 2876, 561, 561, 561, 561,
|
|
/* 49442 */ 561, 561, 561, 561, 561, 561, 561, 26027, 0, 585, 585, 585, 585, 561, 561, 561, 561, 3656, 561, 585, 585,
|
|
/* 49463 */ 585, 585, 3660, 585, 0, 0, 0, 0, 0, 0, 2775, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2124, 0, 0, 0, 0, 0, 0, 0, 0, 357,
|
|
/* 49493 */ 0, 0, 0, 0, 0, 0, 362, 0, 290, 0, 0, 0, 0, 0, 0, 2790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1147354, 0, 0, 0, 0,
|
|
/* 49524 */ 0, 0, 0, 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2509, 0, 0, 357, 0, 367, 0, 0, 367, 0, 0, 0, 0, 0, 0,
|
|
/* 49556 */ 0, 0, 0, 0, 0, 0, 0, 2457, 0, 0, 581, 581, 581, 581, 581, 581, 581, 605, 605, 605, 558, 605, 605, 605,
|
|
/* 49580 */ 605, 605, 581, 581, 558, 581, 605, 581, 605, 1, 12290, 3, 78112, 865, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 49601 */ 540, 540, 540, 540, 540, 540, 540, 540, 2575, 1385, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 49622 */ 561, 561, 561, 561, 3243, 561, 1775, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 49643 */ 540, 3047, 585, 585, 585, 585, 1961, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2380, 585,
|
|
/* 49663 */ 585, 585, 585, 2756, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3315, 0, 2981, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 49693 */ 0, 0, 0, 0, 0, 0, 3188, 0, 3298, 0, 3299, 0, 0, 0, 0, 3176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3388, 0, 0, 0, 0,
|
|
/* 49723 */ 358, 359, 360, 361, 0, 0, 362, 0, 290, 0, 0, 0, 0, 0, 0, 2973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 362,
|
|
/* 49751 */ 702, 0, 0, 0, 0, 359, 0, 358, 0, 0, 0, 69632, 73728, 0, 0, 0, 0, 425, 65536, 0, 0, 0, 0, 1710, 1711, 0, 0,
|
|
/* 49778 */ 0, 1714, 0, 0, 0, 0, 0, 1718, 425, 425, 0, 425, 0, 359, 425, 0, 456, 0, 0, 0, 0, 0, 0, 0, 1102, 0, 0, 0,
|
|
/* 49806 */ 0, 1263, 1264, 0, 0, 0, 0, 0, 497, 497, 0, 504, 504, 504, 504, 510, 511, 504, 504, 524, 524, 524, 524,
|
|
/* 49829 */ 456, 456, 456, 456, 456, 456, 456, 456, 524, 524, 524, 524, 524, 524, 524, 559, 582, 559, 582, 559, 559,
|
|
/* 49850 */ 582, 559, 606, 582, 582, 582, 582, 582, 582, 582, 606, 606, 606, 559, 606, 606, 606, 606, 606, 582, 582,
|
|
/* 49871 */ 620, 625, 606, 625, 631, 1, 12290, 3, 78112, 0, 0, 0, 540, 585, 585, 561, 540, 540, 900, 540, 540, 561,
|
|
/* 49893 */ 561, 972, 561, 561, 561, 561, 561, 0, 585, 585, 585, 585, 585, 585, 585, 585, 1934, 585, 585, 585, 585,
|
|
/* 49914 */ 585, 585, 585, 0, 0, 2104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2740, 0, 0, 0, 0, 0, 561, 2245, 561,
|
|
/* 49942 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3533, 585, 585, 585, 585, 585, 585, 585, 585, 585, 3494,
|
|
/* 49963 */ 561, 0, 0, 0, 0, 0, 0, 585, 2330, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 1482,
|
|
/* 49986 */ 585, 585, 540, 2549, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2237, 0, 540,
|
|
/* 50007 */ 540, 2577, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 0, 0, 0, 0, 0, 1611, 0, 0, 1614, 0, 0, 0, 0,
|
|
/* 50032 */ 0, 0, 0, 443, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2891776, 0, 0, 0, 0, 0, 2392064, 583, 583, 583, 583, 583, 583,
|
|
/* 50058 */ 583, 607, 607, 607, 560, 607, 607, 607, 607, 607, 583, 583, 560, 583, 607, 583, 607, 1, 12290, 3, 78112,
|
|
/* 50079 */ 705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155648, 866, 540, 540, 540, 540, 540, 540, 540, 540,
|
|
/* 50105 */ 540, 540, 540, 540, 540, 540, 540, 3224, 1136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 0, 0, 0, 0, 0,
|
|
/* 50131 */ 1659, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 780, 0, 0, 0, 0, 786, 561, 585, 585, 585, 585, 585, 1079, 1560, 0, 0,
|
|
/* 50158 */ 0, 1566, 0, 0, 0, 1572, 0, 0, 0, 1578, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3313, 0, 0, 540, 2199, 540,
|
|
/* 50186 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2547, 540, 2535, 540, 540, 540, 540,
|
|
/* 50207 */ 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, 2822, 540, 561, 561, 561, 2597, 561, 561, 561, 561,
|
|
/* 50228 */ 561, 561, 561, 561, 561, 561, 561, 561, 2317, 561, 561, 2320, 2321, 561, 561, 0, 0, 0, 0, 0, 0, 647, 0, 0,
|
|
/* 50252 */ 0, 0, 0, 0, 743, 540, 540, 540, 540, 540, 540, 540, 3331, 540, 540, 561, 561, 561, 561, 561, 561, 561,
|
|
/* 50274 */ 561, 561, 561, 3072, 561, 561, 561, 0, 0, 0, 540, 585, 585, 561, 1064, 540, 540, 905, 540, 1069, 561, 561,
|
|
/* 50296 */ 977, 561, 561, 561, 561, 0, 585, 585, 585, 585, 585, 585, 585, 585, 1951, 585, 585, 585, 585, 585, 585,
|
|
/* 50317 */ 585, 0, 0, 1594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2767, 0, 0, 561, 561, 1846, 561, 561, 561, 561,
|
|
/* 50344 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 2645, 561, 561, 585, 585, 585, 1977, 585, 585, 585, 585, 585,
|
|
/* 50365 */ 585, 585, 585, 585, 585, 585, 585, 2692, 585, 585, 585, 540, 540, 540, 2188, 540, 2190, 540, 540, 540,
|
|
/* 50385 */ 540, 540, 540, 540, 540, 540, 540, 561, 561, 561, 3334, 561, 561, 0, 0, 0, 561, 561, 561, 2247, 561, 561,
|
|
/* 50407 */ 561, 561, 561, 561, 561, 561, 561, 2613, 561, 561, 561, 561, 561, 561, 561, 2619, 561, 561, 2273, 561,
|
|
/* 50427 */ 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 561, 3242, 561, 561, 0, 585, 585, 585, 2332,
|
|
/* 50448 */ 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2408, 540, 585, 585, 561, 561, 2647, 0, 0, 0, 0, 0,
|
|
/* 50471 */ 0, 585, 585, 585, 585, 585, 585, 585, 585, 2687, 585, 585, 2691, 585, 585, 585, 585, 585, 585, 585, 585,
|
|
/* 50492 */ 2684, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 585, 2916, 585, 585, 585, 585, 561, 561, 585, 585,
|
|
/* 50513 */ 585, 585, 585, 3109, 585, 585, 585, 585, 585, 585, 585, 585, 2702, 585, 585, 585, 585, 585, 585, 585, 0,
|
|
/* 50534 */ 1134592, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225706, 0, 0, 1134592, 0, 0, 0, 1134592, 1134592, 0, 0,
|
|
/* 50560 */ 1134592, 0, 0, 1134592, 0, 1134592, 0, 0, 0, 1134592, 1135005, 1135005, 0, 0, 0, 0, 0, 1135005, 0,
|
|
/* 50579 */ 1134592, 1134592, 0, 0, 0, 0, 1135202, 1135202, 1135202, 1135202, 1134592, 1135202, 1135202, 1135202,
|
|
/* 50593 */ 1135202, 1135202, 0, 1134592, 1134592, 1134592, 1134592, 1135202, 1134592, 1135202, 1, 12290, 3, 0, 0, 0,
|
|
/* 50609 */ 0, 2134016, 0, 0, 0, 0, 0, 0, 0, 0, 1138688, 0, 0, 0, 0, 0, 1670, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 50637 */ 2125824, 2126738, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824,
|
|
/* 50648 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 2125824, 2125824, 2125824, 2125824,
|
|
/* 50661 */ 2424832, 2433024, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0, 987,
|
|
/* 50674 */ 2125824, 2125824, 2125824, 2125824, 2424832, 1147354, 1147354, 1147354, 1147354, 1147354, 1147354,
|
|
/* 50685 */ 1147354, 1147354, 1147354, 1147354, 1147354, 1147354, 1147354, 1147354, 1147354, 1147354, 457, 457,
|
|
/* 50697 */ 1147354, 457, 457, 457, 457, 457, 457, 457, 457, 1147405, 1147405, 1147405, 1147405, 1147405, 1147405,
|
|
/* 50712 */ 1147405, 1147405, 1147405, 1147405, 1147405, 1147405, 1147405, 1147405, 1147405, 1147405, 1147405,
|
|
/* 50723 */ 1147405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2792, 0, 0, 0, 0, 0, 0, 457, 0, 0, 0, 1147354, 1147354, 1147354,
|
|
/* 50747 */ 1147405, 1147405, 1147354, 1147405, 1147405, 1, 12290, 3, 0, 0, 0, 0, 2042, 0, 0, 2045, 2046, 0, 0, 0,
|
|
/* 50767 */ 2050, 0, 0, 0, 0, 0, 680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1221, 0, 0, 0, 0, 0, 0, 1142784, 0, 2179072,
|
|
/* 50794 */ 2125824, 2125824, 2125824, 2179072, 2179072, 2179072, 2179072, 2179072, 2125824, 2125824, 2125824,
|
|
/* 50805 */ 2125824, 2125824, 2125824, 2125824, 3137536, 2125824, 2940928, 2940928, 2940928, 0, 0, 0, 0, 0, 0, 305,
|
|
/* 50821 */ 440, 448, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 462, 1159168, 0, 0,
|
|
/* 50842 */ 1159168, 0, 1159168, 1159168, 0, 1159168, 0, 1159168, 1159168, 1159168, 1159168, 1159168, 1159168,
|
|
/* 50855 */ 1159168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2802, 0, 540, 540, 540, 540, 540, 1159168, 1159168, 0, 1159168,
|
|
/* 50876 */ 1159168, 0, 1159168, 1159168, 1159168, 1159168, 1159168, 1159168, 1159168, 1159168, 1159168, 1159168,
|
|
/* 50888 */ 1159168, 1159168, 1159168, 1159168, 1159168, 1159168, 0, 1159168, 1159168, 0, 1159168, 1159168, 1159168,
|
|
/* 50901 */ 1159168, 1159168, 1159168, 1159168, 1159168, 1, 12290, 3, 0, 0, 0, 0, 2053, 0, 2054, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 50923 */ 0, 0, 799, 0, 799, 0, 0, 0, 0, 0, 0, 0, 2134016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1163264, 0, 0, 0, 0, 0,
|
|
/* 50951 */ 155648, 155648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 0, 913, 2125824, 2125824, 2125824,
|
|
/* 50974 */ 2125824, 2424832, 2433024, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 2125824, 0, 0,
|
|
/* 50987 */ 1452, 2125824, 2125824, 2125824, 2125824, 2424832, 106496, 0, 106496, 106496, 0, 106496, 106496, 106496,
|
|
/* 51001 */ 106496, 106496, 106496, 106496, 106496, 106496, 106496, 106496, 106496, 106496, 106496, 106496, 106496, 0,
|
|
/* 51015 */ 0, 106496, 0, 106496, 106496, 106496, 106496, 106496, 106496, 106496, 106496, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
/* 51035 */ 0, 2183168, 0, 0, 0, 0, 0, 0, 0, 0, 2134016, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2782, 2783, 0, 0, 0,
|
|
/* 51064 */ 0, 3117056, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163840, 0, 0, 0, 0, 3043328, 0, 3149824, 2936832, 0,
|
|
/* 51088 */ 2760704, 0, 0, 0, 0, 0, 2953216, 0, 0, 2826240, 2875392, 0, 0, 0, 0, 0, 0, 2834432, 0, 3227648, 2568192,
|
|
/* 51109 */ 0, 0, 0, 0, 2564096, 0, 2748416, 2879488, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2179072, 2179072, 2179072,
|
|
/* 51130 */ 3137536, 2125824, 2125824, 2498560, 2125824, 2125824, 2125824, 2555904, 2564096, 2125824, 2125824,
|
|
/* 51141 */ 2125824, 2125824, 2125824, 2125824, 2125824, 2654208, 2678784, 2760704, 2764800, 2785280, 2854912,
|
|
/* 51152 */ 2969600, 2125824, 3006464, 2125824, 3018752, 2125824, 2125824
|
|
];
|
|
|
|
XQueryParser.EXPECTED =
|
|
[
|
|
/* 0 */ 260, 268, 276, 283, 296, 304, 881, 312, 318, 331, 366, 339, 350, 361, 369, 342, 288, 886, 1555, 1545, 377,
|
|
/* 21 */ 384, 1551, 392, 400, 415, 423, 431, 439, 447, 455, 463, 486, 553, 490, 500, 500, 499, 498, 500, 500, 500,
|
|
/* 42 */ 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 353, 1871, 509, 517, 525, 1149,
|
|
/* 63 */ 688, 533, 1759, 407, 548, 949, 561, 323, 569, 1480, 1303, 866, 577, 1034, 592, 596, 1439, 1444, 604, 1857,
|
|
/* 83 */ 628, 636, 644, 1919, 1049, 652, 673, 660, 668, 681, 696, 995, 710, 718, 731, 1324, 739, 761, 1116, 776,
|
|
/* 103 */ 784, 792, 1170, 1200, 1204, 807, 843, 851, 859, 894, 902, 910, 723, 918, 926, 934, 942, 753, 957, 1568,
|
|
/* 123 */ 965, 980, 611, 988, 1738, 1003, 1011, 616, 1185, 1827, 871, 1539, 1029, 1042, 1418, 584, 1424, 972, 1057,
|
|
/* 142 */ 1065, 1073, 1598, 1087, 1095, 1103, 1111, 1134, 1142, 768, 478, 1163, 1289, 620, 1155, 1178, 876, 1620,
|
|
/* 160 */ 1643, 1193, 702, 1812, 799, 1789, 1212, 1753, 1218, 1226, 1234, 1242, 500, 1250, 1258, 828, 1266, 1274,
|
|
/* 178 */ 1282, 1297, 1850, 1311, 1319, 1332, 1079, 540, 1345, 1017, 1337, 1359, 1021, 1367, 1375, 1390, 1398, 1403,
|
|
/* 196 */ 1411, 1432, 1452, 1460, 1468, 1476, 1488, 1496, 1382, 1516, 1524, 1532, 1563, 1576, 746, 1584, 1592, 1502,
|
|
/* 214 */ 1606, 1614, 814, 1628, 1636, 469, 821, 1661, 1665, 1673, 1678, 1686, 1694, 1702, 1710, 1718, 501, 1726,
|
|
/* 232 */ 1734, 1746, 1767, 1775, 1783, 1351, 1126, 1797, 1805, 1121, 835, 1820, 474, 1835, 1843, 1865, 1508, 1879,
|
|
/* 250 */ 1649, 1653, 1887, 1892, 1900, 1908, 1916, 500, 500, 1927, 1975, 1928, 1939, 1939, 1939, 1934, 1938, 1939,
|
|
/* 268 */ 1930, 1943, 1950, 1946, 1954, 1958, 1961, 1964, 1968, 1972, 1979, 2007, 2007, 2007, 3094, 2007, 1983, 3521,
|
|
/* 286 */ 2007, 2812, 2007, 2007, 2007, 2007, 2779, 2007, 2007, 2132, 2007, 4152, 3820, 3824, 1987, 2098, 1994, 2000,
|
|
/* 304 */ 2006, 2007, 2007, 3996, 2007, 2007, 2012, 4079, 3820, 3824, 3824, 3824, 3824, 2019, 2097, 2097, 2026, 2170,
|
|
/* 322 */ 2032, 2007, 2007, 2007, 2007, 2919, 2007, 2428, 3887, 2007, 3734, 2038, 2089, 2007, 2007, 2007, 3390, 3824,
|
|
/* 340 */ 3824, 2045, 2097, 2097, 2097, 2097, 2097, 2099, 1996, 2067, 2059, 2063, 2003, 2007, 2007, 2007, 2007, 2007,
|
|
/* 358 */ 2259, 3005, 2007, 3049, 2007, 2007, 2007, 3818, 3820, 3820, 3820, 3820, 2133, 3824, 3824, 3824, 3824, 3824,
|
|
/* 376 */ 2055, 3820, 2139, 3824, 3824, 3824, 3827, 2097, 2097, 2022, 2072, 2007, 2007, 4080, 2007, 2162, 2077, 2007,
|
|
/* 394 */ 2007, 2779, 3400, 3820, 3820, 2053, 3824, 3825, 2097, 2097, 2084, 2072, 2088, 4151, 2385, 2007, 2007, 2007,
|
|
/* 412 */ 2007, 3112, 2752, 3820, 2052, 3824, 2095, 2097, 2104, 2778, 2050, 3823, 2095, 2115, 2129, 3821, 3826, 1989,
|
|
/* 430 */ 3390, 3822, 3827, 1990, 2137, 2141, 2149, 3819, 2141, 2159, 2167, 2048, 2174, 2028, 2181, 2184, 2188, 2192,
|
|
/* 448 */ 2202, 2202, 2193, 2197, 2201, 2203, 2207, 2211, 2215, 2219, 2222, 2226, 2230, 2234, 2238, 2732, 2242, 2007,
|
|
/* 466 */ 2007, 2737, 2247, 2007, 2007, 2007, 3028, 4134, 2007, 2007, 2007, 3213, 2007, 2007, 2007, 2007, 2702, 3310,
|
|
/* 484 */ 2007, 3694, 2243, 2007, 4531, 2253, 2007, 2007, 2007, 2007, 2007, 4488, 2007, 2007, 2007, 4489, 2007, 2007,
|
|
/* 502 */ 2007, 2007, 2007, 2007, 2007, 2007, 4297, 2280, 2282, 2286, 2289, 2293, 2297, 2301, 2662, 2386, 2007, 2007,
|
|
/* 520 */ 2007, 2007, 2387, 2307, 2314, 2318, 4376, 4208, 2325, 2681, 3075, 3584, 2645, 2353, 2359, 2620, 2007, 2007,
|
|
/* 538 */ 2381, 2363, 2007, 2007, 3675, 2007, 3534, 4411, 3291, 4070, 3348, 2391, 2007, 2395, 2399, 2007, 2007, 2007,
|
|
/* 556 */ 2007, 3092, 3298, 2007, 2007, 2402, 2007, 2007, 2007, 3382, 2007, 2007, 2418, 3423, 2432, 2007, 2007, 2007,
|
|
/* 574 */ 2007, 2797, 2433, 2797, 2457, 2007, 2007, 2007, 2007, 2463, 2007, 2007, 3716, 3131, 2917, 2007, 2007, 3777,
|
|
/* 592 */ 4457, 4344, 2470, 2007, 2007, 2007, 2477, 2007, 2007, 2007, 2484, 2007, 2107, 3702, 2007, 3700, 2493, 2007,
|
|
/* 610 */ 2111, 2007, 2007, 3723, 3037, 2007, 2007, 2007, 2090, 3072, 2007, 2007, 2007, 2007, 2261, 3346, 2007, 2007,
|
|
/* 628 */ 2500, 2007, 2505, 4255, 4115, 4254, 2007, 4238, 2510, 4117, 3651, 3491, 2511, 4118, 4239, 4255, 3650, 4117,
|
|
/* 646 */ 2516, 4116, 4117, 3593, 3670, 3596, 2528, 2531, 2535, 2538, 2542, 2007, 3509, 2620, 4365, 4173, 2562, 2566,
|
|
/* 664 */ 2570, 2007, 2674, 2672, 3782, 2574, 2007, 3457, 2579, 2007, 2501, 2007, 4424, 3255, 2555, 2588, 4214, 4424,
|
|
/* 682 */ 4450, 2584, 2592, 2599, 3102, 4176, 2007, 2007, 3778, 2008, 2342, 4482, 2348, 4126, 4353, 2007, 2007, 2007,
|
|
/* 700 */ 2721, 2607, 2007, 2007, 2007, 3379, 2007, 2007, 2007, 3480, 2619, 2007, 4362, 2007, 4150, 4231, 2625, 4223,
|
|
/* 718 */ 2632, 2636, 2007, 4444, 2654, 2007, 2007, 2007, 2007, 3897, 2007, 2007, 4225, 2675, 2642, 2007, 2007, 2007,
|
|
/* 736 */ 2007, 4443, 2653, 4024, 2007, 4424, 4341, 2118, 4304, 2679, 2007, 2007, 3794, 2734, 2268, 4056, 2403, 2007,
|
|
/* 754 */ 2007, 3896, 2007, 2655, 2910, 4541, 3011, 2685, 2775, 2007, 2007, 2007, 3576, 2686, 2007, 2007, 4010, 3290,
|
|
/* 772 */ 2007, 2007, 3151, 3295, 3238, 2007, 2697, 2007, 3451, 2403, 4245, 2586, 4285, 2701, 3577, 2715, 2007, 2007,
|
|
/* 790 */ 2007, 3620, 2706, 2007, 2007, 2007, 2007, 2713, 2775, 2007, 2007, 4082, 3399, 2007, 2007, 4082, 3399, 2741,
|
|
/* 808 */ 2769, 2855, 2774, 2007, 3410, 2751, 2007, 2007, 4104, 2007, 2007, 2007, 2007, 2506, 4140, 4109, 4114, 3788,
|
|
/* 826 */ 2803, 4147, 2007, 2007, 4385, 3699, 2007, 3534, 4411, 2007, 2041, 4469, 4448, 2007, 2007, 2007, 2709, 3410,
|
|
/* 844 */ 2751, 2702, 2784, 3450, 4048, 2121, 2770, 3436, 2007, 3434, 3438, 2007, 2791, 2007, 2795, 2801, 2328, 2810,
|
|
/* 862 */ 2787, 2452, 2816, 2453, 2007, 2443, 2450, 2424, 2465, 2007, 2007, 2007, 2007, 3098, 2007, 2007, 2007, 2007,
|
|
/* 880 */ 3372, 2007, 2007, 2007, 2007, 3389, 3820, 3820, 3820, 2163, 3824, 3824, 3824, 3824, 4039, 2821, 2787, 2832,
|
|
/* 898 */ 2786, 3985, 2838, 2843, 4030, 3312, 2839, 2844, 4031, 4431, 2848, 2834, 2852, 2859, 2860, 2177, 2864, 3301,
|
|
/* 916 */ 4460, 4463, 2871, 4547, 2875, 2879, 2883, 2886, 2890, 2894, 2897, 2899, 2900, 2007, 2007, 2904, 2007, 3808,
|
|
/* 934 */ 2910, 4541, 3081, 2914, 2007, 2007, 2924, 2928, 2937, 2944, 2952, 2961, 2968, 3274, 2970, 2007, 2473, 2408,
|
|
/* 952 */ 2007, 2007, 2007, 2007, 2414, 3024, 2007, 2495, 2976, 2980, 4495, 4081, 2986, 2999, 2007, 2007, 2007, 2007,
|
|
/* 970 */ 2007, 3335, 2007, 2489, 2007, 3285, 2007, 3286, 2007, 3109, 2656, 3009, 3015, 3021, 3139, 2007, 4251, 2344,
|
|
/* 988 */ 3032, 2007, 2007, 2007, 2007, 3722, 3036, 2007, 2612, 2007, 2007, 3782, 2574, 2007, 3508, 4541, 3046, 3053,
|
|
/* 1006 */ 2702, 3058, 2007, 2007, 3062, 3067, 2007, 2007, 2007, 2007, 3063, 2007, 2007, 2007, 3691, 2007, 2007, 2007,
|
|
/* 1024 */ 2007, 2338, 3741, 2007, 2007, 3119, 2007, 2007, 2007, 3125, 2007, 2007, 2007, 2550, 4047, 2007, 2007, 2920,
|
|
/* 1042 */ 3125, 2007, 2007, 3428, 4501, 2355, 3026, 2007, 2615, 2654, 4143, 3807, 3464, 2520, 2524, 3111, 2918, 2007,
|
|
/* 1060 */ 3114, 3109, 3780, 3113, 3150, 3110, 3781, 3147, 4236, 3779, 2920, 3137, 2919, 2920, 3489, 4183, 3144, 3155,
|
|
/* 1078 */ 2155, 2007, 2007, 2007, 4522, 3741, 2007, 3667, 2007, 3121, 3163, 3167, 3171, 3175, 3179, 3183, 3187, 3191,
|
|
/* 1096 */ 2007, 2007, 2817, 3354, 2007, 2765, 3195, 3974, 3201, 3218, 4237, 3222, 3226, 3236, 4136, 3242, 3713, 3038,
|
|
/* 1114 */ 3248, 3246, 2007, 2007, 2007, 2575, 2690, 2007, 2007, 2007, 2007, 4428, 2007, 2007, 2007, 2249, 4402, 4409,
|
|
/* 1132 */ 2007, 2007, 3231, 3253, 2007, 2765, 3195, 3974, 3259, 3475, 4398, 3265, 3269, 3278, 2007, 2007, 3282, 2007,
|
|
/* 1150 */ 2647, 2638, 3815, 3004, 2336, 2007, 2007, 2007, 3352, 2007, 2765, 3195, 2780, 3316, 2068, 3260, 3320, 3417,
|
|
/* 1168 */ 3327, 3333, 2007, 2719, 3457, 2007, 2725, 2730, 2741, 4471, 3360, 3364, 3407, 2007, 2007, 2007, 3368, 2007,
|
|
/* 1186 */ 2736, 3608, 3079, 3085, 3140, 2702, 4437, 3054, 3399, 2007, 2007, 2007, 4081, 3398, 2007, 2745, 2007, 2007,
|
|
/* 1204 */ 3576, 2749, 2007, 2007, 2719, 2756, 2763, 3971, 3448, 2007, 2007, 3455, 2007, 2007, 3455, 2007, 2255, 2007,
|
|
/* 1222 */ 3975, 3472, 3484, 2007, 3497, 2971, 3449, 2972, 2007, 3503, 3273, 4555, 4530, 4554, 3513, 4094, 4553, 3271,
|
|
/* 1240 */ 4553, 4095, 4554, 3272, 4093, 4528, 3271, 3515, 4528, 4529, 2007, 4379, 2620, 3519, 2007, 3525, 4151, 3529,
|
|
/* 1258 */ 3538, 3542, 3546, 3550, 3554, 3558, 3562, 3566, 2828, 3729, 2918, 2410, 4192, 3571, 3230, 4556, 3575, 3581,
|
|
/* 1276 */ 3356, 3619, 3590, 2007, 2007, 4378, 3676, 2007, 3534, 4488, 2007, 2948, 3600, 2007, 2867, 3355, 2007, 2007,
|
|
/* 1294 */ 2007, 2007, 3339, 4185, 3612, 2007, 2007, 2580, 3618, 2007, 2007, 2549, 2551, 2386, 2007, 2007, 3132, 3630,
|
|
/* 1312 */ 2007, 2007, 2608, 3641, 2007, 3647, 4412, 2007, 3655, 3866, 3249, 3663, 2007, 2007, 2007, 2660, 2007, 2007,
|
|
/* 1330 */ 2666, 2007, 4405, 2007, 2007, 2007, 2007, 2337, 3687, 2007, 2594, 3230, 4081, 3698, 2007, 2805, 3682, 2007,
|
|
/* 1348 */ 2007, 2007, 3686, 2007, 2007, 2824, 2007, 2007, 2007, 2007, 2826, 4487, 2995, 2957, 2349, 3606, 2007, 2007,
|
|
/* 1366 */ 3706, 2007, 4081, 3710, 2007, 2595, 2007, 3720, 4485, 2946, 3727, 3068, 3733, 2007, 3738, 2620, 2007, 2940,
|
|
/* 1384 */ 2777, 3753, 3945, 3949, 3954, 3868, 2007, 3747, 2620, 2007, 2007, 3747, 2620, 3751, 2378, 2034, 3757, 3764,
|
|
/* 1402 */ 3636, 2007, 4288, 2007, 2007, 4288, 3428, 3769, 2466, 2015, 3765, 3773, 2007, 3786, 2007, 3127, 2007, 2954,
|
|
/* 1420 */ 2007, 2007, 3775, 2007, 2007, 3775, 2007, 2007, 2956, 2007, 2548, 2459, 2007, 3792, 3751, 3798, 3760, 3637,
|
|
/* 1438 */ 2602, 2007, 3149, 4508, 2110, 2488, 2007, 3701, 2494, 2007, 2007, 4046, 2007, 3780, 2603, 2007, 3802, 3806,
|
|
/* 1456 */ 3812, 3837, 4356, 3836, 3831, 2331, 3835, 3677, 3841, 2332, 3836, 3678, 4221, 3854, 3848, 4359, 3847, 3845,
|
|
/* 1474 */ 3852, 3877, 3863, 3874, 3881, 3884, 2007, 2007, 2007, 2007, 2480, 2437, 2007, 2007, 2964, 2776, 2007, 3893,
|
|
/* 1492 */ 3901, 3905, 3909, 3913, 3917, 3921, 3925, 3929, 3933, 3937, 2007, 2007, 2982, 4068, 4074, 4253, 2007, 2007,
|
|
/* 1510 */ 3212, 4493, 2007, 2007, 2007, 2248, 3959, 3964, 3968, 4202, 3979, 3983, 3989, 3950, 2007, 4000, 4007, 4014,
|
|
/* 1528 */ 2007, 2007, 2963, 2421, 3753, 4019, 4023, 2040, 3626, 4028, 4035, 2007, 3229, 3106, 3743, 3026, 2726, 2007,
|
|
/* 1546 */ 2007, 2007, 4080, 2007, 4152, 3820, 3820, 2054, 3824, 3824, 2096, 2097, 2097, 2097, 2097, 2100, 2143, 4043,
|
|
/* 1564 */ 2007, 2007, 3205, 3209, 2007, 2007, 2007, 2990, 2994, 2007, 2007, 2248, 3207, 2007, 2007, 2007, 3197, 4052,
|
|
/* 1582 */ 2310, 4253, 4060, 2669, 2007, 4114, 2007, 2007, 2007, 2628, 3210, 2007, 2007, 2007, 2506, 4064, 2007, 2007,
|
|
/* 1600 */ 3232, 3254, 3975, 2007, 4119, 3159, 2962, 4078, 3753, 4086, 2404, 2007, 4090, 2620, 4114, 2007, 2007, 2007,
|
|
/* 1618 */ 4099, 2620, 2007, 2007, 3376, 2007, 2007, 2007, 2007, 2933, 4100, 4108, 4113, 2007, 2439, 4123, 3603, 4423,
|
|
/* 1636 */ 2007, 3870, 3133, 2007, 2007, 2007, 4130, 2007, 3386, 2068, 4158, 3394, 3506, 2007, 2007, 2007, 4526, 2007,
|
|
/* 1654 */ 2007, 2007, 4526, 2007, 3992, 2370, 4535, 4156, 2920, 2007, 2007, 4162, 2007, 2007, 2007, 4162, 2558, 2007,
|
|
/* 1672 */ 4166, 4170, 2007, 4180, 2007, 2007, 4189, 2007, 2007, 4196, 4200, 4206, 4212, 3859, 4218, 2007, 2693, 2007,
|
|
/* 1690 */ 2007, 4229, 2007, 3586, 2152, 2145, 4235, 3487, 2007, 4243, 3642, 2775, 3643, 4249, 4440, 2806, 3659, 4259,
|
|
/* 1708 */ 4264, 3657, 3857, 3940, 2080, 3658, 3858, 3941, 4274, 3939, 3857, 4278, 3856, 3857, 4282, 3017, 4292, 4293,
|
|
/* 1726 */ 4270, 2321, 4301, 4003, 4311, 4315, 4319, 4323, 4327, 4330, 4334, 4338, 2007, 2007, 2007, 2007, 2621, 3230,
|
|
/* 1744 */ 3492, 3042, 4267, 3478, 2931, 3955, 4350, 4514, 4396, 3306, 3462, 3468, 3444, 2007, 4516, 2007, 2007, 2446,
|
|
/* 1762 */ 2007, 2007, 2007, 2759, 2375, 3002, 4369, 4307, 2007, 4015, 2007, 2546, 2544, 4373, 4383, 2007, 2007, 2007,
|
|
/* 1780 */ 4389, 3478, 2931, 2068, 3670, 3532, 4437, 2007, 4393, 2007, 2007, 3427, 3432, 2303, 3443, 3422, 2007, 2007,
|
|
/* 1798 */ 4416, 4081, 2007, 2091, 3671, 3422, 3203, 4420, 2007, 2007, 2007, 2007, 2007, 3342, 2007, 3388, 3404, 3414,
|
|
/* 1816 */ 3421, 2007, 2254, 3381, 3994, 2931, 4346, 4454, 4260, 3567, 3304, 2007, 3439, 3100, 2007, 2007, 2007, 2007,
|
|
/* 1834 */ 3089, 2007, 4467, 2007, 2007, 2007, 2007, 2007, 3214, 2124, 2007, 2007, 4475, 2365, 3889, 3499, 2007, 3616,
|
|
/* 1852 */ 2007, 2007, 2007, 2337, 3624, 2007, 2906, 2007, 3329, 3633, 2007, 2499, 3960, 4434, 2007, 2007, 2007, 2007,
|
|
/* 1870 */ 4479, 2007, 2007, 3493, 2265, 2007, 2272, 3323, 2276, 4499, 2125, 2007, 4505, 2367, 4512, 2007, 4520, 2512,
|
|
/* 1888 */ 2007, 2007, 3211, 4539, 2007, 3211, 4539, 2073, 4037, 4454, 2007, 2007, 2007, 4545, 2007, 2649, 2007, 2007,
|
|
/* 1906 */ 4551, 3115, 4157, 3422, 2007, 2369, 2007, 2370, 2007, 2371, 3261, 2007, 2007, 2007, 2007, 2007, 2007, 2007,
|
|
/* 1924 */ 3458, 2007, 2007, 2080, 4576, 4599, 4601, 4601, 4596, 4590, 4601, 4601, 5213, 4588, 4600, 4601, 4601, 4601,
|
|
/* 1942 */ 4601, 4601, 4601, 4605, 4601, 4601, 4624, 4632, 4592, 4611, 4609, 4615, 4626, 4639, 4641, 4646, 4628, 4651,
|
|
/* 1960 */ 4653, 4653, 4647, 4635, 4657, 4642, 4661, 4665, 4669, 4673, 4676, 4680, 4682, 4686, 4690, 4560, 6008, 4569,
|
|
/* 1978 */ 4572, 6007, 4694, 4697, 4751, 6953, 4752, 5681, 6931, 4707, 6326, 4735, 4735, 4712, 4752, 4752, 5273, 4792,
|
|
/* 1996 */ 6322, 4707, 4735, 5096, 4719, 4736, 5094, 5098, 4748, 4748, 4750, 4752, 4752, 4752, 4752, 4564, 5125, 5113,
|
|
/* 2014 */ 4729, 5190, 6233, 4752, 5981, 4707, 4707, 4734, 4735, 4711, 4791, 6324, 5279, 4792, 6322, 4707, 4735, 6320,
|
|
/* 2032 */ 4748, 4749, 4752, 4752, 4582, 6339, 6230, 4730, 5190, 4752, 4752, 4752, 6892, 4707, 4707, 6327, 4735, 4714,
|
|
/* 2050 */ 6320, 6322, 6322, 6322, 6324, 4707, 4707, 4707, 4710, 4735, 4793, 4788, 6324, 4709, 4765, 5096, 5096, 4748,
|
|
/* 2068 */ 4752, 4752, 4752, 4758, 4721, 4752, 4752, 4752, 4777, 4792, 4788, 4709, 4752, 4561, 4752, 5750, 4735, 4735,
|
|
/* 2086 */ 4794, 6324, 4752, 5743, 4752, 4752, 4752, 4757, 4752, 4707, 4709, 4735, 4735, 4735, 4735, 4711, 4791, 6322,
|
|
/* 2104 */ 4792, 5276, 4722, 4752, 4563, 5399, 6420, 4752, 6238, 5201, 5242, 4735, 4735, 4785, 4752, 4563, 5663, 4752,
|
|
/* 2122 */ 4563, 6254, 5386, 5386, 5386, 4752, 4752, 4752, 5746, 4752, 6321, 6322, 6322, 6322, 6323, 6320, 6322, 6322,
|
|
/* 2140 */ 6323, 4707, 4707, 4707, 4735, 4752, 4752, 4584, 5193, 4735, 4735, 4713, 4752, 4563, 6913, 6240, 6240, 6240,
|
|
/* 2158 */ 6929, 4735, 4735, 4714, 5739, 6322, 6322, 6322, 6325, 6322, 6324, 4707, 4710, 4740, 5096, 5097, 4707, 4709,
|
|
/* 2176 */ 4735, 4752, 4698, 4752, 6653, 4709, 5467, 5467, 5467, 4752, 5513, 5517, 5483, 4804, 4818, 4798, 4802, 4844,
|
|
/* 2194 */ 4844, 4844, 4808, 4815, 4812, 4828, 4832, 4842, 4844, 4844, 4844, 4844, 4845, 4838, 4926, 4844, 4852, 4850,
|
|
/* 2212 */ 4913, 4853, 4857, 4861, 4865, 4835, 4869, 4872, 4879, 4876, 4881, 4883, 4887, 4889, 4891, 4893, 4900, 4900,
|
|
/* 2230 */ 4897, 4907, 4910, 4923, 4846, 4916, 4919, 4930, 4933, 4935, 4939, 4903, 4943, 4752, 4752, 4752, 4948, 4715,
|
|
/* 2248 */ 4752, 4752, 4752, 4977, 6877, 4954, 4752, 4752, 4752, 4978, 6115, 4759, 4759, 4752, 4752, 4753, 6060, 5603,
|
|
/* 2266 */ 6128, 4975, 4752, 4714, 4752, 6620, 4752, 6554, 6723, 6126, 4984, 5424, 5283, 4988, 4992, 4993, 4993, 4993,
|
|
/* 2284 */ 4997, 5000, 5002, 5006, 5009, 5013, 5017, 5017, 5019, 5023, 5024, 5028, 5030, 5034, 5038, 5037, 5042, 5046,
|
|
/* 2302 */ 4752, 4752, 4760, 5740, 4752, 5065, 4752, 5423, 4752, 4725, 4724, 4723, 4565, 5750, 4752, 5657, 4752, 5671,
|
|
/* 2320 */ 5072, 4752, 4743, 4752, 5390, 5082, 4752, 6010, 4752, 4751, 5572, 6253, 5505, 4752, 5971, 6389, 5056, 4752,
|
|
/* 2338 */ 4752, 4752, 5074, 5535, 6350, 4752, 4752, 6930, 5401, 4752, 5494, 4752, 4752, 4752, 5125, 4752, 6136, 6009,
|
|
/* 2356 */ 4752, 5110, 6936, 6567, 5134, 5141, 5150, 5143, 5152, 4752, 4752, 4754, 4752, 4752, 4752, 4755, 4752, 4752,
|
|
/* 2374 */ 4752, 4752, 6233, 6232, 4752, 4752, 6347, 4752, 4752, 6356, 5137, 5161, 5250, 4752, 4752, 4752, 5060, 6584,
|
|
/* 2392 */ 5222, 5223, 5186, 4752, 6234, 5190, 6523, 5174, 5165, 5171, 5181, 4752, 4752, 4752, 5190, 4752, 5143, 5180,
|
|
/* 2410 */ 4752, 4752, 4756, 6223, 4752, 6358, 5781, 5171, 4752, 6600, 5055, 5251, 4752, 5745, 4752, 4752, 6357, 5166,
|
|
/* 2428 */ 4752, 5700, 4752, 6585, 5199, 5167, 5205, 5153, 4752, 5211, 5207, 4752, 4752, 4757, 5714, 4752, 5698, 4752,
|
|
/* 2446 */ 5191, 5136, 5142, 5151, 5221, 6420, 4752, 4752, 4757, 5946, 5568, 5167, 6098, 6009, 4752, 5973, 4752, 5175,
|
|
/* 2464 */ 5166, 6097, 5153, 4752, 4752, 4583, 6238, 5201, 5241, 4752, 4752, 6357, 5780, 6547, 5167, 5243, 4752, 4752,
|
|
/* 2482 */ 6357, 5781, 4960, 4752, 6600, 5250, 5242, 4752, 4752, 4752, 5291, 5782, 5243, 4752, 4752, 4752, 5293, 6836,
|
|
/* 2500 */ 6078, 4752, 4752, 4752, 5346, 5256, 4752, 4752, 4752, 5355, 4752, 6927, 4752, 4752, 4752, 5377, 5972, 4752,
|
|
/* 2518 */ 4752, 6928, 5301, 5305, 5306, 5306, 5307, 5306, 5306, 5311, 5314, 5316, 5318, 5320, 5320, 5320, 5320, 5321,
|
|
/* 2536 */ 5325, 5325, 5325, 5327, 5325, 5325, 5331, 5331, 4752, 4752, 4761, 6855, 4752, 4752, 4960, 4752, 4752, 4752,
|
|
/* 2554 */ 5217, 4752, 6405, 5353, 5571, 4752, 6913, 6240, 5376, 5259, 4752, 5068, 5397, 4752, 5067, 5385, 5396, 4752,
|
|
/* 2572 */ 6696, 6700, 5406, 4752, 4752, 4752, 5471, 5263, 4752, 4752, 4752, 5531, 6256, 5416, 4752, 5572, 4752, 5665,
|
|
/* 2590 */ 4752, 5365, 4752, 5664, 4752, 4752, 4961, 4961, 4961, 5670, 4752, 6018, 4752, 4752, 6375, 6009, 4752, 6535,
|
|
/* 2608 */ 4752, 4752, 4752, 5581, 5083, 5429, 6534, 4752, 4752, 6428, 6383, 5341, 6009, 4752, 4752, 4752, 5187, 5417,
|
|
/* 2626 */ 4752, 5573, 4753, 5358, 6639, 6644, 6017, 4752, 6260, 6601, 4752, 6413, 4752, 4752, 4968, 5118, 5439, 5444,
|
|
/* 2644 */ 5449, 4752, 4752, 6578, 5109, 4752, 4752, 4753, 6958, 5445, 5153, 4752, 4752, 4752, 5387, 6259, 6593, 5458,
|
|
/* 2662 */ 4752, 4752, 5050, 5054, 5721, 5336, 5342, 4752, 4752, 6591, 4752, 4752, 6698, 4752, 4752, 4752, 5434, 5465,
|
|
/* 2680 */ 6603, 4752, 4752, 5080, 4752, 6569, 5473, 5477, 5445, 6429, 5475, 5869, 5481, 4752, 4752, 6717, 6721, 4752,
|
|
/* 2698 */ 5720, 5335, 5491, 6602, 4752, 4752, 4752, 5747, 5525, 5477, 5500, 4752, 4752, 6740, 6908, 6569, 5524, 5476,
|
|
/* 2716 */ 5499, 6429, 4752, 4752, 6712, 4752, 4752, 5084, 5430, 6860, 4752, 4752, 4752, 5748, 5187, 4752, 4752, 5223,
|
|
/* 2734 */ 4752, 5745, 6422, 4752, 4752, 4752, 6219, 4752, 5571, 4752, 5665, 6571, 5548, 5869, 5516, 5812, 5477, 5871,
|
|
/* 2752 */ 4752, 4752, 4752, 5750, 5720, 5335, 5504, 4752, 4752, 6868, 5157, 4752, 6861, 4752, 4752, 5111, 6426, 5386,
|
|
/* 2770 */ 5748, 5510, 4752, 4752, 5870, 6429, 4752, 4752, 4752, 5746, 4752, 4752, 4752, 4760, 5529, 4752, 4752, 5560,
|
|
/* 2788 */ 5567, 4752, 4752, 4757, 5546, 5554, 6429, 4752, 6713, 4752, 4752, 5191, 5176, 5559, 5113, 4752, 4752, 5192,
|
|
/* 2806 */ 4752, 4752, 4752, 6727, 4752, 6319, 4752, 4752, 5228, 4752, 5568, 4752, 4752, 4752, 5811, 5225, 6277, 5386,
|
|
/* 2824 */ 4752, 4752, 6874, 6878, 4752, 4752, 6206, 4752, 5720, 5814, 5569, 4752, 5687, 5691, 5225, 6255, 6934, 5689,
|
|
/* 2842 */ 5570, 5570, 4752, 5944, 5690, 4752, 5689, 5570, 4752, 5688, 4752, 6238, 5563, 4752, 4753, 5522, 5548, 5687,
|
|
/* 2860 */ 5577, 4752, 5687, 5577, 6238, 5401, 6651, 4752, 4753, 6054, 6070, 5386, 6364, 5586, 6009, 6256, 5600, 4752,
|
|
/* 2878 */ 6419, 5378, 5602, 5607, 5620, 5611, 5619, 5614, 5615, 5615, 5615, 5615, 5624, 5631, 5628, 5635, 5637, 5637,
|
|
/* 2896 */ 5637, 5642, 5638, 5646, 5646, 5646, 5646, 4752, 4752, 6449, 4752, 4752, 5247, 5251, 6259, 4778, 5412, 6009,
|
|
/* 2914 */ 4752, 5705, 4752, 6945, 4752, 4752, 4752, 6239, 4752, 4752, 5678, 4752, 4752, 5650, 4752, 5656, 5652, 4752,
|
|
/* 2932 */ 4756, 4752, 4752, 6103, 4752, 5661, 5669, 5675, 4752, 4757, 5847, 5927, 4752, 5685, 4752, 6232, 4752, 5377,
|
|
/* 2950 */ 6310, 4752, 4752, 5695, 4752, 4752, 5289, 5389, 4752, 4752, 5957, 6439, 4752, 4752, 4752, 5845, 5211, 5251,
|
|
/* 2968 */ 4752, 6437, 6441, 4752, 4752, 4752, 5860, 4581, 5709, 4752, 4752, 5227, 4752, 5718, 4752, 4752, 5356, 6055,
|
|
/* 2986 */ 5761, 5726, 5732, 5738, 4752, 5759, 5763, 5728, 5734, 4752, 4752, 4752, 5980, 5762, 5727, 5733, 4752, 4758,
|
|
/* 3004 */ 4752, 4752, 6124, 5052, 5056, 4779, 6862, 4752, 4752, 5380, 5228, 4752, 5767, 6936, 4752, 6937, 6934, 5378,
|
|
/* 3022 */ 4752, 5228, 5704, 4752, 4752, 6947, 4752, 4752, 5356, 5549, 5774, 5786, 6683, 5251, 5787, 6684, 4752, 4752,
|
|
/* 3040 */ 4752, 5990, 6258, 4778, 5412, 6009, 4752, 6557, 5986, 4752, 4775, 4752, 5744, 6946, 4752, 4752, 4752, 6094,
|
|
/* 3058 */ 6233, 4752, 4752, 5791, 4752, 5805, 6900, 6682, 6686, 6686, 4752, 4752, 4752, 6117, 5774, 6902, 6684, 4752,
|
|
/* 3076 */ 4950, 5088, 5102, 5411, 6870, 4752, 4752, 5380, 6635, 5768, 6937, 5802, 4744, 5810, 6902, 6685, 4752, 4959,
|
|
/* 3094 */ 4752, 4752, 4702, 4752, 4752, 5809, 6901, 5818, 4752, 4752, 5421, 4954, 4752, 5798, 4780, 6870, 5972, 4752,
|
|
/* 3112 */ 4752, 4752, 6241, 4752, 4752, 4752, 5188, 6000, 5824, 5251, 4752, 4752, 5842, 5822, 5828, 4752, 4752, 5453,
|
|
/* 3130 */ 5153, 5281, 4752, 4752, 4752, 6238, 6233, 6238, 4752, 4752, 5971, 5570, 4752, 4752, 6241, 5972, 4752, 6241,
|
|
/* 3148 */ 4752, 4752, 6238, 4752, 4752, 4752, 5230, 6239, 4752, 6241, 5973, 5838, 5237, 4752, 6254, 6635, 5226, 5851,
|
|
/* 3166 */ 6443, 5858, 5866, 5875, 5879, 5884, 5886, 5880, 5890, 5893, 5896, 5899, 5901, 5903, 5907, 5907, 5913, 5907,
|
|
/* 3184 */ 5907, 5909, 5920, 5921, 5917, 5917, 5919, 5917, 5917, 5918, 5917, 5931, 5265, 4752, 4752, 5460, 5360, 4757,
|
|
/* 3202 */ 4752, 6931, 4752, 4752, 4752, 5461, 5361, 6613, 5542, 4752, 4752, 4752, 6896, 5776, 6882, 4752, 4752, 5742,
|
|
/* 3220 */ 5936, 5195, 4752, 6225, 5942, 6564, 5950, 5953, 5961, 4752, 4961, 4752, 4752, 4752, 6000, 6367, 5966, 6419,
|
|
/* 3238 */ 4752, 4752, 5487, 4752, 6294, 4752, 6293, 5985, 4752, 5990, 5994, 4752, 4752, 4752, 6298, 6367, 5927, 4752,
|
|
/* 3256 */ 4752, 4752, 6243, 4759, 6930, 4752, 4752, 5741, 4752, 4752, 6938, 6005, 6421, 6050, 6014, 4752, 4752, 5505,
|
|
/* 3274 */ 4752, 4752, 4752, 6437, 4752, 6209, 5755, 5755, 6022, 6026, 6110, 4752, 4962, 4961, 4752, 4752, 6111, 4752,
|
|
/* 3292 */ 4752, 4752, 6317, 6031, 6026, 6110, 4752, 4966, 4752, 5225, 5398, 4752, 5400, 4752, 4752, 4752, 6254, 4752,
|
|
/* 3310 */ 6366, 5926, 4752, 4752, 5561, 5225, 5266, 4752, 4752, 5224, 6352, 4752, 6628, 4752, 4972, 5386, 5066, 6048,
|
|
/* 3328 */ 5970, 4752, 4752, 5573, 5398, 4752, 6208, 4752, 4752, 5596, 4752, 6059, 5779, 6064, 4752, 4977, 4821, 6882,
|
|
/* 3346 */ 6069, 6065, 4752, 4752, 5699, 4752, 4752, 6001, 5925, 5251, 4752, 4752, 4752, 6247, 4752, 5739, 4752, 6353,
|
|
/* 3364 */ 4752, 6629, 4752, 5973, 4752, 6569, 6074, 6089, 6569, 6084, 6088, 5251, 6082, 6086, 6090, 4752, 4979, 4579,
|
|
/* 3382 */ 4752, 4752, 4752, 6422, 4752, 6423, 6722, 4752, 4752, 4752, 6321, 6322, 5389, 6627, 4752, 5971, 4980, 4580,
|
|
/* 3400 */ 4752, 4752, 4752, 6320, 4757, 4752, 5740, 4752, 5075, 5968, 4752, 4977, 5523, 6665, 6354, 6627, 4752, 5972,
|
|
/* 3418 */ 4752, 4752, 6036, 4753, 6937, 4752, 4752, 4752, 6418, 6252, 4752, 4752, 4752, 6423, 6860, 6869, 4752, 4752,
|
|
/* 3436 */ 5720, 5813, 5555, 4752, 4752, 4752, 5809, 6354, 6627, 4752, 4753, 6937, 4978, 4581, 4752, 4752, 4752, 6429,
|
|
/* 3454 */ 4752, 4979, 4581, 4752, 4752, 5722, 5337, 5263, 4752, 6861, 6870, 4752, 5287, 5297, 4758, 4752, 5742, 6353,
|
|
/* 3472 */ 6860, 6869, 4758, 5740, 5390, 5998, 6234, 4752, 4752, 4752, 6102, 4752, 5386, 6234, 5505, 6935, 4755, 6239,
|
|
/* 3490 */ 4752, 5971, 4752, 4752, 4752, 5386, 4754, 5720, 4581, 4752, 4752, 5741, 6936, 4752, 6863, 5739, 4752, 5076,
|
|
/* 3508 */ 4752, 4752, 5720, 5335, 5341, 4752, 6869, 4752, 6313, 4752, 6311, 4752, 6608, 4752, 4752, 5745, 4752, 6259,
|
|
/* 3526 */ 4752, 4618, 6121, 6232, 6230, 6230, 5741, 6935, 4752, 4752, 6201, 5189, 4752, 6134, 6132, 6140, 6144, 6151,
|
|
/* 3544 */ 6145, 6145, 6150, 6146, 6155, 6159, 6163, 6167, 6169, 6174, 6176, 6169, 6169, 6170, 6186, 6187, 6180, 6180,
|
|
/* 3562 */ 6185, 6180, 6180, 6181, 6191, 4752, 4752, 4752, 6545, 6229, 6841, 5573, 5061, 6250, 4752, 4752, 4752, 6569,
|
|
/* 3580 */ 5524, 4752, 6247, 6251, 4752, 5107, 4752, 4752, 4753, 6719, 6266, 6265, 6267, 4752, 5110, 4752, 5111, 4752,
|
|
/* 3598 */ 5113, 5111, 4752, 5956, 4752, 5192, 4752, 6621, 5747, 6333, 4752, 4752, 5797, 5191, 6271, 6276, 5252, 4961,
|
|
/* 3616 */ 4752, 6281, 6287, 6251, 4752, 4752, 4752, 6570, 6286, 6291, 4752, 4752, 5751, 4752, 5833, 5832, 5831, 4752,
|
|
/* 3634 */ 5110, 6077, 4752, 4752, 6362, 4752, 4752, 4770, 4752, 4752, 4752, 6717, 5589, 4752, 6202, 5190, 4752, 5110,
|
|
/* 3652 */ 6929, 4752, 4752, 6307, 4752, 4752, 6934, 4752, 4752, 4752, 6934, 4759, 6304, 5573, 4961, 5831, 5831, 5831,
|
|
/* 3670 */ 4752, 5112, 4752, 4752, 5742, 5580, 4769, 6009, 4752, 4752, 6387, 4752, 5126, 4752, 6331, 4961, 4753, 5534,
|
|
/* 3688 */ 5538, 5542, 4752, 6282, 5536, 5540, 4752, 5112, 6427, 5932, 5582, 4771, 4752, 4752, 4752, 6546, 5782, 5243,
|
|
/* 3706 */ 4752, 5579, 5536, 5540, 5862, 5538, 5542, 4752, 5114, 5993, 4752, 4961, 4752, 5797, 4768, 5153, 4752, 4752,
|
|
/* 3724 */ 5804, 6899, 5787, 6318, 4752, 4752, 5957, 4752, 6213, 6334, 4752, 4752, 4752, 6731, 4752, 6234, 6343, 5539,
|
|
/* 3742 */ 6009, 4752, 4752, 5769, 4752, 4752, 5938, 6343, 5539, 4752, 6425, 4961, 4752, 5193, 4752, 4752, 6231, 4752,
|
|
/* 3760 */ 5377, 5401, 4752, 6254, 6318, 4752, 4752, 6255, 4752, 6425, 4752, 4752, 5409, 6311, 4961, 4752, 4752, 5823,
|
|
/* 3778 */ 4752, 4752, 4752, 6240, 4752, 4752, 4752, 5103, 5454, 6009, 4752, 4752, 5844, 5146, 5452, 6377, 4752, 4752,
|
|
/* 3796 */ 5846, 5145, 6860, 6009, 4752, 5190, 6375, 6009, 6422, 6424, 4752, 6868, 4752, 4752, 4752, 5388, 5380, 6254,
|
|
/* 3814 */ 6362, 4752, 5124, 5122, 4752, 4752, 6322, 6322, 6322, 6322, 4707, 4707, 4707, 4707, 4708, 4735, 4735, 6381,
|
|
/* 3832 */ 4752, 6009, 5377, 6389, 4752, 4752, 6885, 6009, 4752, 4752, 6868, 5377, 6253, 6887, 4752, 4752, 6887, 4752,
|
|
/* 3850 */ 4752, 6886, 4752, 6403, 5971, 6255, 4752, 4752, 5853, 4752, 4752, 4752, 6936, 6255, 6886, 5971, 6255, 5191,
|
|
/* 3868 */ 4752, 4752, 5752, 4752, 4756, 6589, 6886, 6401, 6885, 6885, 4752, 6886, 5377, 6885, 6394, 6394, 4703, 4703,
|
|
/* 3886 */ 4703, 4752, 5185, 4752, 4752, 4757, 5110, 4960, 5744, 6398, 4752, 5187, 6451, 4752, 4752, 6409, 4752, 6411,
|
|
/* 3904 */ 5750, 6215, 6417, 5744, 6435, 6217, 4752, 5189, 6447, 6457, 6461, 6462, 6466, 6486, 6469, 6484, 6472, 6478,
|
|
/* 3922 */ 6475, 6480, 6498, 6492, 6490, 6496, 6496, 6500, 6506, 6506, 6507, 6504, 6506, 6506, 6506, 6511, 6514, 4752,
|
|
/* 3940 */ 4752, 5854, 4752, 4752, 4752, 6619, 4824, 5749, 6417, 6518, 4752, 4752, 4752, 6756, 5187, 4752, 4752, 4752,
|
|
/* 3958 */ 6834, 6431, 4752, 4752, 4752, 6836, 5834, 6009, 6522, 6527, 6869, 4752, 6430, 4752, 5188, 4752, 5223, 4752,
|
|
/* 3976 */ 4752, 4752, 6253, 4752, 6540, 6551, 6561, 5402, 6575, 4752, 4752, 5945, 4752, 4752, 6755, 6009, 4752, 5188,
|
|
/* 3994 */ 5194, 4752, 4752, 4752, 6252, 6255, 4752, 6756, 5962, 4752, 5222, 5392, 5390, 4752, 6849, 6848, 4752, 5231,
|
|
/* 4012 */ 6032, 6027, 6850, 4752, 4752, 4752, 6854, 6619, 4824, 5749, 6582, 5518, 4752, 4752, 4752, 6861, 4753, 6634,
|
|
/* 4030 */ 4752, 4752, 5945, 5691, 4752, 4752, 6589, 4752, 4753, 4752, 4757, 5561, 4752, 6597, 4752, 6607, 4752, 5235,
|
|
/* 4048 */ 4752, 4752, 4752, 5225, 6612, 5541, 4752, 6617, 5229, 6351, 5401, 6625, 4752, 5753, 4752, 6633, 5359, 6640,
|
|
/* 4066 */ 6645, 6009, 4944, 5540, 4752, 4752, 5955, 4752, 6649, 6238, 5686, 5686, 5144, 4752, 5744, 4752, 4752, 4752,
|
|
/* 4084 */ 4753, 4980, 6619, 4824, 6272, 6654, 5754, 4753, 4752, 6311, 4752, 4752, 6312, 4752, 4752, 5355, 5359, 5550,
|
|
/* 4102 */ 6658, 6009, 5357, 6678, 4944, 5541, 4752, 5571, 4752, 6597, 6597, 6597, 6597, 4752, 4752, 4752, 6928, 4752,
|
|
/* 4120 */ 4752, 5110, 6426, 4752, 5746, 6423, 4752, 5266, 4752, 4564, 4752, 6662, 5550, 6671, 6670, 6009, 4752, 4752,
|
|
/* 4138 */ 5977, 4752, 6664, 6669, 5153, 4752, 5270, 6423, 5505, 4823, 5748, 5401, 5189, 4752, 4752, 4752, 5739, 6322,
|
|
/* 4156 */ 5752, 4753, 4752, 4752, 5741, 5390, 4752, 6675, 6690, 6429, 6694, 4752, 4752, 5193, 6234, 4824, 5750, 4752,
|
|
/* 4174 */ 5369, 4752, 4955, 4752, 4752, 5385, 5753, 4756, 4752, 6239, 4752, 6240, 4752, 5349, 4758, 4752, 6705, 6429,
|
|
/* 4192 */ 4752, 5372, 4758, 5592, 4752, 6705, 6429, 5572, 6238, 6913, 4752, 4752, 6009, 4752, 4752, 5712, 4752, 4752,
|
|
/* 4210 */ 6010, 6536, 4714, 6709, 4752, 4752, 6016, 4752, 4756, 4752, 6240, 4752, 5379, 6255, 4752, 5388, 4752, 6257,
|
|
/* 4228 */ 6419, 5074, 6720, 4752, 4752, 6042, 4752, 5749, 4752, 4752, 4752, 6929, 4752, 4752, 5971, 6717, 6429, 4752,
|
|
/* 4246 */ 4752, 6042, 5417, 6914, 6241, 4752, 5747, 6233, 4752, 4752, 4752, 6926, 4752, 6729, 4752, 4752, 4752, 6933,
|
|
/* 4264 */ 6727, 4563, 4752, 5747, 6741, 5389, 5192, 5222, 4752, 5986, 4561, 5748, 4752, 6936, 6934, 4562, 5749, 6934,
|
|
/* 4282 */ 5853, 4563, 6935, 4752, 5387, 5748, 4752, 4752, 6735, 6371, 4563, 6936, 6934, 4752, 4752, 6739, 6680, 6421,
|
|
/* 4300 */ 4744, 6300, 6231, 5091, 4752, 5389, 5748, 4752, 4752, 6701, 4581, 6039, 6745, 6748, 4620, 6733, 6752, 6760,
|
|
/* 4318 */ 6768, 6762, 6764, 6771, 6775, 6779, 6782, 6784, 6788, 6790, 6794, 6797, 6801, 6804, 6809, 6808, 6813, 6815,
|
|
/* 4336 */ 6819, 6817, 6823, 6827, 6830, 4752, 5391, 5223, 5222, 6421, 4752, 4752, 4759, 5112, 4760, 4752, 5113, 4752,
|
|
/* 4354 */ 5428, 6533, 4752, 4752, 6388, 4752, 4752, 6393, 4752, 4752, 6428, 4752, 4752, 6428, 6260, 6840, 5381, 4752,
|
|
/* 4372 */ 6845, 4584, 4752, 6043, 4752, 5495, 4752, 4752, 4753, 6197, 4769, 6859, 6044, 4752, 4752, 6195, 5582, 4752,
|
|
/* 4390 */ 6739, 6907, 5191, 4752, 6867, 6915, 4752, 5506, 5505, 4752, 5973, 4752, 4563, 4752, 5386, 4752, 5533, 5537,
|
|
/* 4408 */ 5541, 5389, 5388, 4752, 4752, 6232, 4752, 4752, 5747, 6741, 6355, 6235, 4752, 6543, 6238, 5400, 4752, 5188,
|
|
/* 4426 */ 4752, 4752, 6891, 5777, 5700, 4752, 5562, 6253, 4752, 4752, 6912, 4752, 4752, 6932, 4752, 4752, 6935, 4752,
|
|
/* 4444 */ 4753, 5435, 5440, 5445, 5388, 5388, 4752, 4752, 6242, 6042, 4752, 5739, 6934, 4752, 5571, 4752, 5398, 4752,
|
|
/* 4462 */ 4751, 5401, 5401, 5399, 5793, 4753, 6898, 5778, 4563, 4752, 5388, 5749, 6601, 5747, 6906, 5192, 6236, 4752,
|
|
/* 4480 */ 6897, 5777, 4563, 4752, 5130, 4752, 4752, 6338, 4752, 4752, 6231, 4752, 4752, 6920, 4752, 4752, 4752, 6261,
|
|
/* 4498 */ 4752, 5775, 6919, 4752, 5386, 6258, 4781, 5595, 5193, 6237, 4752, 5571, 4752, 5399, 4760, 4752, 5740, 6935,
|
|
/* 4516 */ 4752, 4752, 6107, 4752, 4752, 6924, 4752, 4752, 6281, 5535, 6896, 6942, 4752, 4752, 6311, 4752, 4752, 4752,
|
|
/* 4534 */ 6530, 4759, 4752, 5740, 6935, 6951, 4752, 4752, 4752, 6311, 5770, 4977, 6959, 4752, 4752, 6312, 5113, 4752,
|
|
/* 4552 */ 6957, 4752, 4752, 6313, 4752, 4752, 4752, 6453, 2, 4, 8, 262144, 0, 0, 0, 0x80000000, 1073741824, 0, 0,
|
|
/* 4571 */ 1075838976, 2097152, 2097152, 268435456, 4194432, 4194560, 4196352, 270532608, 2097152, 4194304, 50331648,
|
|
/* 4582 */ 0, 0, 0, 4194304, 0, 0, 541065216, 541065216, -2143289344, -2143289344, 4194304, 4194304, 4196352,
|
|
/* 4595 */ -2143289344, 4194304, 4194432, 37748736, 541065216, -2143289344, 4194304, 4194304, 4194304, 4194304,
|
|
/* 4605 */ 4194304, 4194304, 4198144, 4196352, 8540160, 4194304, 4194304, 4194304, 4196352, 276901888, 4194304,
|
|
/* 4616 */ 4194304, 8425488, 4194304, 1, 0, 1024, 137363456, 66, 37748736, 742391808, 239075328, -1405091840,
|
|
/* 4628 */ 775946240, 775946240, 775946240, 171966464, 742391808, 742391808, 742391808, 775946240, -1371537408,
|
|
/* 4637 */ 775946240, 775946240, -1405091840, -1371537408, 775946240, 775946240, 775946240, 775946240, 4718592,
|
|
/* 4646 */ -1371537408, 775946240, -1371537408, 775946240, -1371537408, 171966464, 775946240, 171966464, 171966464,
|
|
/* 4655 */ 171966464, 171966464, 239075328, 171966464, 775946240, 239075328, 64, 4718592, 2097216, 4720640, 541589504,
|
|
/* 4666 */ 4194368, 541589504, 4194400, 4194368, 541065280, 4194368, 4194368, -2143289280, 4194368, -2143285440,
|
|
/* 4676 */ -2143285408, -2143285408, 776470528, -2143285408, -2109730976, -2143285408, -2143285408, -2143285408,
|
|
/* 4684 */ -2109730976, -2143285408, 775946336, 775946304, 775946304, 776470528, 775946304, -1908404384, 775946304,
|
|
/* 4693 */ -1908404384, 0, 2097152, 4194304, 128, 0, 256, 2048, 0, 0, 16777216, 16777216, 16777216, 16777216, 64, 64,
|
|
/* 4709 */ 64, 64, 96, 96, 96, 64, 0, 0, 0, 24, 64, 0, 96, 96, 0, 0, 0, 288, 8388608, 0, 0, 8388608, 4096, 4096, 4096,
|
|
/* 4734 */ 32, 96, 96, 96, 96, 262144, 96, 96, 1048576, 128, 0, 1048576, 0, 0, 2048, 2048, 2048, 2048, 0, 0, 0, 0, 1,
|
|
/* 4757 */ 0, 0, 0, 2, 0, 0, 0, 3, 96, 96, 128, 128, 2048, 524288, 268435456, 536870912, 1073741824, 0, 0, 8388608,
|
|
/* 4777 */ 4096, 0, 64, 0, 2048, 524288, 536870912, 0, 64, 524288, 64, 96, 64, 524288, 524288, 96, 96, 64, 524288, 96,
|
|
/* 4797 */ 64, 80, 528, 524304, 1048592, 2097168, 268435472, 16, 16, 2, 536936448, 16, 262160, 16, 536936448, 16, 17,
|
|
/* 4814 */ 17, 20, 16, 48, 16, 16, 20, 48, 64, 128, 1024, 134217728, 0, 0, 24, 560, 48, 2097680, 3145744, 1048592,
|
|
/* 4834 */ 1048592, 2097168, 16, 1049104, 16, 16, 20, 560, 2097168, 2097168, 16, 16, 16, 16, 20, 16, 2097552, 3146256,
|
|
/* 4852 */ 16, 16, 16, 28, 0, 2, 2098064, 17, 21, 16, 16, 163577856, 17, 528, 528, 16, 528, 2228784, -161430188,
|
|
/* 4871 */ -161429680, -161430188, -161430188, -161430188, -161429680, -161430188, -161429676, -160905388, -161429676,
|
|
/* 4880 */ -161430188, -161429676, -161429676, -161429676, -161429676, -161429675, -161349072, -161349072, -161429675,
|
|
/* 4889 */ -161349072, -161349072, -161349072, -161349072, -161347728, -161347728, -161347728, -161347728, -161298576,
|
|
/* 4898 */ -160299088, -161298576, -161298572, -161298572, -161298572, -161298572, -18860267, -160774284, -18729163,
|
|
/* 4907 */ -160774288, -160299084, -161298572, -160774284, -161298572, -161298572, 16, 16, 28, 16, 16, 112, 21, 53,
|
|
/* 4921 */ 146804757, 146812949, 0, 16, 0, 48, 3146256, 2097680, 1048592, 146862101, 146863389, -161429676, 146863389,
|
|
/* 4934 */ 146863421, 146863389, 146863389, 146863389, 146863421, -161429740, -161429676, -160905388, -161298572, 0,
|
|
/* 4944 */ 65536, 524288, 1048576, 33554432, 0, 159383552, 0, 0, 0, 1157627904, -1073741824, 0, 0, 0, 300, 142606336,
|
|
/* 4960 */ 0, 8192, 0, 0, 0, 384, 0, 243269632, 0, 0, 0, 1862270976, 1, 32768, 131328, 131072, 16777216, 0, 0, 1, 2,
|
|
/* 4981 */ 4, 128, 2097152, 0, 1073741825, 0x80000000, 0x80000000, 8, 16777216, 1073774592, 278528, 1226014816,
|
|
/* 4993 */ 100665360, 100665360, 100665360, 100665360, 100665360, 100665360, -2046818288, 1091799136, -2044196848,
|
|
/* 5002 */ 1091799136, 1091799136, 1091799136, 1091799136, 1091799136, 1091803360, 1091799136, 1091799136, 1158908000,
|
|
/* 5011 */ 1158908001, 1192462432, 1192462448, 1192462448, 1192462448, 1192462448, 1200851056, 1091799393, 1200851056,
|
|
/* 5020 */ 1200851056, 1192462448, 1870630720, 1870647104, 1870630720, 1870647104, 1870630720, 1870647104, 1870647104,
|
|
/* 5029 */ 1870647104, 1870647104, 1870647104, 1870647120, 1870647124, 1870647124, 1870647124, 1870630736, 1870655316,
|
|
/* 5038 */ 1870655316, 1870655316, 1870655317, 1870655348, 1870647120, 1870647120, 1870647120, 1879019376, 1879035760,
|
|
/* 5047 */ 1870647124, 1879035760, 1879035764, 32768, 131072, 524288, 2097152, 8388608, 16777216, 134217728,
|
|
/* 5057 */ 268435456, 1073741824, 0x80000000, 131328, 0, 0, 0, 832, 0, 164096, 0, 0, 0, 520, 4333568, 1048576,
|
|
/* 5073 */ 1224736768, 0, 0, 1, 4, 0, 0, 235712, 0, 1090519040, 0, 0, 0, 999, 259072, 1191182336, 0, 0, 9437184, 0, 0,
|
|
/* 5094 */ 1048576, 0, 128, 128, 128, 128, 2048, 2048, 231744, 0, 0, 0, 1007, 495424, 7864320, 1862270976, 0, 0, 0,
|
|
/* 5113 */ 1024, 0, 0, 0, 63, 520000, 1862270976, 1862270976, 16252928, 0, 0, 16252928, 0, 0, 0, 1536, 0x80000000, 64,
|
|
/* 5131 */ 98304, 1048576, 150994944, 0, 64, 256, 3584, 16384, 98304, 393216, 98304, 393216, 524288, 1048576, 2097152,
|
|
/* 5146 */ 4194304, 0x80000000, 0, 0, 2097152, 4194304, 251658240, 536870912, 1073741824, 0, 0, 8192, 1073741824,
|
|
/* 5159 */ 1073741824, 8388608, 2097152, 16777216, 134217728, 268435456, 2048, 65536, 262144, 524288, 1048576,
|
|
/* 5170 */ 2097152, 1048576, 2097152, 4194304, 117440512, 64, 256, 1536, 16384, 65536, 117440512, 134217728,
|
|
/* 5182 */ 536870912, 1073741824, 0, 0, 100663296, 0, 0, 0, 4096, 0, 0, 0, 64, 0, 0, 128, -2113929216, 64, 256, 1536,
|
|
/* 5202 */ 65536, 262144, 524288, 4194304, 16777216, 100663296, 134217728, 536870912, 1073741824, 1048576, 2097152,
|
|
/* 5213 */ 4194304, 16777216, 4194432, 3145728, 524288, 2097152, 134217728, 268435456, 65536, 1048576, 0, 0, 0, 2048,
|
|
/* 5227 */ 0, 0, 134217728, 0, 0, 0, 15, 16, 524288, 2097152, 1073741824, 0x80000000, 0x80000000, 0, 1048576, 2097152,
|
|
/* 5243 */ 67108864, 1073741824, 0, 0, 0, 0, 2097152, 1073741824, 0x80000000, 0, 0, 0, 768, 0, 2097152, 0x80000000, 0,
|
|
/* 5260 */ -872415232, 0, -872415232, 67108864, 134217728, 1073741824, 0, 0x80000000, 0, 0, 0, 8192, 4096, 0, 0, 1536,
|
|
/* 5276 */ 524288, 64, 64, 96, 64, 0, 524288, 0, 1073741824, 2621440, 1073741824, 9476, 512, 0, 32, 384, 8192, 0, 0,
|
|
/* 5295 */ 1, 8, 512, 512, 9476, 134218240, 1050624, 262144, 512, 50331649, 1275208192, 4194312, 4194312, 4194312,
|
|
/* 5309 */ 4194312, 541065224, 4194312, 4194312, 4194344, -869654016, 4203820, -869654016, -869654016, -869654016,
|
|
/* 5319 */ -869654016, 1279402504, 1279402504, 1279402504, 1279402504, 2143549415, 2143549415, 2143549415, 2143549415,
|
|
/* 5328 */ 2143549415, 2143549423, 2143549415, 2143549423, 2143549423, 2143549423, 2143549423, 16, 32, 256, 1024,
|
|
/* 5339 */ 8192, 33554432, 8192, 33554432, 67108864, 134217728, 0, 0, 536870912, 9216, 0, 0, 1792, 0x80000000, 0,
|
|
/* 5354 */ 1050624, 0, 0, 1, 14, 16, 32, 1024, 2048, 77824, 524288, 0, 512, 139264, 1275068416, 512, 2760704,
|
|
/* 5371 */ -872415232, 0, 0, 1856, 0x80000000, 4203520, 0, 0, 0, 32768, 0, 0, 0, 58624, 520, 0, 0, 0, 131072, 0, 0, 0,
|
|
/* 5393 */ 512, 0, 1048576, 0, 1275068416, 0, 0, 0, 65536, 0, 0, 0, 12561, 0, 1007, 1007, 0, 0, 2048, 524288, 0,
|
|
/* 5414 */ 536870912, 0, 512, 0, 2048, 1048576, 0, 0, 40, 0, 2621440, 0, 0, 0x80000000, 999, 259072, 4194304,
|
|
/* 5431 */ 25165824, 100663296, 402653184, 1, 102, 384, 512, 5120, 5120, 8192, 16384, 229376, 4194304, 4194304,
|
|
/* 5445 */ 25165824, 33554432, 67108864, 402653184, 402653184, 536870912, 1073741824, 0, 0, 2048, 3145728, 16777216,
|
|
/* 5457 */ 536870912, 110, 110, 0, 0, 1, 30, 32, 0, 40, 0, 524288, 64, 96, 1, 6, 96, 384, 512, 1024, 4096, 8192,
|
|
/* 5479 */ 16384, 229376, 67108864, 402653184, 536870912, 0, 2, 16, 104, 0, 104, 104, 8192, 33554432, 134217728, 0, 0,
|
|
/* 5496 */ 2048, 100663296, 0, 229376, 25165824, 33554432, 402653184, 536870912, 8192, 33554432, 0, 0, 0, 17408, 0,
|
|
/* 5511 */ 524288, 2097152, 0, 0, 2048, 268435456, 536870912, 0, 0, 268435456, 49152, 2, 4, 32, 64, 256, 512, 1024, 8,
|
|
/* 5530 */ 8, 0, 0, 1, 64, 128, 3584, 16384, 3145728, 16777216, 67108864, 134217728, 805306368, 1073741824, 0, 0, 4,
|
|
/* 5547 */ 64, 256, 1024, 4096, 8192, 65536, 524288, 98304, 131072, 25165824, 268435456, 536870912, 0, 2, 4, 256,
|
|
/* 5563 */ 1024, 0, 2048, 0, 98304, 131072, 16777216, 268435456, 0, 0, 0, 262144, 0, 0, 65536, 268435456, 0, 0, 1,
|
|
/* 5582 */ 128, 512, 2048, 524288, 2048, 524288, 67108864, 536870912, 0, 262144, 0, 0, 2432, 0, 0, 4096, 8192, 0, 32,
|
|
/* 5601 */ 4100, 67108864, 0, 32768, 0, 32768, 0, 0, 134348800, 134348800, 1049088, 1049088, 8192, 1049088, 12845065,
|
|
/* 5616 */ 12845065, 12845065, 12845065, 270532608, 0, 1049088, 0, 134348800, 12845065, 12845065, 147193865, 5505537,
|
|
/* 5628 */ 5591557, 5587465, 5587457, 5587457, 147202057, 5587457, 5587457, 5591557, 5587457, 13894153, 13894153,
|
|
/* 5639 */ 13894153, 13894153, -1881791493, 13894153, 81003049, 13894153, 13894153, -1881791493, -1881791493,
|
|
/* 5648 */ -1881791493, -1881791493, 0, 9, 0, 0, 1, 5505024, 142606336, 0, 0, 0, 278528, 0, 82432, 0, 0, 1, 16777216,
|
|
/* 5667 */ 0, 0, 0, 139264, 0, 0, 0, 229440, 0, 5, 86528, 9, 4456448, 8388608, 0, 0, 8192, 8392704, 9, 8388608, 0, 0,
|
|
/* 5689 */ 256, 1024, 65536, 16777216, 268435456, 0, 0, 41, 75497472, 0, 0, 16384, 262144, 0, 0, 0, 512, 1048576, 0,
|
|
/* 5708 */ 0, 262144, 4194304, 8388608, 0, 0, 16384, 4194304, 0x80000000, 0, 0, 81920, 0, 0, 2, 4, 16, 32, 8192,
|
|
/* 5727 */ 131072, 262144, 1048576, 4194304, 8388608, 4194304, 8388608, 16777216, 33554432, -1946157056, 0,
|
|
/* 5738 */ -1946157056, 0, 0, 0, 524288, 0, 0, 0, 16, 0, 0, 0, 8, 0, 0, 0, 12, 0, 0, 0, 13, 0, 1, 2, 56, 64, 896,
|
|
/* 5765 */ 8192, 131072, 0, 0, 33554432, 1024, 0, 4, 0, 8, 16, 32, 64, 128, 1024, 2048, 16384, 65536, 262144, 524288,
|
|
/* 5785 */ 2097152, 384, 512, 8192, 131072, 1048576, 0, 16384, 65536, 0, 65536, 0, 0, 131072, 0, 32, 0, 32768,
|
|
/* 5803 */ 134217728, 0, 0, 2, 8, 16, 0, 2, 8, 32, 64, 256, 1024, 98304, 131072, 1048576, 33554432, 134217728,
|
|
/* 5821 */ 0x80000000, 8, 32, 384, 8192, 131072, 33554432, 131072, 33554432, 0x80000000, 0, 0, 24576, 0, 0, 0,
|
|
/* 5837 */ 50331648, 0, 8396800, 4194304, 134217728, 2048, 134217728, 0, 0, 2, 16384, 32768, 1048576, 2097152, 0,
|
|
/* 5852 */ 8396800, 0, 0, 4, 8, 0, 0, 16384, 0, 2, 4, 128, 3584, 16384, 16384, 16384, 16777216, 16384, 229376,
|
|
/* 5871 */ 25165824, 33554432, 268435456, 536870912, 524288, 268567040, 16384, -2113929088, 2113544, 68423701,
|
|
/* 5881 */ 68423701, 68423701, 68423701, 68489237, 68423701, 68423701, 68423701, 85200917, 68423701, 68489237,
|
|
/* 5891 */ 72618005, 68423701, 68423701, -2079059883, 68423701, -2079059883, 68425749, 68423703, 69488664, 85200919,
|
|
/* 5901 */ 69488664, 69488664, 69488664, 69488664, 70537244, 70537245, 70537245, 70537245, 70537245, 70537245,
|
|
/* 5911 */ 70539293, -2022351809, -2076946339, 70537245, -2076946339, -2076946339, -2022351681, -2022351681,
|
|
/* 5919 */ -2022351681, -2022351681, -2022351809, -2022351681, -2022351809, -2022351681, 32768, 65536, 4194304,
|
|
/* 5928 */ 16777216, 0x80000000, 0, 0, 0, 8388608, 134217728, 1073741824, 131584, 268435456, 0, 0, 4, 128, 1048576,
|
|
/* 5943 */ 67108864, 0, 0, 4, 256, 1024, 98304, 0, 0, 5242880, -2080374784, 268288, 0, 0, 4, 16777216, 0, 0, 23, 0, 0,
|
|
/* 5964 */ 0, 867391, 24, 282624, 0, 0, 6, 0, 0, 0, 2097152, 0, 0, 0, 28, 3145728, 0, 0, 32768, 65536, 0, 284672, 0,
|
|
/* 5987 */ 0, 0, 1048576, 0, 63, 128, 351232, 7340032, -2030043136, 0, 0, 131072, 268435456, 0, 0, 8, 32, 64, 16,
|
|
/* 6006 */ 4096, 262144, 1048576, 1073741824, 0, 0, 0, -2046820352, 0, 20480, 0, 0, 8, 4194304, 0, 0, 15, 16, 32,
|
|
/* 6025 */ 3072, 20480, 65536, 262144, 7340032, 50331648, 16, 32, 128, 3072, 20480, 0, 1, 4, 1048576, 4096, 1048576,
|
|
/* 6042 */ 512, 0, 0, 0, 150528, 0, 0, 0, 5242880, 0, 7, 0, 14, 32, 1024, 2048, 12288, 1, 14, 32, 128, 1024, 7340032,
|
|
/* 6065 */ 50331648, 0x80000000, 0, 0, 2048, 16384, 65536, 7340032, 50331648, 8, 32, 1024, 65536, 262144, 2097152,
|
|
/* 6080 */ 1073741824, 0, 1, 6, 8, 32, 128, 1024, 65536, 2097152, 4194304, 50331648, 0x80000000, 0, 1, 2, 4, 2097152,
|
|
/* 6098 */ 4194304, 67108864, 134217728, 536870912, 0, 32768, 4194304, 16777216, 0, 1, 2, 4, 50331648, 67108864,
|
|
/* 6112 */ 0x80000000, 0, 0, 128, 50331648, 0, 0, 8, 33554432, 4096, 4194304, 268435456, 0, 0, 32768, 131072, 131072,
|
|
/* 6129 */ 0, 32768, 32768, 268435968, 268435968, 1073743872, 268435968, 0, 128, 6144, 0, 229376, 128, 268435968,
|
|
/* 6143 */ 16777220, 268436032, 256, 256, 256, 256, 257, 256, 256, 536871168, 256, 256, 256, 256, 384, -1879046336,
|
|
/* 6159 */ -1879046334, 1073744256, -1879046334, -1879046326, -1879046334, -1879046334, -1879046326, -1879046326,
|
|
/* 6167 */ -1845491902, -1878784182, 268444480, 268444480, 268444480, 268444480, 2100318145, 268436288, 268436288,
|
|
/* 6176 */ 268436288, 268436288, 268436289, 268436288, 2100318149, 2100318149, 2100318149, 2100318149, 2100326337,
|
|
/* 6185 */ 2100318149, 2100318149, 2100318145, 2100318149, 2100318145, 2100318149, 2100326341, 2100318149, 2100326341,
|
|
/* 6194 */ 2100326341, 0, 1, 16, 32, 128, 512, 0, 4194304, 1, 1024, 0, 0, 229376, 0, 0, 12, 3145728, 0, 0, 576, 0, 0,
|
|
/* 6217 */ 16, 8192, 0, 0, 16, 262144, 0, 384, 0, 0, 21, 266240, 1864, 0, 0, 0, 8388608, 0, 0, 0, 128, 0, 0, 0, 256,
|
|
/* 6242 */ 0, 0, 0, 260, 512, 0, 1, 4036, 19939328, 2080374784, 0, 0, 0, 16777216, 0, 0, 0, 32, 0, 0, 0, 40, 67108864,
|
|
/* 6265 */ 0, 19947520, 0, 0, 0, 19947520, 2304, 0, 8, 0, 512, 301989888, 0, 0, 262144, 16777216, 0, 1, 4, 64, 128,
|
|
/* 6286 */ 64, 128, 3840, 16384, 19922944, 19922944, 2080374784, 0, 0, 29, 0, 0, 1536, 0x80000000, 0, 0, 32, 1, 8, 0,
|
|
/* 6306 */ 33554432, 0, 0, 32768, 196608, 0, 0, 0, 33554432, 0, 0, 32768, 65536, 131072, 0, 0, 524288, 524288, 524288,
|
|
/* 6325 */ 524288, 64, 64, 64, 32, 96, 8, 0, 33554432, 262144, 8192, 0, 0, 4194304, 1024, 0, 4096, 0, 1024, 2048,
|
|
/* 6345 */ 16384, 3145728, 2048, 524288, 536870912, 1073741824, 8, 0, 0, 512, 131072, 0, 0, 64, 256, 1536, 2048,
|
|
/* 6362 */ 33554432, 8192, 0, 0, 32, 64, 256, 32768, 65536, 16777216, 134217728, 536870912, 1073741824, 0, 3145728,
|
|
/* 6377 */ 16777216, 536870912, 1073741824, 0, 0, 8192, 8192, 8192, 9216, 33554432, 0, 2097152, 16777216, 1073741824,
|
|
/* 6391 */ 0, 0, 32768, 0, 16777216, 0, 16777216, 64, 0, 2, 0, 0, 32768, 16777216, 0, 0, 32, 512, 128, 131072, 0,
|
|
/* 6412 */ 134218752, 0, 0, 44, 0, 66048, 0, 0, 0, 67108864, 0, 0, 0, 8192, 0, 8192, 0, 536870912, 0, 0, 0, 12289, 0,
|
|
/* 6435 */ 268500992, 4243456, 0, 0, 59, 140224, 5505024, -1887436800, 0, 0, 2, 2, 4096, 4096, 0, 4096, 8192,
|
|
/* 6452 */ 67108864, 0, 0, 1, 4032, 0, 4243456, 4096, 1048588, 12289, 1124073472, 1124073472, 1124073472, 1124073472,
|
|
/* 6466 */ 1124073472, 1124073488, 1124073472, 1124073472, 1124073474, 1124073472, 1124073472, 1392574464, 1124073472,
|
|
/* 6475 */ 12289, 1073754113, 12289, 12289, 1124073472, 12289, 12289, 1098920193, 1098920193, 1124073488, 1124073472,
|
|
/* 6486 */ 1258292224, 1124073472, 1124073472, 1124073472, 1124085761, 1258304513, 1124085761, 1124085761, 1124085761,
|
|
/* 6495 */ 1124085777, 1132474625, 1098920209, 1132474625, 1132474625, 1132474625, 1132474625, 1400975617, 2132360255,
|
|
/* 6504 */ 2132622399, 2132622399, 2132360255, 2132360255, 2132360255, 2132360255, 2132622399, 2132360255, 2132360255,
|
|
/* 6513 */ 2132360255, 2140749119, 2132360255, 2140749119, 2140749119, 0, 65536, 268435456, 49152, 184549376, 0, 0, 0,
|
|
/* 6526 */ 83886080, 0, 0, 318767104, 0, 0, 32768, 100663296, 402653184, 1610612736, 0, 0, 0, 231488, 0, 12545,
|
|
/* 6542 */ 25165824, 0, 0, 49152, 0, 0, 256, 1536, 65536, 0, 0, 58720256, 0, 0, 131072, 32768, 0, 0, 134217728, 0,
|
|
/* 6562 */ 12305, 13313, 0, 0, 331776, 83886080, 117440512, 0, 0, 1, 6, 32, 64, 0, 78081, 327155712, 0, 0, 511808,
|
|
/* 6581 */ 7864320, 512, 65536, 0, 0, 64, 65536, 1048576, 0, 0, 33554432, 1073741824, 0, 0, 110, 0, 0, 256, 8388608,
|
|
/* 6600 */ 0, 0, 524288, 2097152, 0x80000000, 0, 0, 77824, 0, 0, 0, 268435456, 524288, 1048576, 16777216, 100663296,
|
|
/* 6616 */ 134217728, 0, 339968, 0, 0, 128, 131072, 1024, 134217728, 0, 268435456, 0, 0, 128, 33554432, 0, 0, 1,
|
|
/* 6634 */ 12288, 0, 0, 0, 134217728, 2048, 12288, 65536, 524288, 1048576, 1048576, 33554432, 67108864, 134217728,
|
|
/* 6648 */ 805306368, 0, 327680, 0, 0, 256, 65536, 0, 0, 268435456, 1048576, 33554432, 134217728, 805306368, 1, 14,
|
|
/* 6664 */ 16, 1024, 4096, 8192, 229376, 65536, 524288, 33554432, 134217728, 536870912, 1073741824, 0, 1, 14, 1024,
|
|
/* 6679 */ 2048, 4096, 8192, 131072, 1048576, 8388608, 33554432, 134217728, 0x80000000, 0, 0, 4096, 65536, 524288,
|
|
/* 6693 */ 134217728, 16384, 4194304, 0, 0, 999, 29619200, 2113929216, 0, 0, 0, 148480, 1, 12, 1024, 134217728, 0,
|
|
/* 6710 */ 128, 134217728, 8, 0, 8, 8, 8, 0, 1, 4, 8, 134217728, 536870912, 0, 0, 1073741824, 32768, 0, 4, 8,
|
|
/* 6730 */ 536870912, 0, 0, 1024, 1024, 0, 1024, 2048, 3145728, 0, 8, 32, 512, 4096, 8192, 0, 0, 68157440, 137363456,
|
|
/* 6749 */ 0, 66, 66, 524288, 4100, 1024, 0, 0, 605247, 1058013184, 1073741824, 100680704, 25165824, 92274688,
|
|
/* 6763 */ 25165824, 25165824, 92274688, 92274688, 25165952, 25165824, 25165824, 26214400, 92274688, 25165824,
|
|
/* 6773 */ 92274688, 93323264, 92274688, 92274688, 92274688, 92274688, 92274720, 93323264, 25165890, 100721664,
|
|
/* 6783 */ 25165890, 100721928, 100721928, 100787464, 100853000, 100721928, 100721928, 125977600, 125977600,
|
|
/* 6792 */ 125977600, 125977600, 125846528, 125846528, 126895104, 125846528, 125846528, 125846528, 125846560,
|
|
/* 6801 */ 125977600, 127026176, 125977600, 125977600, 127026176, 127026176, 281843, 1330419, 281843, 1330419, 281843,
|
|
/* 6812 */ 281843, 1330419, 1330419, 281843, 281843, 5524723, 5524723, 5524723, 5524723, 93605107, 5524723, 39079155,
|
|
/* 6824 */ 72633587, 72633587, 5524723, 92556531, 93605107, 93605107, 127290611, 97799411, 127290611, 131484915,
|
|
/* 6834 */ 2097152, 134217728, 0, 0, 1024, 65536, 58368, 0, 0, 0, 301989888, 8, 124160, 189696, 0, 0, 605503,
|
|
/* 6851 */ 1066401792, 0, 0, 3, 240, 19456, 262144, 0, 150528, 0, 0, 0, 536870912, 0, 1073741824, 0, 57344, 0, 0, 0,
|
|
/* 6871 */ 1073741824, 0, 0, 0, 1, 2, 112, 128, 3072, 16384, 262144, 2048, 16384, 262144, 0, 0, 2097152, 16777216, 0,
|
|
/* 6890 */ 0, 0, 1, 2, 48, 64, 0, 1, 2, 16, 32, 64, 384, 8192, 131072, 1048576, 32, 4096, 8192, 131072, 0, 0, 32768,
|
|
/* 6913 */ 0, 256, 0, 256, 0, 65536, 1024, 2048, 262144, 0, 0, 32768, 256, 0, 0, 1024, 2097152, 0, 0, 0, 16384, 0, 0,
|
|
/* 6936 */ 0, 4, 0, 0, 0, 5, 64, 128, 262144, 0, 0, 2097152, 268435456, 0, 0, 64, 128, 0, 0, 1536, 1792, 1, 2, 16, 64,
|
|
/* 6961 */ 0, 0
|
|
];
|
|
|
|
XQueryParser.TOKEN =
|
|
[
|
|
"(0)",
|
|
"PragmaContents",
|
|
"DirCommentContents",
|
|
"DirPIContents",
|
|
"CDataSection",
|
|
"Wildcard",
|
|
"EQName",
|
|
"URILiteral",
|
|
"IntegerLiteral",
|
|
"DecimalLiteral",
|
|
"DoubleLiteral",
|
|
"StringLiteral",
|
|
"PredefinedEntityRef",
|
|
"'\"\"'",
|
|
"EscapeApos",
|
|
"ElementContentChar",
|
|
"QuotAttrContentChar",
|
|
"AposAttrContentChar",
|
|
"PITarget",
|
|
"NCName",
|
|
"QName",
|
|
"S",
|
|
"S",
|
|
"CharRef",
|
|
"CommentContents",
|
|
"EOF",
|
|
"'!'",
|
|
"'!='",
|
|
"'\"'",
|
|
"'#'",
|
|
"'#)'",
|
|
"'$'",
|
|
"'%'",
|
|
"''''",
|
|
"'('",
|
|
"'(#'",
|
|
"'(:'",
|
|
"')'",
|
|
"'*'",
|
|
"'*'",
|
|
"'+'",
|
|
"','",
|
|
"'-'",
|
|
"'-->'",
|
|
"'.'",
|
|
"'..'",
|
|
"'/'",
|
|
"'//'",
|
|
"'/>'",
|
|
"':'",
|
|
"':)'",
|
|
"'::'",
|
|
"':='",
|
|
"';'",
|
|
"'<'",
|
|
"'<!--'",
|
|
"'</'",
|
|
"'<<'",
|
|
"'<='",
|
|
"'<?'",
|
|
"'='",
|
|
"'>'",
|
|
"'>='",
|
|
"'>>'",
|
|
"'?'",
|
|
"'?>'",
|
|
"'@'",
|
|
"'NaN'",
|
|
"'['",
|
|
"']'",
|
|
"'after'",
|
|
"'all'",
|
|
"'allowing'",
|
|
"'ancestor'",
|
|
"'ancestor-or-self'",
|
|
"'and'",
|
|
"'any'",
|
|
"'append'",
|
|
"'array'",
|
|
"'as'",
|
|
"'ascending'",
|
|
"'at'",
|
|
"'attribute'",
|
|
"'base-uri'",
|
|
"'before'",
|
|
"'boundary-space'",
|
|
"'break'",
|
|
"'by'",
|
|
"'case'",
|
|
"'cast'",
|
|
"'castable'",
|
|
"'catch'",
|
|
"'check'",
|
|
"'child'",
|
|
"'collation'",
|
|
"'collection'",
|
|
"'comment'",
|
|
"'constraint'",
|
|
"'construction'",
|
|
"'contains'",
|
|
"'content'",
|
|
"'context'",
|
|
"'continue'",
|
|
"'copy'",
|
|
"'copy-namespaces'",
|
|
"'count'",
|
|
"'decimal-format'",
|
|
"'decimal-separator'",
|
|
"'declare'",
|
|
"'default'",
|
|
"'delete'",
|
|
"'descendant'",
|
|
"'descendant-or-self'",
|
|
"'descending'",
|
|
"'diacritics'",
|
|
"'different'",
|
|
"'digit'",
|
|
"'distance'",
|
|
"'div'",
|
|
"'document'",
|
|
"'document-node'",
|
|
"'element'",
|
|
"'else'",
|
|
"'empty'",
|
|
"'empty-sequence'",
|
|
"'encoding'",
|
|
"'end'",
|
|
"'entire'",
|
|
"'eq'",
|
|
"'every'",
|
|
"'exactly'",
|
|
"'except'",
|
|
"'exit'",
|
|
"'external'",
|
|
"'first'",
|
|
"'following'",
|
|
"'following-sibling'",
|
|
"'for'",
|
|
"'foreach'",
|
|
"'foreign'",
|
|
"'from'",
|
|
"'ft-option'",
|
|
"'ftand'",
|
|
"'ftnot'",
|
|
"'ftor'",
|
|
"'function'",
|
|
"'ge'",
|
|
"'greatest'",
|
|
"'group'",
|
|
"'grouping-separator'",
|
|
"'gt'",
|
|
"'idiv'",
|
|
"'if'",
|
|
"'import'",
|
|
"'in'",
|
|
"'index'",
|
|
"'infinity'",
|
|
"'inherit'",
|
|
"'insensitive'",
|
|
"'insert'",
|
|
"'instance'",
|
|
"'integrity'",
|
|
"'intersect'",
|
|
"'into'",
|
|
"'is'",
|
|
"'item'",
|
|
"'json'",
|
|
"'json-item'",
|
|
"'key'",
|
|
"'language'",
|
|
"'last'",
|
|
"'lax'",
|
|
"'le'",
|
|
"'least'",
|
|
"'let'",
|
|
"'levels'",
|
|
"'loop'",
|
|
"'lowercase'",
|
|
"'lt'",
|
|
"'minus-sign'",
|
|
"'mod'",
|
|
"'modify'",
|
|
"'module'",
|
|
"'most'",
|
|
"'namespace'",
|
|
"'namespace-node'",
|
|
"'ne'",
|
|
"'next'",
|
|
"'no'",
|
|
"'no-inherit'",
|
|
"'no-preserve'",
|
|
"'node'",
|
|
"'nodes'",
|
|
"'not'",
|
|
"'object'",
|
|
"'occurs'",
|
|
"'of'",
|
|
"'on'",
|
|
"'only'",
|
|
"'option'",
|
|
"'or'",
|
|
"'order'",
|
|
"'ordered'",
|
|
"'ordering'",
|
|
"'paragraph'",
|
|
"'paragraphs'",
|
|
"'parent'",
|
|
"'pattern-separator'",
|
|
"'per-mille'",
|
|
"'percent'",
|
|
"'phrase'",
|
|
"'position'",
|
|
"'preceding'",
|
|
"'preceding-sibling'",
|
|
"'preserve'",
|
|
"'previous'",
|
|
"'processing-instruction'",
|
|
"'relationship'",
|
|
"'rename'",
|
|
"'replace'",
|
|
"'return'",
|
|
"'returning'",
|
|
"'revalidation'",
|
|
"'same'",
|
|
"'satisfies'",
|
|
"'schema'",
|
|
"'schema-attribute'",
|
|
"'schema-element'",
|
|
"'score'",
|
|
"'self'",
|
|
"'sensitive'",
|
|
"'sentence'",
|
|
"'sentences'",
|
|
"'skip'",
|
|
"'sliding'",
|
|
"'some'",
|
|
"'stable'",
|
|
"'start'",
|
|
"'stemming'",
|
|
"'stop'",
|
|
"'strict'",
|
|
"'strip'",
|
|
"'structured-item'",
|
|
"'switch'",
|
|
"'text'",
|
|
"'then'",
|
|
"'thesaurus'",
|
|
"'times'",
|
|
"'to'",
|
|
"'treat'",
|
|
"'try'",
|
|
"'tumbling'",
|
|
"'type'",
|
|
"'typeswitch'",
|
|
"'union'",
|
|
"'unique'",
|
|
"'unordered'",
|
|
"'updating'",
|
|
"'uppercase'",
|
|
"'using'",
|
|
"'validate'",
|
|
"'value'",
|
|
"'variable'",
|
|
"'version'",
|
|
"'weight'",
|
|
"'when'",
|
|
"'where'",
|
|
"'while'",
|
|
"'wildcards'",
|
|
"'window'",
|
|
"'with'",
|
|
"'without'",
|
|
"'word'",
|
|
"'words'",
|
|
"'xquery'",
|
|
"'zero-digit'",
|
|
"'{'",
|
|
"'{{'",
|
|
"'{|'",
|
|
"'|'",
|
|
"'||'",
|
|
"'|}'",
|
|
"'}'",
|
|
"'}}'"
|
|
];
|
|
|
|
// line 1179 "XQueryParser.ebnf"
|
|
});
|
|
// line 33487 "XQueryParser.js"
|
|
// End
|